[Flash Pro] Maus Events verhalten sich je nach veröffentlichung unterschiedlich

Hallo,
ich hab ein Problem.
Ich habe eine Cloud Mitgliedschaft und somit Flash CC als auch CS6.
Wenn ich mein Flash Spiel in der Entwicklungsumgebung veröffentliche ( egal welche der Beiden) wird das RIGHT_MOUSE_UP event nicht erkannt.
Wenn ich den selben Code allerdings im Browser veröffentliche funktioniert alles wunderbar.
Soweit ich es erkennen kann müssten alle Flashplayer, sowohl die der beiden Enwicklungsumgebungen als auch mein Browser version 11.7 haben.
Hat irgendjemand eine Ahnung was da los sein könnte?
Vielen Dank im Voraus

Similar Messages

  • Back button doesn't work in Flash Pro CS6 Simulator (ADL)

    Hi everyone. I'm testing Flash Pro CS6, and I've noticed the Back button is not detected in my Android app when testing in ADL (Control / Test movie / In ADL Mobile).
    When I try to select the option Device / Back (Ctrl+B) in ADL, it just doesn't do anything (I have a KEY_DOWN event listener which looks for the keycode Keyboard.BACK). In a real Android device, it works, but not in the "test movie" window (ADL). In CS5.5, the Back button always worked in ADL.
    Also, in the new Simulator window which comes up when "testing movie", there are "Menu", "Back" and "Search" buttons for easier access. Well, that Back button doesn't do anything, either.
    Does anyone know what's happening?
    BTW, I don't find the "Simulator" window too useful for my purposes. How can I disable it, so it doesn't automatically come up?
    Thanks!
    Edit: Well, it seems the KEY_DOWN event listener doesn't work for any key, not only the Back button.

    WHOWWW...
    suitable for Flash Player 11.6
    Back that down to as low a version as possible... 10 or so if possible.
    My advice.... never... ever target the latest version of plugin... most users will NOT have that plugin installed.
    Back it down and if that doesn't work, post a link to the actual Web page.
    Best wishes,
    Adninjastrator

  • Some of Photo (JPEG)-compressed images by Flash Pro are not shown in AIR app (3.7/3.8)

    Does anyone see this issue happening? In Flash Pro it's OK, but in AIR, it's broken.
    https://bugbase.adobe.com/index.cfm?event=bug&id=3558175
    Problem Description:
    Some JPEG-compressed images in swc produced by Flash Pro CS6 is not shown in AIR.
    Steps to Reproduce:
    1. Create a fla with Flash Pro CS6
    2. Put a png image in it and open the property of the image to make sure its compression option is Photo (JPEG)
    3. Produce an swc out of the fla
    4. Create an AIR app that shows the contents in the swc
    Actual Result:
    All images are shown
    Expected Result:
    Some of the images are not shown (nothing is shown where they are supposed to be)
    Any Workarounds:
    Use Lossless (PNG/GIF) for all images

    i was able to get it to work from a suggestion in another thread: if you write a JSFL that goes through all your bitmaps and makes sure they do not uset he default compression of the document, but instead use custom compression (it can match the default however). this worked for me

  • Indexing instances of specific class inside MovieClip authored with Flash Pro

    Hi there.
    I'm writing a class that extends MovieClip and that is linked to the MovieClip Object authored via Flash Pro during development (Father object).
    The hierarchy of this MovieClip Object is hidden from me - everything I know is that it may contain instances of other Class that was authored during development and extends MovieClip in the same manner (Son objects).
    I have no information regarding names or hierarchical positions of these Son objects inside Father object.
    Now the question is: how to get them listed?
    So approach I've taken was to implement current events:
    public class Son extends MovieClip
         public static const INITIALIZED : String = "son_initialized";
         public function Son ()
              this.dispatchEvent (new Event (INITIALIZED));
    public class Father extends MovieClip
         public var son : Vector<Son>;
         public function Father ()
              son = new Vector<Son> ();
              this.addEventListener (Son.INITIALIZED, this.onSonInitialized);
         public function onSonInitialized (event : Event)
              this.son.push (event.target);
    Well, this code compiles with no errors whatsoever, but it turns out that onSonInitialized gets never called. I assume that's because children constructors are called ahead of their parent one.
    Is there any way to get them listed?
    Thanks in advance.

    kglad,
    I'm trying to get an array of references to Son objects (Son extends MovieClip), randomly located deep inside display list hierarchy of Father object (extends MovieClip too).
    The Father movieclip is authorized in Flash Professional and is a black box for me - I can only manipulate Father.as and Son.as.
    Since I can't know exactly their pathes and names (i.e. father.child1.child5OfChild1.son32 for example), I decided to make them self-aware, dispatching event during construction time, messaging everybody that this instance of Son exists:
    public function Son ()
         this.dispatchEvent (new Event (INITIALIZED));
    And then I attached a listener inside Father's constructor:
    public function Father ()
         this.addEventListener (Son.INITIALIZED, this.onSonInitialized);
    The idea was that this event listener should have been catching all the Sons, located inside Father. But it doesn't work that way - Father's constructor seems to be called after all constructors of its children, so this event listener catches nothing.
    I've worked this around by straightforward display list traversing - it works, but doesn't look so elegant. May be there is still a way to make it work through events?

  • How to import a in InDesign generated swf file into flash pro

    My Flash Pro does not allow to import the in InDesign CS 5.5 generated swf file.
    Any suggestions?

    Like this?
    movieholder.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF);
    import fl.display.ProLoader;
    var fl_ProLoader:ProLoader; 
    //Mit dieser Variable wird verfolgt, ob Sie die SWF-Datei laden oder entladen möchten
    var fl_ToLoad:Boolean = true; 
    function fl_ClickToLoadUnloadSWF(event:MouseEvent):void
        if(fl_ToLoad)
            fl_ProLoader = new ProLoader();
            fl_ProLoader.load(new URLRequest("http://www.helpexamples.com/flash/images/image1.jpg"));
            addChild(fl_ProLoader);
        else
            fl_ProLoader.unload();
            removeChild(fl_ProLoader);
            fl_ProLoader = null;
        // Umschalten, ob die SFW-Datei geladen oder entladen werden soll
        fl_ToLoad = !fl_ToLoad;

  • Unload swf in Flash Pro

    I publish a swf from a Catalyst Project and then load it in Flash Pro using the prebuild code snippet:
    myButton.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF);
    var fl_Loader:Loader;
    function fl_ClickToLoadUnloadSWF(event:MouseEvent):void
    if(fl_ToLoad)
    fl_Loader = new Loader();
    fl_Loader.load(new URLRequest("Main.swf"));
    addChild(fl_Loader);
    else
    fl_Loader.unload();
    removeChild(fl_Loader);
    fl_Loader = null;
    fl_ToLoad = !fl_ToLoad;
    The swf is loaded but if i click the button again, the swf is not unloaded.
    I have used this code before with an swf created in flash and work fine but cant make it work with catalyst swf.

    Hi,
       I hope that you declared "fl_ToLoad" variable outside the function. See the sample below:
                      var fl_ToLoad:Boolean=true;
      Once I declared this variable, the same code was working for me with Catalyst / Non-catalyst SWFs.
    Regards
    Srinivas Annam

  • Illustrator CS5 (.ai) Flash Pro CS(5/6) Flex4 internal error occurs

    Hi, I'm begginer in Flash-Flex env development.
    pass through the data symbol drawn in Adobe Illustrator CS5 Converted to components in Flash Pro CS6,
    the swc file compiled with Flash Builder 4.6 Flex, Build an internal error occurs.
    Not all files to error, Occurs in some files.
    The fact that the file is not found error was passed to AbcCompiler is Why do not contain data when turned into swc in Flash Pro?
    I'm looking for information from people who were able to resolve the situation the same way.
    error log is as follows:
    !SESSION 2012-06-12 20:02:55.172 -----------------------------------------------
    eclipse.buildId=I20100608-0911
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=ja_JP
    Command-line arguments:  -os win32 -ws win32 -arch x86
    This is a continuation of log file C:\Users\User\Adobe Flash Builder 4.6\.metadata\.bak_0.log
    Created Time: 2012-06-12 23:26:39.448
    !ENTRY com.adobe.flexbuilder.project 4 43 2012-06-12 23:26:39.450
    !MESSAGE Uncaught exception in compiler
    !STACK 0
    java.lang.NullPointerException
              at java.io.ByteArrayInputStream.<init>(Unknown Source)
              at flex2.compiler.io.InMemoryFile.getInputStream(InMemoryFile.java:97)
              at flex2.compiler.Source.getInputStream(Source.java:381)
              at flex2.compiler.abc.AbcCompiler.parse1(AbcCompiler.java:196)
              at flex2.compiler.CompilerAPI.parse1(CompilerAPI.java:2872)
              at flex2.compiler.CompilerAPI.parse1(CompilerAPI.java:2825)
              at flex2.compiler.CompilerAPI.batch2(CompilerAPI.java:457)
              at flex2.compiler.CompilerAPI.batch(CompilerAPI.java:1291)
              at flex2.compiler.CompilerAPI.compile(CompilerAPI.java:1568)
              at flex2.tools.oem.Application.compile(Application.java:1349)
              at flex2.tools.oem.Application.recompile(Application.java:1287)
              at flex2.tools.oem.Application.compile(Application.java:886)
              at flex2.tools.flexbuilder.BuilderApplication.compile(BuilderApplication .java:359)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder $MyBuilder.mybuild(ASApplicationBuilder.java:319)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder .build(ASApplicationBuilder.java:129)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASBuilder.build(ASBu ilder.java:198)
              at com.adobe.flexbuilder.multisdk.compiler.internal.ASItemBuilder.build( ASItemBuilder.java:70)
              at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.bu ildItem(FlexProjectBuilder.java:607)
              at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.bu ild(FlexProjectBuilder.java:382)
              at com.adobe.flexbuilder.project.compiler.internal.FlexIncrementalBuilde r.build(FlexIncrementalBuilder.java:187)
              at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java :728)
              at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
              at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager .java:199)
              at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager .java:239)
              at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java :292)
              at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
              at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager .java:295)
              at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildMan ager.java:351)
              at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java :374)
              at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.ja va:143)
              at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:2 41)
              at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)

    as a result of devising the data, we were able to eliminate the error.
    I will be shared information when I get the cause of the path information available.

  • Flash Pro drop target instance during authoring on the artboard

    Developing custom components within Flash Professional CS5.5, I am attempting to implement functionality similar to the way a UIScrollBar can be dropped on a TextArea to bind functionally.
    Place a TextArea on the artboard.
    Drop a UIScrollBar on to the TextArea.
    The UIScrollBar will auto-position itself against the TextArea, and if instance names are not defined, the TextArea will receive a name such as ‘InstanceName_0’ and the UIScrollBar’s scrollTargetName will set to match.
    For those familiar with Flashblocks Flash CMS, this functionality is replicated using their Editblock component. The Editblock can be dropped on a component, automatically position itself, and bind instance names.
    Following threads and examples, I see mostly historical implementations citing _targetInstanceName and scrollTarget.
    Functionally, I understand that this is specifying an instance name which is located from the parent to a DisplayObject.
    /** target instance display object. */
    protected var scrollTarget:DisplayObject;
    /** target instance name, used by authoring to locate display object. */
    private var _scrollTargetName:String;
    [Inspectable()]
    public function set scrollTargetName(value:String):void
        // with try / catch exception handling, but for example:
        scrollTarget = parent.getChildByName(value);
    This setter does not fire during authoring.
    I’m unsure if I’m missing a specific property name, meta data in the Inspectable tag, an Event, or maybe I am required to extend (Flash Pro’s fl.core) UIComponent?
    Are there more current examples / tutorials that anyone could cite?
    Please understand that I am not talking about drag-and-drop during runtime. I am speaking about authoring using Flash Professional, dropping components on to each other from Flash Pro’s artboard.
    Thanks!

    So looking further into things, it seemed to have started happening since I installed Steam. While steams loader was active in the background it would cause the flash audio to drop out. I don't know any reason why it would cause this, but have just disabled steam from starting up at all. Any insight on why these two programs would clash and cause audio issues would be greatly appreciated.
    Thanks,
    Rob

  • Flash Pro CS5 crashes opening large-ish files

    When I try to open any FLAs greater than 50Meg or so, I get "Could not open one or more scenes probably beacuse of low memory" dialog box. This dialog appears several times, then Flash crashes.The system has 4G total physical memory, and plenty (2 Gig+) of physical memory is free and available when the crash occurs.
    The same files can be opened on a Mac running CS5. The files were originally CS4, but I tried using the Mac to save them in CS5 format, and the CS5 files also consistenyly fail to open.
    I running a pretty fresh install of Windows 7 64 on a Dell Studio 1645 with an i7 Q820 processor with 4G RAM and oodles of free disk space. Flash Pro is part of a new install of Web Premium CS5. I have installed the latest 11.0.2 patch. The crash details are
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Flash.exe
      Application Version:    11.0.2.489
      Application Timestamp:    4c68dc9c
      Fault Module Name:    authplay.dll
      Fault Module Version:    10.1.52.14
      Fault Module Timestamp:    4b9e99b8
      Exception Code:    c0000005
      Exception Offset:    002f1371
      OS Version:    6.1.7600.2.0.0.768.3
      Locale ID:    1033
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789
    (my Adobe ID email address is an ancient and now non-functioning address; I can be contacted at charlieb at redhillstudios dot com if need be).
    TIA
    Cheers - Chas

    See to it that you regularly update the debug version of the flash player (it won`t automatically update with the regular one)
    also see here for options how to tweak the debugger for your needs

  • Adobe Flash Pro CS5 Install fails

    Hi. I tried to install the trial of Flash Pro CS5 to my mac, but it failed. Installer gives me these errors:
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 51 error(s), 42 warning(s)
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: Invalid library file ARKEngine.dylib. Cannot get ARKEngineDoPayloadOperation API
    ERROR: Invalid library file ARKEngine.dylib. Cannot get ARKEngineDoPayloadOperation API
    ERROR: Invalid library file ARKEngine.dylib. Cannot get ARKEngineDoPayloadOperation API
    ERROR: Invalid library file ARKEngine.dylib. Cannot get ARKEngineDoPayloadOperation API
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe WinSoft Linguistics Plugin CS5: Install failed
    ERROR:  - Adobe CSXS Infrastructure CS5: Install failed
    ERROR:  - SiteCatalyst NetAverages: Install failed
    ERROR:  - Adobe Bridge CS5: Install failed
    ERROR:  - Adobe Flash CS5_AdobeFlash11-en_USLanguagePack: Install failed
    ERROR:  - Adobe Flash CS5_AdobeMobileExtension_Flash11-en_US: Install failed
    ERROR:  - AdobeHelp: Install failed
    ERROR:  - Adobe AIR: Install failed
    ERROR:  - AIR2 For Adobe Flash Pro: Failed due to Language Pack installation failure
    ERROR:  - Photoshop Camera Raw: Install failed
    ERROR:  - Suite Shared Configuration CS5: Install failed
    ERROR:  - AdobeColorCommonSetCMYK: Install failed
    ERROR:  - Camera Profiles Installer: Install failed
    ERROR:  - DeviceCentral_DeviceCentral3LP-en_GB: Install failed
    ERROR:  - Adobe Media Player: Install failed
    ERROR:  - Adobe Player for Embedding: Install failed
    ERROR:  - Adobe Media Encoder CS5: Install failed
    ERROR:  - Adobe SwitchBoard 2.0: Install failed
    ERROR:  - AdobeColorJA CS5: Install failed
    ERROR:  - Adobe Flash CS5_AdobeMobileExtension_Flash11-mul: Install failed
    ERROR:  - Adobe ExtendScript Toolkit CS5: Install failed
    ERROR:  - Players For Adobe Flash Pro: Install failed
    ERROR:  - Adobe BrowserLab CS Live: Install failed
    ERROR:  - iPhone Publishing: Install failed
    ERROR:  - CSXS Story Extension: Install failed
    ERROR:  - Adobe XMP Panels CS5: Install failed
    ERROR:  - DeviceCentral: Failed due to Language Pack installation failure
    ERROR:  - AdobeTypeSupport CS5: Install failed
    ERROR:  - AdobeColorCommonSetRGB: Install failed
    ERROR:  - Adobe Utilities CS5: Install failed
    ERROR:  - Adobe CSXS Extensions CS5: Install failed
    ERROR:  - AdobeOutputModule: Install failed
    ERROR:  - AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US: Install failed
    ERROR:  - PDF Settings CS5: Install failed
    ERROR:  - Adobe Linguistics CS5: Install failed
    ERROR:  - DynamiclinkSupport: Install failed
    ERROR:  - AdobeColorEU CS5: Install failed
    ERROR:  - AdobePDFL CS5: Install failed
    ERROR:  - AdobeCMaps CS5: Install failed
    ERROR:  - AdobeColorNA CS5: Install failed
    ERROR:  - Flash Player: Install failed
    ERROR:  - Adobe Flash CS5: Failed due to Language Pack installation failure
    ERROR:  - Adobe Extension Manager CS5: Install failed
    ERROR:  - TLF For Adobe Flash Pro: Install failed
    ERROR:  - Pixel Bender Toolkit: Install failed
    ERROR:  - Adobe ReviewPanel CS5: Install failed
    Does someone know what to do?

    1. Draw your button (a rectangle, circle, your graphic)
    2. Select it and choose Modify> Convert to symbol
    3. Choose type "Button"
    4. Give it an instance name on the "Properties" window, like my_btn
    5. Create a new layer and place your cursor on the first frame for the layer you just created
    6. Press F9 in Windows or open the Actions window Windows > Actions
    7. Write code to indicate the function for the button:
    function playVideo(event:MouseEvent):void
         myVideo.play();
    my_btn.addEventListener(MouseEvent.CLICK, playVideo);
    function stopVideo(event:MouseEvent):void
              myVideo.pause();
    myStop_btn.addEventListener(MouseEvent.CLICK, playVideo);

  • Flash Pro CC AIR for Android Publish Never Finishes

    I am having so much trouble with the new CC flash pro. Simply, it does not publish to devices - at all.
    I was able to get the proper driver so that Flash Pro recognises my device (which was a challenge in itself). Now, when I go to publish it never finishes. Apparently they removed the timer from the publish window - a bad choice IMO because now I'm going to be waiting hours for it to finish when it actually has frozen.
    On android, the "Publishing..." box comes up and never goes away. There are no errors. It just simply does not work when I push the publish button, any of them. I have no idea what the problem could be or how I am supposed to fix this so any help is greatly appreciated. thanks.

    I'm having the same problem with Flash CC on Mac OS 10.8.5 using AIR 3.6 and 3.9 beta sdks publishing to Android.
    Essentially Flash CC builds the apk just fine then hangs at 00:05 when it should be installing the apk to the device.
    In looking at Activity Monitor I noticed I had two adb processes launched which could be part of the problem.
    I then tried publishing through Flash CC but installing on devices via the command line when I've now run into another error:
    $ adb install Untitled-1.apk
    1311 KB/s (9427446 bytes in 7.021s)
              pkg: /data/local/tmp/Untitled-1.apk
    Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES]
    Apparently the apk isn't signed despite including my certificate in the publishing settings (along with the password) and the publishing process finishing without error.
    An unsigned APK will not install on devices, which *could* be related to the problem of Flash CC never finishing publishing when 'install on device(s)' is selected in the publishing options. If Flash CC is waiting for a 'success' event to be fired from adb it may simply never be receiving one and therefore never finishing the publishing process… (just speculating).
    Also, this is happening with *ANY* FLA I try to publish to Android.

  • Publish html5 file from Flash Pro CC

    I subscribed Flash Pro CC and open a fla file produced by using Flash Pro CS5, It works to be tested with Control > Test Movie > Flash Professional and also successfully published to a swf and a html files. But it didn’t work to publish with CreateJS  toolkit to be html5 file. A warning says
    “Frame numbers in EaselJS start at 0 instead of 1. For example, this affects gotoAndStop and gotoAndPlay calls. (10)
    Content with both Bitmaps and Buttons may generate local security errors in some browsers if run from the local file system”.
    What should I do to solve this problem?

    Thank you very much, Kglad. It seems to me that I should insert JS statemnts in the actionScript to complete the job. I don't have any experience in JS. My Fla has only "Click to certain frame of theTmeline" with the Actionscript such as
    OBJ_btn.addEventListener(MouseEvent.CLICK, clickto1);
      function clickto1(event:MouseEvent):void
              gotoAndStop("OBJ");
    Should I insert a JS in addition to this script? The JS should be inside of  " /* JS..........*/" ? Do I have to learn the whole JS before I can know how to publish HTML5 from Flash Pro CC? Please help me.

  • After a month of using CS6 Master, Acrobat ceased functioning. Many other customers with the same problem suggested deactivating Flash Pro to reactivate Acrobat. After following these instructions, the entire suite was deactivated and now dipalys a messag

    After a month of using CS6 Master, Acrobat ceased functioning. Many other customers with the same problem suggested deactivating Flash Pro to reactivate Acrobat. After following these instructions, the entire suite was deactivated and now dipalys a message that our trial that will expire in 10 days (in the middle of an upcoming charity event). Is there any way to reactivate CS6? Is the only option to delete all CS programs? Can we download CS6 again with the same product key?

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • Issues with Flash Pro CS5 on Mac

    Hi,
    I recently bought a MacBookPro 15", 2.4 GHz Intel Core i5, 4GB 1067 MHz DDR3 and CS5 Creative Suite. Built in Intel HD Graphics and NVIDIA GeForce GT 330M.
    Hi have some issues with Flash Pro:
    - when objects on the stage are quite big (for example a 800x3000 movie clip), it start showing strange colors and wrong position, however when double clicking the movie clip to edit it, it looks correct. Also no problem when publishing. See images attached, the first one is correct, the second one shows the problem, when editing the mc in the 2nd image i get the third image that is correct.
    Correct:
    Wrong:
    After entering editing mode:
    - after a while, when making a change in the stage or in the time line (deleting frames for example), it doesn't show it immediately, but i need to refresh the page. This happens more when opening many fla in the same time. Closing and restarting Flash fixes it, for a while.
    - after a while it doesn't show when selecting an object, the object looks like is not selected, however i can see that it is in the properties panel.  This happens more when opening many fla in the same time.  Closing and restarting Flash fixes it, for a while.
    Hi have been using CS3 and CS4 with less powerful computers before (always mac) and i never encountered these issues.
    Removing preferences and Application support files didn't help. I also updated Flash  to v. 11.0.1, but no joy.
    Does anyone know what's the problem?
    Thanks a lot.
    Mike

    Based on some searching and testing, it seems that if you redirect ~/Library/Application Support/Adobe/Flash CS5 to a location on the local hard drive, rather than the network account storage, the problem ceases.
    I hope this helps anyone else who may run into this problem.
    Take care,
    Branden

  • I can't install Adobe Flash Pro CS 6 on my OSX Mac! Help!

    Every time I try to install Flash Pro CS6 on my mac, I get the following error:
    "The installation failed - installer failed to initialize.  This could be due to a missing file."
    I've rebooted the mac, logged as the administrator to install, and got the same error.
    Here's what's in the adobe setup error log:
    11/07/13 09:02:28:248 | [INFO] |  | OOBE | DE |  |  |  | 47551 | DEVersion: 5.0.0.0
    11/07/13 09:02:28:249 | [INFO] |  | OOBE | DE |  |  |  | 47551 | Loading library from /Applications/Utilities/Adobe Application Manager/DECore/DE5/Setup.dylib
    [       0] Thu Nov  7 09:02:28 2013  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [       0] Thu Nov  7 09:02:28 2013 ERROR
    DW040: The product "{7F311193-9368-453B-989F-939FEBF374CC}" is not installed. Cannot proceed with the uninstall
    [       0] Thu Nov  7 09:02:28 2013  INFO
    :: END TIMER :: [Total Timer] took 1 milliseconds (0.001 seconds)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW040: The product "{7F311193-9368-453B-989F-939FEBF374CC}" is not installed. Cannot proceed with the uninstall
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 33 - The product is not installed, cannot uninstall.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW040 ...
    11/07/13 09:05:21:888 | [INFO] |  | OOBE | DE |  |  |  | 51886 | DEVersion: 5.0.0.0
    11/07/13 09:05:21:889 | [INFO] |  | OOBE | DE |  |  |  | 51886 | Loading library from /Applications/Utilities/Adobe Application Manager/DECore/DE5/Setup.dylib
    [       0] Thu Nov  7 09:05:21 2013  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [       0] Thu Nov  7 09:05:21 2013 ERROR
    DW040: The product "{7F311193-9368-453B-989F-939FEBF374CC}" is not installed. Cannot proceed with the uninstall
    [       0] Thu Nov  7 09:05:21 2013  INFO
    :: END TIMER :: [Total Timer] took 1 milliseconds (0.001 seconds)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW040: The product "{7F311193-9368-453B-989F-939FEBF374CC}" is not installed. Cannot proceed with the uninstall
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 33 - The product is not installed, cannot uninstall.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW040 ...
    11/07/13 09:16:28:446 | [INFO] |  | OOBE | DE |  |  |  | 54570 | DEVersion: 5.0.0.0
    11/07/13 09:16:28:447 | [INFO] |  | OOBE | DE |  |  |  | 54570 | Loading library from /Applications/Utilities/Adobe Application Manager/DECore/DE5/Setup.dylib
    [       0] Thu Nov  7 09:16:28 2013  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [       0] Thu Nov  7 09:16:28 2013 ERROR
    DW040: The product "{7F311193-9368-453B-989F-939FEBF374CC}" is not installed. Cannot proceed with the uninstall
    [       0] Thu Nov  7 09:16:28 2013  INFO
    :: END TIMER :: [Total Timer] took 11 milliseconds (0.011 seconds) DTR = 11636.4 KBPS (11.3636 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW040: The product "{7F311193-9368-453B-989F-939FEBF374CC}" is not installed. Cannot proceed with the uninstall
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 33 - The product is not installed, cannot uninstall.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW040 ...
    Also, here's the PDapp.log info.  It's a doozy:
    11/15/13 09:20:40:696 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Build Version - 7.0.0.450
    11/15/13 09:20:40:696 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Logging Level verbosity Set  to 4
    11/15/13 09:20:40:696 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Application initialization start, Looking for command line arguments
    11/15/13 09:20:40:696 | [INFO] |  | ASU | AAMUpdatesNotifier | Common.CommandLineParser |  |  | 499209 | Parsing the command line provided. Number of command line arguments is 2
    11/15/13 09:20:40:696 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | No AAM Notifier is running so new instance is allowed to run...
    11/15/13 09:20:40:721 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Registering Notification to listen messages from another instance
    11/15/13 09:20:40:730 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Handle Relaunch Notification Action...
    11/15/13 09:20:40:874 | [INFO] |  | ASU | OPM | OPM |  |  | 499246 | Build Version - 7.0.0.271
    11/15/13 09:20:40:874 | [INFO] |  | ASU | OPM | OPM |  |  | 499246 | Logging Level verbosity Set  to 4
    11/15/13 09:20:40:874 | [INFO] |  | ASU | OPM | OPM |  |  | 499246 | Schema version and schema compatibility version are same or greater than current
    11/15/13 09:20:40:877 | [INFO] |  | ASU | OPM | OPM |  |  | 499246 | Successfully opened opm session, db location:/private/var/root/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    11/15/13 09:20:40:877 | [INFO] |  | ASU | OPM | OPM |  |  | 499246 | No Record found for the input fields in opm_getValueForKey
    11/15/13 09:20:41:874 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | CFU .... StatusCode(21) ErrorCode(0)
    11/15/13 09:20:41:874 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Handle updateUI Notification Action...
    11/15/13 09:20:41:874 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | inside getUpdates
    11/15/13 09:20:42:011 | [ERROR] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Cannot find any update Node
    11/15/13 09:20:42:011 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | All updates count 0
    11/15/13 09:20:42:011 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | haveUpdatesToInstall(status) 0 numberOfApplications 0
    11/15/13 09:20:42:011 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Releasing all locks acquired
    11/15/13 09:20:42:011 | [INFO] |  | ASU | AAMUpdatesNotifier | AAMUpdatesNotifier |  |  | 499209 | Quiting Application
    Fri Nov 15 09:29:08 2013          [INFO] Setup - Build Version - 6.0.335.0
    Fri Nov 15 09:29:08 2013          [INFO] Setup - Logging Level verbosity Set  to 4
    Fri Nov 15 09:29:08 2013          [INFO] Setup - TimeLog: Bootstrapper Start
    Fri Nov 15 09:29:08 2013          [INFO] Setup - TimeLog: Start initial checks
    Fri Nov 15 09:29:08 2013          [INFO] Setup - Launch Path set to /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6
    Fri Nov 15 09:29:08 2013          [INFO] Setup - Found 6 packages in setup manifest
    Fri Nov 15 09:29:08 2013          [INFO] PIM - Build Version - 6.0.335.0
    Fri Nov 15 09:29:08 2013          [INFO] PIM - Logging Level verbosity Set  to 4
    Fri Nov 15 09:29:08 2013          [WARN] PIM - Detected Old content in USF trying to delete it...
    Fri Nov 15 09:29:09 2013          [WARN] PIM - Successfully deleted old content...
    Fri Nov 15 09:29:09 2013          [INFO] PIM - Build Version - 6.0.335.0
    Fri Nov 15 09:29:09 2013          [INFO] PIM - Logging Level verbosity Set  to 4
    Fri Nov 15 09:29:09 2013          [INFO] PIM - CREATE PIM Instance ...
    Fri Nov 15 09:29:09 2013          [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - SUCCESS Created Tables.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PIM Database is Up To Date.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - Updater Inventory location:/Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/Install.app/Contents/Frameworks/UpdaterInventory.framework/UpdaterInventory
    Fri Nov 15 09:29:09 2013          [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - Current db schema version on machine 1.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - Current db schema version to install 1.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PIM DB Schema is up to date. Current schema version is 1.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PIM Database is Up To Date.
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Package id DF1EA1EE-7B19-4CC4-8950-BEB6D7F70191 is a old Package, new is installed on the system. Size required: 50504107
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Package id 36C746D4-D32C-422A-9B0F-F3719DAA3DF8 is a old Package, new is installed on the system. Size required: 3437843
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Package id 5C2E838A-E0AD-4727-B8FD-54DA0C7A6FBB is a old Package, new is installed on the system. Size required: 13317622
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Same Package id B5032FD8-3CFB-4FA1-9051-811EB16A189B is installed on the system. This will be repaired. Size required: 4237309
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Package id 59792158-B2AE-4670-8F68-EB7DE9535F3D is a old Package, new is installed on the system. Size required: 16042175
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Same Package id 7EF4FA31-DD11-4D7E-A9D0-7C1526746C65 is installed on the system. This will be repaired. Size required: 16135843
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Package id F07FC360-0D5A-46FA-97FE-D317850ECBFF is a old Package, new is installed on the system. Size required: 15719685
    Fri Nov 15 09:29:09 2013          [INFO] PIM - PackageCheck: Extra Package id 8A0F3ADC-339E-4137-909B-03222087765A found in ACF. Size required: 17558088
    Fri Nov 15 09:29:09 2013          [INFO] PIM - pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 150647939
    Fri Nov 15 09:29:09 2013          [INFO] PIM - freeDiskSpace ... 954134847488
    Fri Nov 15 09:29:09 2013          [INFO] Setup - TimeLog: End initial checks
    Fri Nov 15 09:29:09 2013          [INFO] Setup - TimeLog: Begin Installing
    Fri Nov 15 09:29:09 2013          [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/core/PDApp.pimx
    Fri Nov 15 09:29:10 2013          [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/D6/D6.pimx
    Fri Nov 15 09:29:10 2013          [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/DECore/DECore.pimx
    Fri Nov 15 09:29:10 2013          [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/DWA/DWA.pimx
    Fri Nov 15 09:29:10 2013          [INFO] PIM - Validating package file: '/Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/DWA/DWA.pimx'
    Fri Nov 15 09:29:10 2013          [INFO] PIM - Validating package file: '/Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/DWA/DWA.pima'
    Fri Nov 15 09:29:10 2013          [INFO] PIM - SUCCESS insertPackageUpdateList.
    Fri Nov 15 09:29:10 2013          [INFO] PIM - SUCCESS insertAppletRegInfoList.
    Fri Nov 15 09:29:13 2013          [INFO] PIM - SUCCESS installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/DWA/DWA.pimx.
    Fri Nov 15 09:29:13 2013          [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/P6/P6.pimx
    Fri Nov 15 09:29:14 2013          [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/LWA/LWA.pimx
    Fri Nov 15 09:29:14 2013          [INFO] PIM - Validating package file: '/Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/LWA/LWA.pimx'
    Fri Nov 15 09:29:14 2013          [INFO] PIM - Validating package file: '/Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/LWA/LWA.pima'
    Fri Nov 15 09:29:14 2013          [INFO] PIM - SUCCESS insertPackageUpdateList.
    Fri Nov 15 09:29:14 2013          [INFO] PIM - SUCCESS insertAppletRegInfoList.
    Fri Nov 15 09:29:18 2013          [INFO] PIM - SUCCESS installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/LWA/LWA.pimx.
    Fri Nov 15 09:29:18 2013          [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Professional CS6/Adobe Flash Professional CS6/packages/UWA/UWA.pimx
    Fri Nov 15 09:29:20 2013          [WARN] PIM - RemoveQuarantineInfo from File /private/var/root/Applications/Adobe/OOBE/PDApp/install.sig .
    Fri Nov 15 09:29:20 2013          [INFO] Setup - TimeLog: End Installing. Now launching PDApp
    Fri Nov 15 09:29:20 2013          [INFO] Setup - TimeLog: PDApp launched. Waiting for PDApp window to come
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp |  |  | 9943 | Build Version - 7.0.0.427
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp |  |  | 9943 | Logging Level verbosity Set  to 4
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp |  |  | 9943 | Application initialization start, Looking for command line arguments
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp.CommandLineParser |  |  | 9943 | Parsing the command line provided. Number of command line arguments is 5
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp |  |  | 9943 | Detecting Applet Database file...
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | AppletManager initialize...
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp |  |  | 9943 | Fetching Applet registeration information...
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Applet database path - /var/root/Applications/Adobe/OOBE/PDApp/
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | PIM library path - /var/root/Applications/Adobe/OOBE/PDApp/core/AdobePIM.dylib
    11/15/13 09:29:20:325 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Loading PIM library...
    11/15/13 09:29:20:332 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Fetching PIM API's...
    11/15/13 09:29:20:334 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | Build Version - 7.0.0.427
    11/15/13 09:29:20:334 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | Logging Level verbosity Set  to 4
    11/15/13 09:29:20:334 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | CREATE PIM Instance ...
    11/15/13 09:29:20:339 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | trying to createOrUpdatePIMDbSchema.
    11/15/13 09:29:20:341 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | Current db schema version on machine 1.
    11/15/13 09:29:20:341 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | Current db schema version to install 1.
    11/15/13 09:29:20:341 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | PIM DB Schema is up to date. Current schema version is 1.
    11/15/13 09:29:20:341 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | PIM Database is Up To Date.
    11/15/13 09:29:20:341 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Getting applet data from Applet database
    11/15/13 09:29:20:344 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | All installed pakages version string (pim_getCurrentPackagesVersion) is D6:7.0.0.426|DECore:7.0.0.414|DWA:3.0.94.0|LWA:3.0.64.0|P6:7.0.0.436|P7:7.0.0.453|PDApp:7 .0.0.427|UWA:7.0.0.450
    11/15/13 09:29:20:344 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | PIMSqlite closeDB status 0
    11/15/13 09:29:20:344 | [INFO] |  | ASU | PIM | PIM |  |  | 9943 | FREE PIM Instance ...
    11/15/13 09:29:20:344 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Registering Applets...
    11/15/13 09:29:20:346 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Loading Applet Switcher library: /var/root/Applications/Adobe/OOBE/PDApp/core/switcher/DWA_UI.dylib
    11/15/13 09:29:20:346 | [WARN] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Unable to get the applet switching info... Response is: 8
    11/15/13 09:29:20:346 | [INFO] |  | ASU | PDApp | PDApp |  |  | 9943 | DWA_UI argument on command line. Launching a different instance
    11/15/13 09:29:20:346 | [INFO] |  | ASU | PDApp | PDApp |  |  | 9943 | NO deployment workflow is running ...
    11/15/13 09:29:20:350 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 9943 | Initializing native WindowManager
    11/15/13 09:29:20:350 | [INFO] |  | ASU | PDApp | PDApp.MessageQuequeManager |  |  | 9943 | Message Queue Manager initialized...
    11/15/13 09:29:20:350 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 9943 | AsyncMsgProcessor initialized...
    11/15/13 09:29:20:350 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 9943 | AsyncMsgProcessor Message Queue initialized...
    11/15/13 09:29:20:350 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 9943 | ExternalGateway initialized...
    11/15/13 09:29:20:350 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 9943 | NativeCommandHandler initialized...
    11/15/13 09:29:20:350 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 9943 | NativePlatformHandler initialized...
    11/15/13 09:29:20:389 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 9943 | Creating APEWindow...
    11/15/13 09:29:20:389 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 9943 | Creating window instance
    11/15/13 09:29:20:389 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 9943 | Checking for appletID and appletVersion given in CommandLineOptions
    11/15/13 09:29:20:395 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 9943 | Creating APE stage instance
    11/15/13 09:29:20:616 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 9943 | Loading main SWF with Path and args - /var/root/Applications/Adobe/OOBE/PDApp
    11/15/13 09:29:20:711 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 9943 | Assigning window ID - 1 to created window
    11/15/13 09:29:20:961 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 9943 | MessageHandler initialized...
    11/15/13 09:29:20:973 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 9943 | Logging Level verbosity Set to  INFO
    11/15/13 09:29:20:973 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 9943 | Processing the startup Command
    11/15/13 09:29:20:976 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Starting Applet registeration...
    11/15/13 09:29:20:981 | [INFO] |  | ASU | PDApp | PDAPP.MainDisplayMediator |  |  | 9943 | Looking up for the Exact versioned applet for ID :DWA_UI
    11/15/13 09:29:20:984 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading Applet: DWA_UI Version = 2.0
    11/15/13 09:29:20:991 | [INFO] |  | ASU | PDApp | PDApp.ZStringLoader |  |  | 9943 | PDAPP SWF - locale set to - en_US
    11/15/13 09:29:20:992 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 0 out of 1550517
    11/15/13 09:29:21:028 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 65536 out of 1550517
    11/15/13 09:29:21:029 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 131072 out of 1550517
    11/15/13 09:29:21:029 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 196608 out of 1550517
    11/15/13 09:29:21:030 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 262144 out of 1550517
    11/15/13 09:29:21:031 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 327680 out of 1550517
    11/15/13 09:29:21:033 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 393216 out of 1550517
    11/15/13 09:29:21:034 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 458752 out of 1550517
    11/15/13 09:29:21:036 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 524288 out of 1550517
    11/15/13 09:29:21:037 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 589824 out of 1550517
    11/15/13 09:29:21:038 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 655360 out of 1550517
    11/15/13 09:29:21:040 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 720896 out of 1550517
    11/15/13 09:29:21:041 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 786432 out of 1550517
    11/15/13 09:29:21:065 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 851968 out of 1550517
    11/15/13 09:29:21:066 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 917504 out of 1550517
    11/15/13 09:29:21:067 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 983040 out of 1550517
    11/15/13 09:29:21:069 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1048576 out of 1550517
    11/15/13 09:29:21:070 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1114112 out of 1550517
    11/15/13 09:29:21:071 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1179648 out of 1550517
    11/15/13 09:29:21:072 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1245184 out of 1550517
    11/15/13 09:29:21:074 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1310720 out of 1550517
    11/15/13 09:29:21:075 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1376256 out of 1550517
    11/15/13 09:29:21:076 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1441792 out of 1550517
    11/15/13 09:29:21:078 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1507328 out of 1550517
    11/15/13 09:29:21:096 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 9943 | Loading progress 1550517 out of 1550517
    11/15/13 09:29:21:362 | [INFO] |  | ASU | PDApp | Deployment.D6FlexApplication |  |  | 9943 | Application load complete. Initializing the application
    11/15/13 09:29:21:365 | [INFO] |  | ASU | PDApp | Deployment.ApplicationStartup |  |  | 9943 | Processing the application startup
    11/15/13 09:29:21:366 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 9943 | Recieved Applet Loading Completion
    11/15/13 09:29:21:367 | [INFO] |  | ASU | PDApp | Deployment.ApplicationStartup |  |  | 9943 | Communication Manager initialized. Loading ZString
    11/15/13 09:29:21:369 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 9943 | Trying to load ZString for preferred locale - en_US
    11/15/13 09:29:21:370 | [INFO] |  | ASU | PDApp | Deployment.ApplicationStartup |  |  | 9943 | DPI values are 72,72 and DPIType is set to 1
    11/15/13 09:29:21:376 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 9943 | Locale set to - en_US
    11/15/13 09:29:21:377 | [INFO] |  | ASU | PDApp | Deployment.ApplicationStartup |  |  | 9943 | ZString initialized with :locale 'en_US'. Starting deployment workflow.
    11/15/13 09:29:21:382 | [INFO] |  | ASU | PDApp | Deployment.ApplicationStartup |  |  | 9943 | Font fallback applied is applicationFonts 'Lucida Grande, Segoe UI, Tahoma, _sans' inputControlFonts: 'Lucida Grande, Segoe UI, Tahoma, _sans'
    11/15/13 09:29:21:385 | [INFO] |  | ASU | PDApp | Deployment.FetchMediaInformation |  |  | 9943 | Start fetching the payloads data
    11/15/13 09:29:21:389 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 9943 | Loading Applet - DWA_Native for WindowID - 1
    11/15/13 09:29:21:400 | [INFO] |  | ASU | DWANative | DWANative |  |  | 9943 | Build Version - 7.0.0.425
    11/15/13 09:29:21:400 | [INFO] |  | ASU | DWANative | DWANative |  |  | 9943 | Logging Level verbosity Set  to 4
    11/15/13 09:29:21:415 | [INFO] |  | ASU | PDApp | DeploymentNativeApplet |  |  | 9943 | Media Signature found as {BD5669B5-49FF-4490-B956-E9D7CB9B0ADC}
    11/15/13 09:29:21:416 | [INFO] |  | ASU | PDApp | Deployment.FetchMediaInformation |  |  | 9943 | Summary file created for troubleshooting at path: file://///tmp/22451D5C-4076-4FA3-ADD4-1499D88AD42E/summary.htm
    11/15/13 09:29:21:420 | [INFO] |  | ASU | PDApp | DeploymentNativeApplet |  |  | 9943 | Setting System statistics data...
    11/15/13 09:29:21:421 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Extracting tokens for mac
    11/15/13 09:29:21:422 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [AdobeProgramFiles] and value /Applications
    11/15/13 09:29:21:422 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [AdobeCommon] and value /Library/Application Support/Adobe
    11/15/13 09:29:21:423 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [Common] and value /Library/Application Support
    11/15/13 09:29:21:423 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [ProgramFiles] and value /Applications
    11/15/13 09:29:21:423 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [SharedApplicationData] and value /Library/Application Support
    11/15/13 09:29:21:423 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [SharedDocuments] and value /Users/Shared
    11/15/13 09:29:21:424 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [Utilities] and value /Applications/Utilities
    11/15/13 09:29:21:424 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [FontsFolder] and value /Library/Fonts
    11/15/13 09:29:21:424 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [Library] and value /Library
    11/15/13 09:29:21:424 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [LibraryPreferences] and value /Library/Preferences
    11/15/13 09:29:21:425 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [ScriptingAdditions] and value /Library/ScriptingAdditions
    11/15/13 09:29:21:425 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [UserPreferences] and value /private/var/root/Library/Preferences
    11/15/13 09:29:21:425 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [UserCommon] and value /private/var/root/Library/Application Support
    11/15/13 09:29:21:426 | [INFO] |  | ASU | PDApp | Deployment.DirectoryTokens |  |  | 9943 | Adding a token with name [UserHome] and value /private/var/root
    11/15/13 09:29:21:427 | [INFO] |  | ASU | PDApp | DeploymentNativeApplet |  |  | 9943 | Checking whether the media with signature '{BD5669B5-49FF-4490-B956-E9D7CB9B0ADC}' has been run on this system
    11/15/13 09:29:21:428 | [WARN] |  | ASU | DWANative | DWANative |  |  | 9943 | Could not retrieve media signature from the arguments.
    11/15/13 09:29:21:429 | [INFO] |  | ASU | PDApp | DeploymentNativeApplet |  |  | 9943 | Fetching the setup manifest from media
    11/15/13 09:29:21:453 | [WARN] |  | ASU | DWANative | DWANative |  |  | 9943 | Error in getting pdbGetInstallState 4
    11/15/13 09:29:21:453 | [ERROR] |  | ASU | PDApp | DeploymentNativeApplet |  |  | 9943 | Payload list has no result top level tag: Return value is <error>Error in getting data from MDB</error>
    11/15/13 09:29:21:455 | [INFO] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 9943 | Showing screen with screenID : SCREEN_INSTALL_FAILURE
    11/15/13 09:29:21:517 | [INFO] |  | ASU | PDApp | DeploymentNativeApplet |  |  | 9943 | Launch Successful
    11/15/13 09:29:21:524 | [INFO] |  | ASU | PDApp | Deployment.ScreenNavigationCommand |  |  | 9943 | Approximate total time taken in startup is 156 milliseconds
    Fri Nov 15 09:29:21 2013          [INFO] Setup - TimeLog: PDApp window came. Exiting
    Fri Nov 15 09:29:21 2013          [INFO] Setup - =================  Exiting Installer with Code: 0  =================
    Fri Nov 15 09:29:21 2013          [INFO] PIM - PIMSqlite closeDB status 0
    Fri Nov 15 09:29:21 2013          [INFO] PIM - PIMSqlite closeDB status 0
    Fri Nov 15 09:29:21 2013          [INFO] PIM - FREE PIM Instance ...
    11/15/13 09:29:21:609 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenErrorPageErrorMediator |  |  | 9943 | onRegister
    11/15/13 09:29:21:610 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBaseMediator |  |  | 9943 | onRegister
    11/15/13 09:29:21:610 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.ContentFooterMediatorCF897F1F-D264-BFFC-6786 -5C617ACA4B2B |  |  | 9943 | onRegister
    I've also ran the Adobe Support Advisor and it found no errors.
    Any ideas?

    Hello,
    Please try downloading the Flash from following link:
    http://get.adobe.com/flashplayer/otherversions/
    Please choose "Mac OSX.." in step 1 and "Flash Player 15.." in Step 2.
    You should be able to download the Flash Player then.
    Regards,
    Anoop

Maybe you are looking for