Display SMPTE timecode in Flash Pro

Is there a way to display SMPTE timecode instead of raw framecount in Flash Pro CS5? I don’t mean burned into an exported movie. I mean in Flash Pro so a person can use it developing a project. Is there a Flash plugin, maybe, that does this?  Ideally it should be resettable to zero for each scene. Any help would be much appreciated. I use a MacBook Pro running Lion. Thanks.

You can't declare the same variables/function more than once in a given timeline.  That's what all the errors are telling you.  The two options that Rob identified will work. 
What you can do is extend the actions frame for the length of the occupied timeline so that variables/functions you declare in frame 1 are available in all frames along the timeline.  To do this, you have the code in keyframe 1 and go to the end of the timeline and choose the command to Insert Frame.  You should see the timeline between the first frame and the last becomes one large white frame area.
I will often have two layers dedicated to actionscript.  One for the code that lives in frame 1 that gets shared along the timeline's length, and another for the commands that are specific to certain frames only.
If you need need text to appear/type-out in different frames then you just call the function that performs the typing while sending it the text that it needs to type.  If you need to type it into a different textfield, then you could pass that to the typing function as well so that it targets the desired textfield.

Similar Messages

  • View SMPTE timecode in Flash CS5

    Does anybody know how to display SMPTE timecode instead of raw framecount in Flash CS5? I don’t mean in an exported movie. I mean is it somehow possible to view SMPTE timecode in Flash as you are developing a project? There are shareware calculators that will convert one into the other, but doing it that way for every hitpoint is mindnumbingly tedious. Do any plugins do this inside of Flash? Any help would be much appreciated.

    http://www.flashandmath.com/flashcs5/rsltip/

  • SMPTE TimeCode Format In AE CS5.5 - Tenths Of Seconds?

    Hi,
    Is the SMPTE TimeCode format in AE CS5.5 customisable so that it can be changed from HH:MM:SS:FF to give tenths and one hundredths of a second rather than the frame count to the right of the seconds counter ( ...SS:nn)?
    I have it inserted into a video clip where it is counting upwards as:
    00:00:29:23
    00:00:29.24
    00:00:30:00
    For a 25fps video after the 24th frame in the 29th second it jumps to 30.00 seconds. The 24th frame is equal to .96 seconds so my question is can it be configured to display 00:00:29.96 where all units are time units and not intermingled time and frame units.
    I have migrated to AE from Premiere Pro in the understanding that the TimeCode is more user friendly in AE but it seems to be the same locked format as it is in Premiere Pro.
    I know that I can purchase the DVdate plugin but hope to be able to resolve the format without the need for another purchase.
    Any help most appreciated.
    Rgds

    Rick,
    Thank you for the explanation and the screen capture.
    Can the text layer be saved internally so that it is available to other projects or does it have to be created every time the timer is required. If I have a series of events that need the timer inserting, then if the text layer can be saved it will be of benefit. I can see a pitfall in saving the text layer for future use whereby the starting frame needs to be deifned each time but that is a very quick edit if the text layer is available as a preconfigured object.
    The working environment in which I am hoping to use the timers consists of up to 12 events in one *ts recorded video stream and my aim is to insert 12 timers, one per event, into an edited version of the *ts recorded video stream before re-rendering the final output.
    I have another issue whereby AE CS5.5 seems to be unable to open the *ts recorded files whereas Premiere Pro will open the files, however, that is an issue for another topic.......
    Rgds

  • How-to add Flash Player 9 to Flash Pro CC - (PC & MAC)

    Howdy -
    I wanted to compile all of the helpful information regarding lack of Flash 9 support in Adobe Flash Pro CC.
    As you know that Flash 9 is still required for a majority of flash adverts and the DFP platform is especially critical of the flash version on a SWF creative. 
    Currently in Flash Pro CC the lowest version of flash you can save as is 10.3. Even when you do export a SWF as Flash 10.3, DFP and the DoubleClick validator reports the exported file as Flash 12.
    DoubleClick Flash Validator ( Awesome for verifying clicktags and Flash versions ):
    https://flashval-temp.appspot.com/validator/
    After numerous searches, I found this discussion on the here on the forums that properly addresses the issue and how to implement the fix on a PC & Mac:
    Can Flash Pro CC publish to flash player 9??
    http://forums.adobe.com/message/5750996
    Thanks to Kglad for providing all the information on this awesome fix.
    http://forums.adobe.com/people/kglad
    Thanks to Jarkko Syrjälä for providing the information on the MAC directories.
    http://forums.adobe.com/people/JarSyr
    For PC users you are going to need to locate the directories below:
    C:\Program Files\Adobe\Adobe Flash CC\Common\Configuration\Players\FlashPlayer9_0.xml
    C:\Program Files\Adobe\Adobe Flash CC\Common\Configuration\ActionScript 3.0\FP9\playerglobal.swc
    Note: The FP9 folder does not exist in the "ActionScript 3.0" directory, you will need to create it and place the "playerglobal.swc" located on the attached "Windows Flash CC FP9 Assets.zip".
    ======
    For MAC users you are going to need to locate the directories below:
    /Applications/Adobe Flash CC/Adobe Flash CC.app/Contents/Common/Configuration/Players/FlashPlayer9_0.xml
    /Applications/Adobe Flash CC/Adobe Flash CC.app/Contents/Common/Configuration/ActionScript 3.0/FP9/playerglobal.swc
    To navigate inside "Adobe Flash CC.app" in Finder, you need to right click it and select "Show Package Content".
    Note: The FP9 folder does not exist in the "ActionScript 3.0" directory, you will need to create it and place the "playerglobal.swc" located on the attached "MAC Flash CC  FP9 Assets.zip".
    ======
    Dropbox link to the assets: https://www.dropbox.com/sh/1sfyv5fxac1d7ob/yYYZI8Nwe4
    Below is a screen capture of my Flash CC on my MAC displaying the Flash 9 option:
    Hope this helps!
    Cheers!

    Thank you so much! This really helped! One thing to also mention is to restart Flash as the last step.

  • 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?

  • BUG - in flash pro CC, 'bold' and 'italic' properties of TextFormat have no effect on rendered text

    Concise problem statement:
    If you compile with flash pro CC, and use the 'setTextFormat' method of a TextField, the 'bold' and 'italic' properties of the TextFormat argument have no effect on the rendered text. If you compile with flash pro CS6, the 'bold' and 'italic' properties work as expected.
    Apparently, with flash pro CC, the only way to make the text render correctly is to change the font name (add the suffix ' Bold', ' Italic', or ' Bold Italic'.) This means code which dynamically changes font styles only works in CS6 or CC, but not both. For example, if you use the 'bold' property the text renders bold in CS6 and regular in CC, whereas if you change the font name to add the suffix ' Bold', the text renders bold in CC and DOES NOT RENDER at all in CS6. This makes it difficult to transition a team from CS6 to CC.
    Steps to reproduce bug:
    1. Create an xfl with 2 TextFields on the stage, both with font "Trebuchet MS" and style "regular", one named boldTrueText containing the String "bold = true", one named fontNameText containing the String "fontName = Trebuchet MS Bold". Create 2 more TextFields on the stage for visual reference, both with font "Trebuchet MS", one with style "regular", one with style "bold".
    2. Add the following code to the Actions panel on frame 1:
    import flash.text.TextFormat;
    import flash.text.Font;
    var format:TextFormat = boldTrueText.getTextFormat();
    format.bold = true;
    boldTrueText.setTextFormat(format);
    format = fontNameText.getTextFormat();
    format.font = "Trebuchet MS Bold";
    fontNameText.setTextFormat(format);
    var fonts:Array = Font.enumerateFonts(), count:int = fonts.length;
    for (var i:int = 0; i < count; i++) {
        var font:Font = fonts[i];
        trace("fontName: " + font.fontName + ", fontStyle: " + font.fontStyle);
    3. Save, and compile with flash pro CS6 and flash pro CC.
    Results:
    With flash pro CS6, "bold = true" renders bold, and "fontName = Trebuchet MS Bold" DOES NOT RENDER.
    With flash pro CS6, the following is traced:
    fontName: Trebuchet MS, fontStyle: bold
    fontName: Trebuchet MS, fontStyle: regular
    With flash pro CC, "bold = true" renders regular, and "fontName = Trebuchet MS Bold" renders bold.
    With flash pro CC, the following is traced:
    fontName: Trebuchet MS, fontStyle: regular
    fontName: Trebuchet MS Bold, fontStyle: bold
    Expected results:
    The same text is rendered in both flash pro CS6 and CC. I don't know why this behavior was changed in flash pro CC - it causes silent failures in code which dynamically changes font styles. I expected the flash pro CS6 behavior to remain the same in CC, like so:
    With flash pro CC, "bold = true" renders bold, and "fontName = Trebuchet MS Bold" DOES NOT RENDER.
    With flash pro CC, the following is traced:
    fontName: Trebuchet MS, fontStyle: bold
    fontName: Trebuchet MS, fontStyle: regular
    If you don't want to break backward compatibility (any further), you could make both the behaviors work in flash pro CC, like so:
    With flash pro CC, "bold = true" renders bold (font is still "Trebuchet MS"), and "fontName = Trebuchet MS Bold" renders bold also.
    With flash pro CC, the following is traced:
    fontName: Trebuchet MS, fontStyle: bold
    fontName: Trebuchet MS, fontStyle: regular
    fontName: Trebuchet MS Bold, fontStyle: bold
    I submitted this bug with the bug form, and also with adobe bugbase (in case it isn't obsolete) - I'm just trying to maximize my chances of getting a fix.  Has anyone else encountered this bug?

    I just can't believe how there is ZERO documenation for any of this.  Flash's stylesheets have fontStyle and fontWeight properties, but they only recognize regular/italic and regular/bold respectively.
    This change in Flash CC completely breaks systems built in Flash CS6, and the font naming is actually arbitrary and is not a consistant combination of font name and style (e.g. "Eras ITC" family's bold font name is "Eras Bold ITC", but the bold version of Times New Roman is "Times New Roman Bold" (with Bold at the end, rather than the middle), and what's absolutely appaling is that the font name used at runtime is not exposed anywhere in the Flash IDE!!!  In the IDE you select a font family and font style independently, which is absolutely not what's used at runtime, because it actually uses a separate, arbitrarily named field in the font file for the font name. So we can't even know from within Flash what the proper runtime name is, unless we trace it out or open the font properties details tab in Windows explorer.
    It seems that Flash CC is always using the font "Title" that can be found in the properties of the font, NOT the font name displayed in Windows Font Preview or in Flash CC.  For example, the font name for Times New Roman Bold in Windows Font Preview is just "Times New Roman", but the font title in the properties/details tab is "Times New Roman Bold".  If they made the change to allow for specific fonts to be selected, that's fine, but it completely breaks HTML support in TextFields if it's not respecting bold and italic tags.
    This may actually be a trend on the web now, if you read this: http://www.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declara tion/ , it says: "If you’ve used one of FontSquirrel’s amazing @font-face kits, then you’re familiar with this approach to setting weights and styles. The CSS provided in every kit uses a unique font-family name for each weight and style, and sets the weight and style in the @font-face declaration to normal. [...] Notice that the font-family names are unique, with each font-family name accessing the appropriate Web font files."
    But there's just no mention of this in any documentation I can find.  What the hell.
    It's also helpful to realize that font and u tags have been deprecated in HTML5, while b and i tags have been repurposed since they still retain semantic meaning apart from style: https://www.w3.org/International/questions/qa-b-and-i-tags

  • 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;

  • Can't install Flash Pro CS6

    I have 5.5 MacBook Pro 13 running 10.7.4.
    I am trying to install Flash Pro CS6 Trial .. this error appears in the beginning of the installation process (when the progress bar is around 1%) :
    Exit Code: 34
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 0 error(s), 0 warning(s)
    FATAL: Payload '{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.98.0' information not found in Media_db.
    Any ideas how to fix that ?
    p.s. i did restart, closed all apps, etc, etc ..

    Do you meet the minimum specs:
    Multicore Intel processor
    Mac OS X v10.6 or v10.7
    2GB of RAM (3GB recommended)
    4GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive file system or on removable flash storage devices)
    1024x768 display (1280x800 recommended)
    Java Runtime Environment 1.6
    DVD-ROM drive
    QuickTime 7.6.6 software required for multimedia features
    Which Intel Processor do you have? Early Intels won't cut it.

  • 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

  • Adding Flash Player 11 support to Flash Pro CS5 and CS5.5

    http://blogs.adobe.com/rgalvan/2011/11/adding-fp11-support-to-flash-pro-cs5-and-cs5-5.html
    by Rich Galvan @Adobe
    MXP has been released. I tested on CS5 and seems to work
    Kenneth Kawamoto
    http://www.materiaprima.co.uk/

    Yes you could but that also displays the debug movie console which is uneccessary if you just want to quickly test your movie.
    I find myself using Test Movie hundreds of times a day and I just want a clean, quick, uncluttered view of how my work will look.
    I do use Debug Movie but only occasionally.
    More importantly though is that I'm not sure FP11 is ready yet. Its got a pretty horrible bug that really affects my work:
    http://forums.adobe.com/message/3993046#3993046
    Just my opinion!

  • I have FB4 and Flash Pro CS5 installed and get the message "This feature requires Adobe Flash CS5"

    Hi,
    I have installed both FB4 and Flash CS5 as trial versions. I installed FB4 as a plugin into eclipse Gallileo and then installed CS5. When trying to create a new Flash Project in Eclipse I get the message "This feature requires Adobe Flash CS5 or higher to be installed.", although CS5 is installed.
    I tried reinstalling FB4 but it didn't help.
    If FB4 is installed as standalone, then its eclipse IDE has no problem creating new Flash Projects.
    Any idea why the plugin doesn't detect my Flash Pro CS5 installation?
    Thanks.
    RaamEE-IL

    Hi,
    I've attached the logs you requested.
    You should know that I am using Windows-7 64bit
    Thanks for the help.
    Bye,
      RaamEE-IL
    <?xml version="1.0" encoding="utf-8" ?>
    <AMTLIB_PDApp xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="AMTLIB-PDApp.xsd">
        <amtlib_parameters>
            <key name="AdobeCode">{4429F632-6999-48AE-9251-9591031C7241}</key>
            <key name="AdobeIDCreated">true</key>
            <key name="AppAMTBkGndFilePath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT\LMResources\background.png</key>
            <key name="AppAMTConnectionFAQFilePath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\OBLRes\en_US\ConnectionFAQ.html</key>
            <key name="AppAMTLicenseAFAQFilePath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\OBLRes\en_US\LicenseFAQ.html</key>
            <key name="AppAMTLogoFilePath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT\LMResources\adobelogo.png</key>
            <key name="AppAMTPath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT</key>
            <key name="AppDriverAMTPath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT</key>
            <key name="AppDriverLEID">FlashBuilderPlugin-CS5-Win-GM</key>
            <key name="AppEULAFolderPath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\Legal</key>
            <key name="AppHostAppType">ALM_HostAppType_LicensedProduct</key>
            <key name="AppLaunchPath"></key>
            <key name="AppListOfLocales">en_US</key>
            <key name="AppName">Adobe Flash Builder 4 Plug-in</key>
            <key name="AppPath">C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse</key>
            <key name="AppProcessID"></key>
            <key name="AppRunningLEID">FlashBuilderPlugin-CS5-Win-GM</key>
            <key name="AppRunningLocale">en_US</key>
            <key name="AppSerialNumber">952307006650319154206597</key>
            <key name="BonusLaunchCode"></key>
            <key name="BuyURL">http://www.adobe.com/go/buy?productID=424&release=4.0&platform=2&locale=en_US</key>
            <key name="ClaimSource">nag_trial</key>
            <key name="DriverAdobeCode">{4429F632-6999-48AE-9251-9591031C7241}</key>
            <key name="ExtendedProfileRegURL">http://www.adobe.com/go/adobemembership?productID=424&release=4.0&platform=2&locale=en_US& source=PCSTHX</key>
            <key name="ForcedActivation">0</key>
            <key name="HasSAASBit">0</key>
            <key name="LaunchMode">postchrome</key>
            <key name="NoTrial">0</key>
            <key name="ShowEULA">false</key>
            <key name="TrialExpired">0</key>
            <key name="TrialGrace">60</key>
            <key name="TrialLeft">52</key>
            <key name="UpgradeCheckRequired">0</key>
            <key name="WorkFlowType">Subsequent_Launch</key>
        </amtlib_parameters>
    </AMTLIB_PDApp>
    2010-05-24 17:58:28 [3976]  AMT: START SESSION, library version 3.0.0.64,3.0
    2010-05-24 17:58:28 [3976]  AMT: Initializing C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\
    2010-05-24 17:58:28 [3976]  AMT: Adobe License Manager version 3.2 (build 64.0) RELEASE
    2010-05-24 17:58:28 [3976]  AMT: Virtualization Turned off
    2010-05-24 17:58:28 [3976]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\adobe_caps.dll
    2010-05-24 17:58:28 [3976]  ServiceLoader: Found library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\adobe_caps.dll
    2010-05-24 17:58:28 [3976]  PCDService: PCD Service in threaded mode
    2010-05-24 17:58:28 [3976]  performance: AMTPreObtainProductLicense took 2.547850 ms
    2010-05-24 17:58:28 [3976]  PCD thread: PCD thread started
    2010-05-24 17:58:28 [3976]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\Adobe_OOBE_Launch er.dll
    2010-05-24 17:58:28 [3976]  ServiceLoader: Found library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\Adobe_OOBE_Launch er.dll
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [0] = en_US
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [1] = en_US
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [2] = ja_JP
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [3] = de_DE
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [4] = fr_FR
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [5] = zh_CN
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [6] = ru_RU
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [7] = ko_KR
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [8] = en_GB
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [9] = ar_AE
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [10] = da_DK
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [11] = el_GR
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [12] = fi_FI
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [13] = he_IL
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [14] = nb_NO
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [15] = ro_RO
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [16] = zh_TW
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [17] = fr_CA
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [18] = es_ES
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [19] = es_MX
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [20] = it_IT
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [21] = pt_BR
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [22] = nl_NL
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [23] = sv_SE
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [24] = cs_CZ
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [25] = pl_PL
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [26] = tr_TR
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [27] = hu_HU
    2010-05-24 17:58:28 [3976]  AMT: App Product Locale [28] = uk_UA
    2010-05-24 17:58:28 [3976]  config: Loading configuration for C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT\application.xml
    2010-05-24 17:58:28 [3976]  config: Found payload code {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  PCDService: found driver code {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  config: config: Host app was installed, using installed license configuration.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [FLMap] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: Setting current license to the driver at startup because no mapping was found.
    2010-05-24 17:58:28 [3976]  config: Setting current license to FlashBuilderPlugin-CS5-Win-GM [ALL]
    2010-05-24 17:58:28 [3976]  config: payload code: {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  config: driver payload code: {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  config: driver licensing code: FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  config: current licensing code: FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  config: current locale code: ALL
    2010-05-24 17:58:28 [3976]  config: Done loading configuration
    2010-05-24 17:58:28 [3976]  AMT: Locale from PCD [0] = en_US
    2010-05-24 17:58:28 [3976]  AMT: Reordered Installed App Product Locale [0] = en_US
    2010-05-24 17:58:28 [3976]  config: Setting insalled locales
    2010-05-24 17:58:28 [3976]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2010-05-24 17:58:28 [3976]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\asneu.dll
    2010-05-24 17:58:28 [3976]  ServiceLoader: Found library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\asneu.dll
    2010-05-24 17:58:28 [3976]  AMT: config: Finding license info for payload: {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  AMT: config: PayloadCode: {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  AMT: config: Driver PayloadCode: {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  AMT: config: Installed LicensingCode: FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [BridgeTalkCode] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [BridgeTalkCode] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [EULA] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Registration] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Registration] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Updates] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Updates] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  AMT: config: No BridgeTalkCode found in configuration; Bridgetalk will be disabled.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SuiteFeatureCount] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:28 [3976]  AMT: Application can be serialized (sif file found).
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}en_US] in cache.
    2010-05-24 17:58:28 [3976]  config: No en_US licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  config: Setting current license to FlashBuilderPlugin-CS5-Win-GM [ALL]
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [ExpirationDate] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:28 [3976]  AMT: Subsequent launch (serial [95230700665031915420] in trial).
    2010-05-24 17:58:28 [3976]  AMT: Application state initialized.  Obtaining Product License.
    2010-05-24 17:58:28 [3976]  AMT: Obtaining client features from cache.
    2010-05-24 17:58:28 [3976]  AMT: Obtaining client product info from cache.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [ExpirationDate] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [ExpirationDate] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:28 [3976]  AMT: Running in PROV_APP
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [MediaTag] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  config: No media tag found for payload {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  config: Using default media policy RET
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [EULA_ACCEPTED] in hive [FlashBuilderPlugin-CS5-Win-GM] in cache.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [EULA_PHASE] in hive [FlashBuilderPlugin-CS5-Win-GM] in cache.
    2010-05-24 17:58:28 [3976]  uiswitch: Suppressing EULA display on requst
    2010-05-24 17:58:28 [3976]  AMT: This is a subsequent launch. Deferring services.
    2010-05-24 17:58:28 [3976]  performance: AMTObtainProductLicense took 179.272598 ms
    2010-05-24 17:58:28 [3976]  AMT: Pre-Validating Product License.
    2010-05-24 17:58:28 [3976]  AMT: Services not yet loaded in this session.
    2010-05-24 17:58:28 [3976]  AMT: Loading services in background to get ready for Validate call.
    2010-05-24 17:58:28 [3976]  AMT: Spawning background thread to load services.
    2010-05-24 17:58:28 [3976]  performance: AMTPreValidateProductLicense took 4.600975 ms
    2010-05-24 17:58:28 [3976]  AMT: Starting work on prevalidate thread.
    2010-05-24 17:58:28 [3976]  AMT: AMT: PreValidating Product License.
    2010-05-24 17:58:28 [3976]  AMT: Launch Workflow not yet done in this session.
    2010-05-24 17:58:28 [3976]  AMT: Starting Background Subsequent Launch Workflow
    2010-05-24 17:58:28 [3976]  AMT: Starting ALM workflow.
    2010-05-24 17:58:28 [3976]  AMT: Initializing ALM for serialized activation.
    2010-05-24 17:58:28 [3976]  ALMService: Initializing as licensed app
    2010-05-24 17:58:28 [3976]  ALM: _info_: Start ALM 3.2 Release (build 3.2.64.0)
    2010-05-24 17:58:28 [3976]  SLCoreService: Starting up SLCore 1.0 Release (build 1.0.13.199023).
    2010-05-24 17:58:28 [3976]  SLCoreService: Service construction took 0.0 ms and succeed.
    2010-05-24 17:58:28 [3976]  ALM: _info_: LEID passed FlashBuilderPlugin-CS5-Win-GM is used to configure SLCore = 0
    2010-05-24 17:58:28 [3976]  ALM: _info_: Host app is Licensable App
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [FlashBuilderPlugin-CS5-Win-GM{|}2] in hive [SSC-CS5-LE-Dominance] in master.
    2010-05-24 17:58:28 [3976]  ALM: _info_: Found LEID FlashBuilderPlugin-CS5-Win-GM with AMT Path C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT
    2010-05-24 17:58:28 [3976]  ALM: _info_: Found LEID WebSuitePremium-CS5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\WebSuitePremium-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  ALM: _info_: Found LEID MasterCollection-CS5-Win-GM with AMT Path C:\Program Files (x86)\Common Files\Adobe\ssc\MasterCollection-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [MediaTag] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  config: No media tag found for payload {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  config: Using default media policy RET
    2010-05-24 17:58:28 [3976]  ALM: _info_: MediaTagPolicy is RET
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [NTL_WO_SN] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:28 [3976]  ALM: _info_: Canonical LEID is FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  ALM: _info_: Driver LEID is FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [952307006650319154206597] in hive [RejectedSNDomain_CS5] in cache.
    2010-05-24 17:58:28 [3976]  SLCoreService: Reading product config [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT\SLConfig.xml]
    2010-05-24 17:58:28 [3976]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2010-05-24 17:58:28 [3976]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2010-05-24 17:58:28 [3976]  ALM: _info_: Set Running Locale to en_US
    2010-05-24 17:58:28 [3976]  ALM: _time_: (func: ALM_Initialize, duration: 0.016 sec)
    2010-05-24 17:58:28 [3976]  AMT: Performing ALM silent license verification.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [EncryptedSerial] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in cache.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Serial] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in cache.
    2010-05-24 17:58:28 [3976]  config: No pre-serial number found in {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [PSN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}en_US] in cache.
    2010-05-24 17:58:28 [3976]  config: No en_US provisional serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [PSN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL provisional serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  ALM: _info_: Validate license at Post-Chrome time, running locale is en_US
    2010-05-24 17:58:28 [3976]  ALM: _info_: Searching license for locale en_US ...
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}en_US] in cache.
    2010-05-24 17:58:28 [3976]  config: No en_US licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  ALM: _info_: Found no existing serialization
    2010-05-24 17:58:28 [3976]  ALM: _info_: Searching serial number for all possible LEIDs ...
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}en_US] in cache.
    2010-05-24 17:58:28 [3976]  config: No en_US licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [WebSuitePremium-CS5-Win-GM{|}en_US] in cache.
    2010-05-24 17:58:28 [3976]  config: No en_US licensed serial number found in WebSuitePremium-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [WebSuitePremium-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in WebSuitePremium-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [MasterCollection-CS5-Win-GM{|}en_US] in cache.
    2010-05-24 17:58:28 [3976]  config: No en_US licensed serial number found in MasterCollection-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [MasterCollection-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in MasterCollection-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  ALM: _info_: Found no serial number
    2010-05-24 17:58:28 [3976]  ALM: _info_: This is the running locale, stop the search
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}en_US] in cache.
    2010-05-24 17:58:28 [3976]  config: No en_US licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [952307006650319154206597] in hive [RejectedSNDomain_CS5] in cache.
    2010-05-24 17:58:28 [3976]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Checking if lang pack is installed for ALL
    2010-05-24 17:58:28 [3976]  ALM: _info_: alm::IsLangPackForLocaleInstalled - Lang pack is not installed
    2010-05-24 17:58:28 [3976]  config: Setting current license to FlashBuilderPlugin-CS5-Win-GM [ALL]
    2010-05-24 17:58:28 [3976]  SLCoreService: Syncing to license store...
    2010-05-24 17:58:28 [3976]  SLCoreService: Found client mkey.
    2010-05-24 17:58:28 [3976]  SLCoreService: Loading license references...
    2010-05-24 17:58:28 [3976]  SLCoreService: Found 2 license file(s)
    2010-05-24 17:58:28 [3976]  SLCoreService: Parsing license file [174626573.lic] succeed.
    2010-05-24 17:58:28 [3976]  SLCoreService: Parsing license file [3254477.lic] succeed.
    2010-05-24 17:58:28 [3976]  SLCoreService: License store synchronization took 76.7 ms and succeed.
    2010-05-24 17:58:28 [3976]  SLCoreService: Query license: type = 1, duration = 60 days, remaining = 30 day(s) 53614 seconds.
    2010-05-24 17:58:28 [3976]  SLCoreService: Feature ALM_FlashBuilderPremCS5GM_4.0 is enabled.
    2010-05-24 17:58:28 [3976]  SLCoreService: Feature FlashBuilder_4.0 is enabled.
    2010-05-24 17:58:28 [3976]  SLCoreService: Feature FlashBuilder_Base_4.0 is enabled.
    2010-05-24 17:58:28 [3976]  SLCoreService: Feature FlashBuilder_Prem_4.0 is enabled.
    2010-05-24 17:58:28 [3976]  ALM: _info_: Performing Block Check
    2010-05-24 17:58:28 [3976]  SLCoreService: Query license: type = 1, duration = 60 days, remaining = 30 day(s) 53614 seconds.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Subscription] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Subscription] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [ACT_NOINTERNET] in hive [FlashBuilderPlugin-CS5-Win-GM] in cache.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SERVICE_ONLINE] in hive [FlashBuilderPlugin-CS5-Win-GM] in cache.
    2010-05-24 17:58:28 [3976]  SLCoreService: Query license: type = 1, duration = 60 days, remaining = 30 day(s) 53614 seconds.
    2010-05-24 17:58:28 [3976]  ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.078 sec)
    2010-05-24 17:58:28 [3976]  ALM: _info_: ALM_License_SilentValidate return license status: Valid Not Activated
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [SN] in hive [FlashBuilderPlugin-CS5-Win-GM{|}ALL] in cache.
    2010-05-24 17:58:28 [3976]  config: No ALL licensed serial number found in FlashBuilderPlugin-CS5-Win-GM
    2010-05-24 17:58:28 [3976]  AMT: License check shows product is still in trial.
    2010-05-24 17:58:28 [3976]  AMT: Prevalidation finds app not activated.  Requiring foreground validate.
    2010-05-24 17:58:28 [3976]  AMT: Calling AUM API to create scheduler entry to be used by updater.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Updates] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  PCDService: No value for key [Updates] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:28 [3976]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2010-05-24 17:58:28 [3976]  ServiceLoader: looking for library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\updaternotificati ons.dll
    2010-05-24 17:58:28 [3976]  ServiceLoader: Found library C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexide.amt_4.0.0.272416\os\win32\x86\updaternotificati ons.dll
    2010-05-24 17:58:28 [3976]  AUMService: IsUpdaterEnabled call
    2010-05-24 17:58:28 [3976]  AUMService: IsUpdaterEnabled call succeeded
    2010-05-24 17:58:28 [3976]  AUMService: Get LEID xml call
    2010-05-24 17:58:28 [3976]  AUMService: Get LEID XML call succeeded
    2010-05-24 17:58:28 [3976]  AMT: AUM GetLEID called with status =0.
    2010-05-24 17:58:28 [3976]  AMT: Starting Data Collection for SWTag_Init()
    2010-05-24 17:58:28 [3976]  AMT: DoISOTagging() productCanonicalLEID = FlashBuilderPlugin-CS5-Win-GM;outMappedLEID =  FlashBuilderPlugin-CS5-Win-GM, unused =
    2010-05-24 17:58:28 [3976]  AMT: DoISOTagging() productPayloadCode = {4429F632-6999-48AE-9251-9591031C7241};driverPayloadCode =  {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:28 [3976]  AMT: SWTag_Init() Tags Arguments Adobe Flash Builder 4 Plug-in; FlashBuilderPlugin-CS5-Win-GM;
    2010-05-24 17:58:28 [3976]  AMT: DoISOTagging() License Status = trial
    2010-05-24 17:58:28 [3976]  AMT: DoISOTagging() Tags 952307006650319154206597; 4.0; TRIAL
    2010-05-24 17:58:28 [3976]  AMT: DoISOTagging() Product Version 4; 0
    2010-05-24 17:58:28 [3976]  AMT: Prevalidate indicates license is bad or UI is required.
    2010-05-24 17:58:28 [3976]  performance: PreValidate thread took 265.950806 ms
    2010-05-24 17:58:29 [3976]  AMT: AMT: Validating Product License.
    2010-05-24 17:58:29 [3976]  AMT: Launch Workflow not yet done in foreground in this session.
    2010-05-24 17:58:29 [3976]  AMT: Starting Foreground Subsequent Launch Workflow
    2010-05-24 17:58:29 [3976]  AMT: Running in PROV_APP
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [MediaTag] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:29 [3976]  config: No media tag found for payload {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:29 [3976]  config: Using default media policy RET
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [EULA_ACCEPTED] in hive [FlashBuilderPlugin-CS5-Win-GM] in cache.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [EULA_PHASE] in hive [FlashBuilderPlugin-CS5-Win-GM] in cache.
    2010-05-24 17:58:29 [3976]  uiswitch: Suppressing EULA display on requst
    2010-05-24 17:58:29 [3976]  AMT: ALM workflow completed in this session.
    2010-05-24 17:58:29 [3976]  AMT: Product is not activated.  Starting ALM launch-time product licensing UI.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [ExpirationDate] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:29 [3976]  SLCoreService: Query license: type = 1, duration = 60 days, remaining = 30 day(s) 53613 seconds.
    2010-05-24 17:58:29 [3976]  SLCoreService: Query license: type = 1, duration = 60 days, remaining = 30 day(s) 53613 seconds.
    2010-05-24 17:58:29 [3976]  ALM: _info_: Entered ALM_NeedANAG
    2010-05-24 17:58:29 [3976]  ALM: _info_: Exiting ALM_NeedANAG
    2010-05-24 17:58:29 [3976]  AMT: App is not to be relaunched.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [EULAFolderName] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:29 [3976]  EULA: EULAFolderName key not found for license, using default name "Legal"
    2010-05-24 17:58:29 [3976]  EULA: EULA folder found relative to folder containing licensing AMT folder.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [EULAFolderName] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:29 [3976]  EULA: EULAFolderName key not found for app, using default name "Legal"
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [NTL_WO_SN] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [STORE_URL] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:29 [3976]  AMT: Running in PROV_APP
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value WorkFlowType [Subsequent_Launch]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value ShowEULA [false]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value TrialGrace [60]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value TrialLeft [31]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value BuyURL [http://www.adobe.com/go/buy?productID=424&release=4.0&platform=2&locale=en_US]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value LaunchMode [postchrome]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AdobeIDCreated [true]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppLaunchPath []
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppAMTBkGndFilePath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT\LMResources\background.png]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppAMTLogoFilePath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT\LMResources\adobelogo.png]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppAMTLicenseAFAQFilePath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\OBLRes\en_US\LicenseFAQ.html]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppAMTConnectionFAQFilePath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\OBLRes\en_US\ConnectionFAQ.html]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AdobeCode [{4429F632-6999-48AE-9251-9591031C7241}]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value DriverAdobeCode [{4429F632-6999-48AE-9251-9591031C7241}]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppName [Adobe Flash Builder 4 Plug-in]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppRunningLEID [FlashBuilderPlugin-CS5-Win-GM]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppDriverLEID [FlashBuilderPlugin-CS5-Win-GM]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppRunningLocale [en_US]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppListOfLocales [en_US]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppProcessID []
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppPath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppAMTPath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppDriverAMTPath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\AMT]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppHostAppType [ALM_HostAppType_LicensedProduct]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppEULAFolderPath [C:\Program Files (x86)\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\Legal]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value TrialExpired [0]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value AppSerialNumber [952307006650319154206597]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value NoTrial [0]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value UpgradeCheckRequired [0]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value BonusLaunchCode []
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value HasSAASBit [0]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value ForcedActivation [0]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value ExtendedProfileRegURL [http://www.adobe.com/go/adobemembership?productID=424&release=4.0&platform=2&locale=en_US& source=PCSTHX]
    2010-05-24 17:58:29 [3976]  uiswitch: Key Value ClaimSource [nag_trial]
    2010-05-24 17:58:29 [3976]  uiswitch: Subsequent_Launch
    2010-05-24 17:58:29 [3976]  uiswitch: PDApp
    2010-05-24 17:58:29 [3976]  uiswitch: Launched
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [AdobeUpdaterCodeV2] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [Updates] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [Updates] in hive [{4429F632-6999-48AE-9251-9591031C7241}] in master.
    2010-05-24 17:58:29 [3976]  AUMService: config: No AdobeUpdaterCode found in configuration; AUM will be disabled.
    2010-05-24 17:58:29 [3976]  AUMService: IsUpdaterEnabled call
    2010-05-24 17:58:29 [3976]  AUMService: IsUpdaterEnabled call succeeded
    2010-05-24 17:58:29 [3976]  ALM: _info_: Deactivation menu is disabled
    2010-05-24 17:58:29 [3976]  AMT: Completed Launch Workflow successfully.
    2010-05-24 17:58:29 [3976]  AMT: Checking client features against cache.
    2010-05-24 17:58:29 [3976]  AMT: Feature FlashBuilder_Prem 4.0 is licensed (was licensed).
    2010-05-24 17:58:29 [3976]  AMT: Feature FlashBuilder_Base 4.0 is licensed (was licensed).
    2010-05-24 17:58:29 [3976]  AMT: Validating client product info against cache.
    2010-05-24 17:58:29 [3976]  PCDService: No value for key [ExpirationDate] in hive [FlashBuilderPlugin-CS5-Win-GM] in master.
    2010-05-24 17:58:29 [3976]  AMT: Starting Data Collection for SWTag_Init()
    2010-05-24 17:58:29 [3976]  AMT: DoISOTagging() productCanonicalLEID = FlashBuilderPlugin-CS5-Win-GM;outMappedLEID =  FlashBuilderPlugin-CS5-Win-GM, unused =
    2010-05-24 17:58:29 [3976]  AMT: DoISOTagging() productPayloadCode = {4429F632-6999-48AE-9251-9591031C7241};driverPayloadCode =  {4429F632-6999-48AE-9251-9591031C7241}
    2010-05-24 17:58:29 [3976]  AMT: SWTag_Init() Tags Arguments Adobe Flash Builder 4 Plug-in; FlashBuilderPlugin-CS5-Win-GM;
    2010-05-24 17:58:29 [3976]  AMT: DoISOTagging() License Status = trial
    2010-05-24 17:58:29 [3976]  AMT: DoISOTagging() Tags 952307006650319154206597; 4.0; TRIAL
    2010-05-24 17:58:29 [3976]  AMT: DoISOTagging() Product Version 4; 0
    2010-05-24 17:58:29 [3976]  AMT: AMT: Product License Validated.
    2010-05-24 17:58:29 [3976]  performance: AMTValidateProductLicense took 50.538868 ms

  • Flash Media Playback - Compatible with Flash Pro?

    Hi all, I recently came across the Flash Media Playback player, (http://www.adobe.com/products/flash-media-playback.html) and it seems like a great solution for streaming video on a website. However, I'm wondering if we can somehow use the Flash Media Playback streaming service inside of Flash Professional. The FMP only outputs html code, so I'm not sure how or if this could be used in Flash, but is seem like something that should be possible.
    Any ideas? Thanks!

    The purpose of that product is to embed in HTML. If you're using AIR and use a StageWebView (which displays a native browser/HTML) then yes you could. Otherwise the purpose is specifically NOT to require Flash Professional. It's a fallback player, which means it attempts to use HTML5/MP4 as a best practice. If it senses no mp4 support it falls back to a flash player/SWF. The very nature of it overall is a copy and paste media player to use if you don't have Flash Pro.
    It's based on OSMF, which is a player you can use inside Flash Pro:
    http://www.opensourcemediaframework.com/
    API:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/org/osmf/media/package- detail.html

  • Flash Pro CC crash when using pencil, brush tool

    Hello,
    I have bought the full CC package and installed Flash Pro CC today on my laptop (lenovo y50) and im getting crashes when i use the pencil and brush tool.
    When i use the select tool the selection is not in the right place. program feels weird.
    Im using lastest version
    running windows 8.1
    lastest flash and air and graphic drivers.
    It just crashes doesn't even show a error just benggg stopped working.
    Can anybody help me out?
    Greatzz

    solved
    i was having the same problem and found the solution from Adobe.
    you have to go to control panel - hardware and sound - display -
    change the size of the text to the smaller one 100%
    REstart the os and start adobe flash
    i wish this will help

  • Flash Pro CS6 - not enough JVM memory - change 128 to 256, flash doesn't start.

    Hi,
    working on very large projects, I often get the "flash ran out of memory for the jvm" error.
    Restarting flash does the trick for another couple of hours, until I get that error again.
    It opens the jvm.ini file to let me increase Xmx memory value.
    I change it from -Xmx128m to -Xmx256m
    I restart flash, get the error: "Error initializing Java Runtime environment. You may need to reinstall Flash"
    I change it back to -Xmx128m, and flash starts again.
    But obviously, I again get the "not enough memory" error.
    Am I doing something wrong?
    Also,
    after installing Flash Pro CS6, previously installed Flash Pro CS5.5 does not start, gives me the JVM initialization error all the time, regardless of which Xmx value I put for CS5.5

    back to square one again. The error message just popped up. So annoying.
    update:
    I removed some of the images I embed using the '[Embed tag'. And now it publishes again without the error. Weird because the published swf is only 1.8MB. Nothing crazy. So the problem seems related to embedding images using the [Embed tag...
    update 2 / FIX:
    Instead of using the embed tag to embed images I now have an 'assets' folder that I add to the AIR project (publish settings) that contains my images. Then I load the various images using the Loader. After an image is loaded I convert it to a Texture to use in Starling like so:
    var bitmap:Bitmap = new Bitmap(new BitmapData(currentBigTextureLoader.width, currentBigTextureLoader.height, true, 0x00000000));
    bitmap.bitmapData.draw(currentBigTextureLoader);
    bigTextures[aBigTexturesToLoad[nCurrentBigTextureToLoad]] = Texture.fromBitmap(bitmap);
    You can then use these Textures to display an image in Starling like so:
    var base:Image = new Image(bigTextures["CollectionBase"]);
    Bit of a workaround but al least I don't get the Java Error anymore

  • Flash Pro CS6 Crash when pasting object

    Hi
    I am finding that Flash Pro CS6 crashes when you try to paste an object from one FLA library to another.
    This only seems to occur when the object contains a text object with an embedded font.
    Can you help with this problem please.
    Cheers

    solved
    i was having the same problem and found the solution from Adobe.
    you have to go to control panel - hardware and sound - display -
    change the size of the text to the smaller one 100%
    REstart the os and start adobe flash
    i wish this will help

Maybe you are looking for

  • Recording on my VCR

    I can view a taped program from my VCR to my TV, but can not record a program coming in from the FIOS box. I've hooked up the FIOS box to the VCR and then the VCR to the TV, but I can't record a program. How do I record a program with my VCR? Hope so

  • IPhone 6 Wi-Fi and Battery Problems

    Background info: -- My first iPhone 6 kept randomly shutting down and turning itself back on while I was in various apps and on the home screen and also while the phone was on stand-by. I called Apple Support and they sent me a replacement without as

  • My changes to an external hard drive's files and folders vanished.

    Something crazy happened with a Mac-formatted external hard drive I've been working with. Today, out of nowhere, it reverted to a state where tons of organizational work I have done on the folder contents vanished. Files I deleted were restored, file

  • How to an on screen dialogue box?

    How to an on screen dialogue box?

  • Oracle 11g Express for Ubuntu Linux

    Just like Oracle provided express edition for linux for 10g, will there be an easy to install express edition of 11g for linux? I mean via apt-get or debs or synaptic. Of course, synaptic being the easiest I have EVER seen oracle install on linux. I