How to add Flash LIte 3.1 into Publish Settings in Flash CS6?

I have Flash Lite 3.0 and 4.0 and I need to make a SWF for Flash Lite 3.1.
Is there way to add this player to the list so it will work in CS6?
Thanks!

No, it doesn't work.
I installed the CS6 update as requiested on the page but CS4 one just says "Cannot Install press Quit button" without any further details.

Similar Messages

  • How to add the library of linphone into existing project ?

    How to add the library of linphone into existing project ?

    How to add the library of linphone into existing project ?

  • How to add an "age / time counter" into DW?

    Can anyone assist on how to add an age / time counter into DW?
    In other words to say "Child X is now a years, b months old"? or "Product Z was launched A years B months ago"? Or, on the other hand, "You only have Z days & Y minutes left to enter"? With it updating in real time?
    Apologies in advance if this is a silly / obvious question but I just can't seem to do it!

    This isn't something you would add to DW, you would need to add it to your webpages. You would do this with javascript. Search the web for
    'javascript countdown timer' for plenty of examples.

  • How to add norwegian language to my ipa-file in Adobe Flash Professional and Settings for AIR

    Hi,
    How to add Norwegian languages to my ipa-file in Adobe Flash Professional and Settings for AIR?
    The Norwegian users get my apps in english instead of Norweigan. Desperate for help!
    Regards Ylva

    Sorry but you will not get help here for that problem. This forum is about AIR Help, an online help format produced using AIR, it is not about AIR itself.
    I'll see if I can move it.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to add multiple e-mail addresses into my iPad Contacts?

    I just received an e-mail with 40 addresses in the distribution list. Now I want to add all of the addresses into my iPad Contacts. How can I do this in one operation rather doing each of the 40 addresses individually?

    Unfortunately you can't add all at once. But you save a lot of time by the copy/paste method (double-tap at a mail address, tap "copy", go to the "Contacts" app, enter the contact you want to paste the address in, tap "Mail address", then double tap again and tap "paste").

  • How to add a specific order type into any particular report

    Hi All,
    How to add a specific document type(order type) into any particular report in order to review OTD performance.
    I need to add one specific order type to existing reports which will help to check the performance of the delivery type for that particular order type to the users.
    Thanks,
    Raj

    Hi Rajesh,
    thanks for the reply when i tried as the way you said.. but the system is asking more details like varient. so if you can clearly specify the process for order type (VOV8-- table TVAK) so it will helpful for me.
    Thanks
    Raj

  • How to add sql lite winrt

    I am Beginner winrt and sql lite ,  I am creating app that Customer table
    I want how to add data to the Table, edit the data, delete selected data, and delete all
    Please help me Any One
    Here code maybe wrong please right code provide me
    using SQLite;
    namespace MVVM.Models
        public class Customer
            [PrimaryKey, AutoIncrement]
            public int Id { get; set; }
            public string Name { get; set; }
            public string City { get; set; }
            public string Contact { get; set; }
    /////  Relay Command
    /// <summary>
        /// A command whose sole purpose is to relay its functionality
        /// to other objects by invoking delegates.
        /// The default return value for the CanExecute method is 'true'.
        /// <see cref="RaiseCanExecuteChanged"/> needs to be called whenever
        /// <see cref="CanExecute"/> is expected to return a different value.
        /// </summary>
        public class RelayCommand : ICommand
            private readonly Action _execute;
            private readonly Func<bool> _canExecute;
            /// <summary>
            /// Raised when RaiseCanExecuteChanged is called.
            /// </summary>
            public event EventHandler CanExecuteChanged;
            /// <summary>
            /// Creates a new command that can always execute.
            /// </summary>
            /// <param name="execute">The execution logic.</param>
            public RelayCommand(Action execute)
                : this(execute, null)
            /// <summary>
            /// Creates a new command.
            /// </summary>
            /// <param name="execute">The execution logic.</param>
            /// <param name="canExecute">The execution status logic.</param>
            public RelayCommand(Action execute, Func<bool> canExecute)
                if (execute == null)
                    throw new ArgumentNullException("execute");
                _execute = execute;
                _canExecute = canExecute;
            /// <summary>
            /// Determines whether this <see cref="RelayCommand"/> can execute in its current state.
            /// </summary>
            /// <param name="parameter">
            /// Data used by the command. If the command does not require data to be passed, this object can be set to null.
            /// </param>
            /// <returns>true if this command can be executed; otherwise, false.</returns>
            public bool CanExecute(object parameter)
                return _canExecute == null ? true : _canExecute();
            /// <summary>
            /// Executes the <see cref="RelayCommand"/> on the current command target.
            /// </summary>
            /// <param name="parameter">
            /// Data used by the command. If the command does not require data to be passed, this object can be set to null.
            /// </param>
            public void Execute(object parameter)
                _execute();
            /// <summary>
            /// Method used to raise the <see cref="CanExecuteChanged"/> event
            /// to indicate that the return value of the <see cref="CanExecute"/>
            /// method has changed.
            /// </summary>
            public void RaiseCanExecuteChanged()
                var handler = CanExecuteChanged;
                if (handler != null)
                    handler(this, EventArgs.Empty);
    /// ViewModel Base
    class ViewModelBase
            public event PropertyChangedEventHandler PropertyChanged;
            protected virtual void RaisePropertyChanged(string propertyName)
                var handler = this.PropertyChanged;
                if (handler != null)
                    handler(this, new PropertyChangedEventArgs(propertyName));
    ///MainPageViewModel
    class MainPageViewModel : ViewModelBase
            #region Properties
            private int id = 0;
            public int Id
                get
                { return id; }
                set
                    if (id == value)
                    { return; }
                    id = value;
                    RaisePropertyChanged("Id");
            private string name = string.Empty;
            public string Name
                get
                { return name; }
                set
                    if (name == value)
                    { return; }
                    name = value;
                    isDirty = true;
                    RaisePropertyChanged("Name");
            private string city = string.Empty;
            public string City
                get
                { return city; }
                set
                    if (city == value)
                    { return; }
                    city = value;
                    isDirty = true;
                    RaisePropertyChanged("City");
            private string contact = string.Empty;
            public string Contact
                get
                { return contact; }
                set
                    if (contact == value)
                    { return; }
                    contact = value;
                    isDirty = true;
                    RaisePropertyChanged("Contact");
            private bool isDirty = false;
            public bool IsDirty
                get
                    return isDirty;
                set
                    isDirty = value;
                    RaisePropertyChanged("IsDirty");
            #endregion "Properties"
            public ObservableCollection<Customer> _customerlist { get; set; }
     public Person CustomerToAdd { get; set; }
            /// <summary>
            /// Add Customer data to the table
            /// </summary>
            public RelayCommand AddCusomerCommand { get; set; }
            private void addCustomer()
            /// <summary>
            /// Delete Selected Customer data from the table
            /// </summary>
            public RelayCommand DeleteSelectedCustomerCommand { get; set; }
            private void deleteSelectedCustomer()
            /// <summary>
            /// edit Selected Customer data from the table
            /// </summary>
            public RelayCommand EditSelectedCustomerCommand { get; set; }
            private void editSelectedCustomer()
            /// <summary>
            /// Delete All Customer data from the table
            /// </summary>
            public RelayCommand DeleteAllCustomerCommand { get; set; }
            private void deleteAll()
            public MainPageViewModel()
                AddCusomerCommand = new RelayCommand(addCustomer);
                DeleteAllCustomerCommand = new RelayCommand(deleteAll);
                EditSelectedCustomerCommand = new RelayCommand(editSelectedCustomer);
                DeleteSelectedCustomerCommand = new RelayCommand(deleteSelectedCustomer);
    /////////// App.Xaml.Cs
    sealed partial class App : Application
            /// <summary>
            /// Initializes the singleton application object.  This is the first line of authored code
            /// executed, and as such is the logical equivalent of main() or WinMain().
            /// </summary>
            public App()
                this.InitializeComponent();
                this.Suspending += OnSuspending;
            /// <summary>
            /// Invoked when the application is launched normally by the end user.  Other entry points
            /// will be used such as when the application is launched to open a specific file.
            /// </summary>
            /// <param name="e">Details about the launch request and process.</param>
            protected override void OnLaunched(LaunchActivatedEventArgs e)
    #if DEBUG
                if (System.Diagnostics.Debugger.IsAttached)
                    this.DebugSettings.EnableFrameRateCounter = true;
    #endif
                Frame rootFrame = Window.Current.Content as Frame;
                // Do not repeat app initialization when the Window already has content,
                // just ensure that the window is active
                if (rootFrame == null)
                    // Create a Frame to act as the navigation context and navigate to the first page
                    rootFrame = new Frame();
                    // Set the default language
                    rootFrame.Language = Windows.Globalization.ApplicationLanguages.Languages[0];
                    rootFrame.NavigationFailed += OnNavigationFailed;
                    if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
                        //TODO: Load state from previously suspended application
                    // Place the frame in the current Window
                    Window.Current.Content = rootFrame;
                var dbpath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path,"data.db3");
                using (var db = new SQLite.SQLiteConnection(dbpath))
                    // Create the tables if they don't exist
                    db.CreateTable<Customer>();
                    db.Commit();
                    db.Dispose();
                    db.Close();
                if (rootFrame.Content == null)
                    // When the navigation stack isn't restored navigate to the first page,
                    // configuring the new page by passing required information as a navigation
                    // parameter
                    rootFrame.Navigate(typeof(MVVM.Views.Page1), e.Arguments);
                // Ensure the current window is active
                Window.Current.Activate();
            /// <summary>
            /// Invoked when Navigation to a certain page fails
            /// </summary>
            /// <param name="sender">The Frame which failed navigation</param>
            /// <param name="e">Details about the navigation failure</param>
            void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
                throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
            /// <summary>
            /// Invoked when application execution is being suspended.  Application state is saved
            /// without knowing whether the application will be terminated or resumed with the contents
            /// of memory still intact.
            /// </summary>
            /// <param name="sender">The source of the suspend request.</param>
            /// <param name="e">Details about the suspend request.</param>
            private void OnSuspending(object sender, SuspendingEventArgs e)
                var deferral = e.SuspendingOperation.GetDeferral();
                //TODO: Save application state and stop any background activity
                deferral.Complete();
    /// xaml Code
    <Page.DataContext>
            <ViewModels:MainPageViewModel>
            </ViewModels:MainPageViewModel>
        </Page.DataContext>
        <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
            <ListView ItemsSource="{Binding _customerlist}"
                      HorizontalAlignment="Left" Margin="44,65,0,327" Width="456">
                <ListView.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Width="400" Background="Chocolate">
                            <StackPanel Orientation="Horizontal">
                                <TextBlock Text="{Binding Name}" FontSize="30" />
                                <TextBlock Text="," FontSize="30" />
                                <TextBlock Text="{Binding City }" FontSize="30" />
                            </StackPanel>
                            <TextBlock Text="{Binding Contact}" FontSize="30" />
                        </StackPanel>
                    </DataTemplate>
                </ListView.ItemTemplate>
            </ListView>
            <Button Command="{Binding  AddCustomerCommand}"
              Content="Add person"
              FontSize="40" Margin="588,465,0,230"/>
            <Button Command="{Binding EditSelectedCustomerCommand}"
              Content="Edit"
              FontSize="40" Margin="865,465,0,230"/>
            <Button Command="{Binding DeleteSelectedCustomerCommand}"
                    Content="Delete"
                    FontSize="40" Margin="1037,465,0,230" />
            <Button Command="{Binding DeleteAllCustomerCommand }"
                    Content="Delete All"
                    FontSize="40" Margin="979,619,0,76" />
            <TextBlock Text="Name" FontSize="30" Margin="633,65,598,640" Height="63"/>
            <TextBox DataContext="{Binding PersonToAdd}" Text="{Binding Name, Mode=TwoWay}"
                     FontSize="30" Margin="868,62,80,640"/>
            <TextBlock Text="City " FontSize="30" Margin="633,181,551,524"/>
            <TextBox DataContext="{Binding PersonToAdd}" Text="{Binding City, Mode=TwoWay}"
                     FontSize="30" Margin="868,181,80,525"/>
            <TextBlock Text="Age" FontSize="30" Margin="633,296,536,400"/>
            <TextBox DataContext="{Binding PersonToAdd}" Text="{Binding Contact, Mode=TwoWay}"
                     FontSize="30" Margin="868,296,80,403"/>
        </Grid>

    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=wpf
    The above fourm use MVVM and they can help you there.

  • How to add Design Studio BI App into BI Workspace?

    Hi,
    is it possible to add Design Studio BI Apps into a BI Workspace (DE: BI-Arbeitsbereich) on the BIP?
    How can this be done? Has anyone successfully done it?
    BIP: BI 4.0 SP6
    I'm able to add Web Intelligence reports/files but in the folders where all the Design Studio files are I can only see the images. It looks like BI 4.0 SP6 BI-Workspace doesn't recognize the DS BI app file types?
    Thank you!
    Regards,
    David

    Ahoj Victor,
    Thanks!
    As you suggested first I tried the Web Page Module - I configured it directly with the 1 OpenDoc url - it worked.
    I ended up with the following solution for now:
    Here: BI-Launchpad > Documents > Folders > Public Folders > in the folder with the Design Studio reports
    I created: right click > New > Hyperlink: in the URL field I added the OpenDoc url of a DS report (bi app)
    and under/in BI workspace:
    (Layout: Freeform)
    From "Templates" I added 2 objects: "Navigation List" and "Viewer"
    From "Public Modules" I added the Hyperlink object I created previously - drag & drop into the Navigation List, and now when somebody clicks on the item (Hyperlink object) in the Navigation List, the document/report opens in the Viewer. Now I can have several items in the Navigation List and have them opened in the same Viewer (of course 1 report at a time).
    Regards,
    David

  • How to add a vid in iphoto into imovie

    Hi,
    I took a vid with my sony camera, downloaded it into iphoto on my mac, now I want to add it to imoive from iphoto so I can edit it.
    How to add it to imoive from iphoto?
    Thanks

    Hi
    In Event's window You find Your iPhoto-Videos at one of the top titles like (second row)
    Select this iPhoto-videor and then select the movie from the thumbnails to the left
    Yours Bengt W

  • How to add a Captivate 5 Project into RH for Word?

    I have to add a captivate simulation project into my Help project, and was wondering if anyone knows if it is possible. I searched Captivate's help, and they say you can with RH HTML, but I am currently using:
    1. RH for Word Build 8.0.0.203
    2. Captivate 5.0.0.596
    The Help project is a Single Source Layout with WinHelp 2000 primary layout. Any ideas?
    eangel

    Hi Rick,
    I did test the url from my browser's address bar, and it worked fine. I cannot get this to work from the help project.
    Hope someone can help.
    Thanks,
    eangel

  • How to add one poi jar file into webdynpro project

    Hi all:
        We would like to add one poi jar file into one webdynpro project, however, what should we do ?
        Its one external 3rd party jar file.

    Hi,
    To add a jar file you need to have an external library DC.
    Hope the below link will help you:
    [http://help.sap.com/saphelp_nw70/helpdata/en/46/3ce3e4df201d63e10000000a11466f/frameset.htm]
    thanks & regards,
    Manoj

  • Problem with Flash Lite in Nokia 5800 XpressMusic-Problema con Flash Lite en Nokia 5800 XpressMusic

    I've got a problem playing videos in YouTube with my 5800. Recently I updated my version of Flash Lite to 3.1,  from that day I can't see correctly videos on YouTube, when the the indicator of the bar reaches 1/4 of the totallity of the bar, the sound and image stop, but the indicator continues playing. If i want to see completly a video I have to put the indicator in the start of the bar and wait the load again. Some idea to fix this problem?
    Sorry for my English level.
    Tengo un problema reproduciendo vídeos en YouTube con mi 5800. Hace poco actualicé la versión del Flash Lite a la 3.1 y desde entonces no puedo ver correctamente vídeos de YouTube, cuando el indicador de la barra alcanza 1/4 de la distancia total, se detienen el sonido y la imagen, pero el indicador continúa como si siguiera reproduciendo, es decir para el vídeo es como si siguiera reproduciendo pero ni el sonido ni la imagen continúan., para ver los vídeos tengo que llevar el cursor de carga al principio y esperar la carga de nuevo, es un problema realmente molesto. ¿Alguna idea para solucionarlo?

    Hi,
    I have Nokia 5800XM as well. The YouTube videos are playng fine for me. my FW is 40.0.005 with FL3.1
    Maybe you need to update your device's firmware and FL version.\
    Start Device Manager application on your 5800XM from menu or dialing *#0000#. It will check for new updates and ask you to download them. Remember that these updates are in MBs. I'd recommend update using a WiFi connection or flat-rate data plan.
    Best,
    // chall3ng3r //

  • How to add a digital signature in xml publisher report

    The problem is: There is a existing pick slip report.This is a xml publisher report and the data source is RDF. We have to add digital signature there. Now this signature is stored in a table with type Long Raw and format BMP. XML Publisher do not support Long Raw and BMP format. It supports BLOB and jpg format.
    Could you please guide how to add this signature in the existing RDF with datatype as BLOB and format as jpg.
    Please provide the steps with example.

    Hi,
    Have a look at this thread.
    Implementing electronic signatures on an existing AP check run
    Re: Implementing electronic signatures on an existing AP check run
    Regards,
    Hussein

  • Flash lite 2.1 brew publisher for cs4

    I have CS4, flash lite 2.1 and brew sdk 3.1.5 installed.
    But I could not find a brew publisher for cs4. On adobe site
    publishers for cs3 and flash pro 8 are available. But while trying
    to install they give error,
    "The required version of flash could not be found."
    Can any one suggest a solution?

    Perhaps may there be an update? Try updating the software.
    Hopefully that can work for you.

  • Feature Request: Add in file processing hooks into publish system

    When publishing an Edge composition all of the javascript gets minimised, which is great.
    It'd be great if 'compilation' tools like this could be added/removed, either as a software-wide plugin or as a list of processors in the publish settings.
    This could be used to do the following sorts of things:
    Obsfucate code
    Use alternative JS minimiser
    Optimise SVG assets (remove identity transforms, resolve certain 'use' nodes, etc)
    Compress / Recompress imagery (similar to flash's JPEG publish settings).

    Hi, TByrne-
    Good suggestion!  I've brought this up internally for consideration.
    Thanks,
    -Elaine

Maybe you are looking for

  • I can't get Imagenomic Portraiture trial to work in Photoshop cc 2014 please help?

    I have previously used the trial successfully but it expired and I deleted it and then bought the Portraiture package only to be told that I have to install the trial and can then only enter the license key. The trial installs successfully ie I get t

  • 1:N Mapping Problem..

    Hi Experts I have done splitting of messages using the following blog Illustration of Multi-Mapping and Message Split using BPM in SAP Exchange Infrastructure But here how to map One source message to two different messages based on the value. In abo

  • When file vault is on, file associations don't persist across restarts

    The subject says it all. Neither do things like default browser. A related thread: http://discussions.apple.com/thread.jspa?messageID=8417405#8417405 has been marked as solved, in spite of the fact that this problem persists today on a brand new mach

  • Word OLE Automation

    Hi All, I have the below scenario.Can any one please suggest a solution. I created a variable for OLE object , iole_word_application, and started MS Word with it. iole_word_application.ConnectToNewObject("Word.Application") Lets say I closed this MS

  • Oracle 8 for windows

    HELP!!!! im new with oracle. Just wanna ask if Oracle 8 for windows is compatible to any windows version. Im currently using windows xp and i wanna know if i can use the downloadable oracle 8 to create programs using oracle 8. Thanks