Embedding Myriad Pro Semibold in Flash CS5

I'm trying to embed and display text using the "Myriad Pro" family. 'Regular', 'Bold', and 'Light' display ok, but 'Semibold' shows no text. I get no error messages. I use exacty the same procedure as for the other styles. E.g. the following:
var fmtUnit = new TextFormat();
    fmtUnit.font = "Myriad Pro Light";
    fmtUnit.color = 0x07251D;
    fmtUnit.size = 25;
displays ok in 'Light', but if I change the font name to "Myriad Pro Semibold", the text disappears. Again, if I change it to just "Myriad Pro", I get the text in 'Regular'; if I then add fmtUnit.bold = true; I get it in 'Bold'.
I've tried some other spelling variants, like "Myriad Pro SemiBold", "MyriadProSemiBold", and "MyriadProSemibold", all with and without the line fmtUnit.bold = true;, but nothing works. Is this some sort of a bug? I thought that with Myriad being an Adobe font it was the safest choice; I've embedded semibold fonts before and they worked fine; the problem here is that I have to use this particular font on client's orders.
TIA, Ninna

Adobe font designers, please tidy this up!
Having compared various fonts, it turns out that Myriad Pro in question consists of 2 subfamilies: "Myriad Pro" and "Myriad Pro Light", and that, let not the font name mislead you, "Myriad Pro Semibold" is in fact "Myriad Pro Light" 'Bold', so the proper way of setting the TextFormat for 'Semibold' would be:
var fmtUnit = new TextFormat();
    fmtUnit.font = "Myriad Pro Light";
    fmtUnit.bold = true;
    fmtUnit.color = 0x07251D;
    fmtUnit.size = 25;
I hope this will help others with myriad problems.

Similar Messages

  • Did myriad pro semibold condensed go away in indesign cc?

    We just changed from CS3 to CC and it seems myriad pro semibold condensed is no longer available. Any ideas where it went?  We are PC-based.

    Here's a list of the fonts installed with CS6. It includes Myriad Pro Semibold and Myriad Pro Bold Condensed. It doesn't include Myriad Pro Semibold Condensed:
    Font related documentation for Creative Suite 6

  • Myriad Pro Semibold in FrameMaker 11

    I have installed Myriad Pro Semibold in Windows:
    But it will not show up in either the Family or the Weight list.
    Any ideas?

    Arnis! You are a genius! Thank you, thank you, thank you.

  • Flash CS5 unable to play .FLV files on Macbook Pro

    I have a colleague who is trying to put together a Flash package for me  on her macbook pro.  It needs to play an flv file. She is unable to play  flv files on her computer either in Flash or using the Adobe Media  Player. I have no problem playing the same files on my macbook pro,  we're both running the latest OS and have version 1.8 of Adobe Media  Player.
    She went to the Adobe site to download the latest version of Adobe  Media Player, hoping that might include whatever component is missing on  her system. Because of Adobe's decision not to distribute AMP that  didn't help.  She has Flash Professional CS5 11.0.2 on her system.  When  she imports an flv video into a Flash project and tries to play it she  gets an error message saying it can't stream the video. Note that the  video is on her hard drive, it is NOT on the internet so no streaming  should be required.
    The actual error message is: "the video player is in the connection  error state. It enters this state when a video stream attempted to load  but was unsuccessful. There are two possible reasons for the error: no  connection to the server or the stream was not found."
    Since it's a file on her hard drive, and she has loaded the file  into the Adobe development environment successfully, the one thing we  know for certain is that neither of these reasons is correct. Something  is obviously missing on her system, what is it and what can we do to fix  it?

    I'm getting error too (Error #2044: Unhandled NetStatusEvent:. level=error, code=NetStream.Play.StreamNotFound). I'm getting this with CS5. This file was previously made in CS4 and never got this error.
    Everything (fla and flv too) is on external hard disk.
    As this work requires to be exported to mov, I've found out that everything needs to be on the mac (don't know for pc), like on desktop.
    So, let me wrap up disadvantages I got with Flash CS5:
    - TextField.embedFont makes the font disappear in CS5, so I can't use it, so I can't "play" with text in a comfortable way (in CS4, with embedFont = true, I was able to rotate and stuff). Now I have to make a bitmap out of it. It means 3 lines of code and a new variable, instead of just an easy one.
    - I have to rebuild my entire source path structure for AS classes, as my old one (that took me years of effort to be reasonable and used to work just fine in CS4).
    - I have to move stuff from my hard drive to the desktop, to make flv be played and to make a mov out of my animation.
    CS5 is making my job harder and making me lose a lot of time to find out errors that have no good reason to exist (it was not error. just "place CS5 doesn't like").

  • Embedding and using external fonts in Flash CS5

    I just upgraded to Flash CS5.  Font embedding is entirely different than it was in CS4.  I've been looking for examples online but none seem to show me a solution that matches what I need.
    In the project I'm working on, code changes the font a text box uses based on region and language.  To keep file size down I created separate swf files with the fonts embedded.  That way I only download the font I need.  The way I did this and the code I used in CS4 doesn't seem to work anymore.  Can someone please point me to a tutorial on this.
    Thanks

    OK, maybe you can help me figure out what I'm doing wrong.  Below is the code I'm using.
    LOADING THE FONT
    Font SWFs:
    I'm trying something new with CS5.  To create a swf with the font I need I'm creating a library symbol of the font with all the characters in it.  Titled it "Verdana".  I've also turned on Export for ActionScript and given the font a unique class name (VerdanaFont).  Then of course publish the swf, name it Verdana.swf, and put it in the correct location.  Does doing it this way automatically register the font?
    The Loader code:
    private function LoadFont()
    var fontPath:String = "assets/fonts/Verdana.swf";
    var fontLoader:Loader = new Loader();
    fontLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, createTextBox);
    fontLoader.load(new URLRequest(fontPath));
    The TextBox code:
    private function createTextBox()
    var tf:TextFormat = new TextFormat;
    tf.font = "Verdana";
    tf.align = "left";
    var textBox:TextField = new TextField;
    textBox.embedFonts = true;
    textBox.selectable = false;
    textBox.htmlText = "This is test text";
    textBox.setTextFormat(tf);
    stage.addChild(textBox);

  • Font embedding in Flash CS5

    Hi,
    I have 3 swf files: Main, FontLibrary and Graphics.
    Main.swf loads the other two and applies logic.
    Graphics.swf is created in Flash CS5 and contains a dynamic TextField instance, to which I want to apply a font from FontLibrary.swf. To know which font to apply, I apply the same font to textfield when I create it on stage.
    The problem is that the textfField with embedFonts=true searches for glyphs in its own swf file first. I don't want to embed the font in Graphics.swf. I use anti-alias type "Use device fonts". But as size report shows it still embeds the font, with no glyphs though.
    Is there a way to not embed a font into swf file using Flash CS5.5?
    (Buy the way, if I use TLFTextField it doesn't embed the font)
    Or how can I handle the situation from my Main.swf in a way that I get font not from Graphics.swf, but from FontLibrary.swf

    Good tutorial for you:
    http://www.republicofcode.com/tutorials/flash/as3text/
    http://www.republicofcode.com/tutorials/flash/as3css/

  • I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro

    Hi,  My name is David and I followed a course creating my own website from Lynda.com by Paul Trani. After that I created my first own webste. After I finished it, everything was working well in flash and firefox. I have only one problem and question concerning the feed back form for sending info from my website to my emailaddres. I created my website “LisbonDreamWalking”in Flash CS5 pro. I herein have a contact page, where people can send an email for a walk in Lisbon, date,the number of people etc. Now I want through my ISP / host funpic.org, that the input, info text fields to be sended to my emailaddress [email protected]. My mail URL adress  iss: http://lisbondreamwalk.li.funpic.org  This is a free host, so they don't work with forms like in the course, and I need some additional info for the php. Here is my HTML (Flash actionscript 3.0) for the sending I only have the red text to fill in (php), I was told by the adobe course.I really hope someone can help me?! Thanks in advance!
    Instructions: 1. Add your custom code on a new line after the line that says "// Start your custom code" below. The code will execute when the symbol instance is clicked. */  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13);  function fl_MouseClickHandler_13(event:MouseEvent):void {          if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "")      {           thankyou.text = "please fill out all fields";      }      else      {           // create a variable container           var allVars : URLVariables = new URLVariables();           allVars.name = thename.text;           allVars.email = theemail.text;           allVars.time = thetime.text;           allVars.persons = thepersons.text;           allVars.message = themessage.text;           //Send info to a URL           var mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php");           mailAddress.data = allVars;           mailAddress.method = URLRequestMethod.POST;           sendToURL(mailAddress);            thankyou.text = "Thank YOU!";           thename.text = "";           theemail.text = "";           thetime.text = "";           thepersons.text = "";           themessage.text = "";      } }
    H

    Thank you Kglad, I am going to see if I can make it work. I will let you know!
    Date: Thu, 13 Oct 2011 08:55:05 -0600
    From: [email protected]
    To: [email protected]
    Subject: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        Re: I need help for actionscript 3, sending php info to my email, website created in Flash cs5 pro
        created by kglad in Action Script 3 - View the full discussion
    you missed part of the tutorial (or the tutorial is incomplete):  send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_13); function fl_MouseClickHandler_13(event:MouseEvent):void{     if (thename.text == "" || theemail.text == "" || thetime.text == "" || thepersons.text == "" || themessage.text == "") { thankyou.text = "please fill out all fields"; } else { // create a variable container var allVars : URLVariables = new URLVariables(); allVars.name = thename.text; allVars.email = theemail.text; allVars.time = thetime.text; allVars.persons = thepersons.text; allVars.message = themessage.text; //Send info to a URLvar mailAddress:URLRequest = new URLRequest("http.www.namewebsite.com/gdform.php"); mailAddress.data = allVars; mailAddress.method = URLRequestMethod.POST; sendToURL(mailAddress);
    }}  var urlLoader:URLLoader=new URLLoader(); function sendToURL(mailAddress):void{urlLoader.addEventListener(Event.COMPLETE,completeF);urlLoade r.load(mailAddress);} function completeF(e:Event):void{ thankyou.text = "Thank YOU!"; thename.text = ""; theemail.text = ""; thetime.text = ""; thepersons.text = ""; themessage.text = "";}
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3969414#3969414
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3969414#3969414. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Action Script 3 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Successfully using a Native Extension with Flash CS5.5 Pro, having issues

    Hey all,
    I'm trying to use a native extension due to an app rejection about the new storage guidelines. I'm hoping someone can help me figure out how to use a native extension from Flash CS5.5 and the adt command line utility (I've never used before).
    Apples storage guidelines in 5.0.1 require files saved to Documents (and other places) to be marked with the icloud "do not back up" bit. I'm trying to use Adobe's IOS 5.0.1 data storage native extension to do that as I have file sharing enabled and my app downloads files I want the user to be able to copy to their desktop.
    From the bits and fragments I'm reading all over, getting it to compile means using the command line adt tool (I've never used it before) because Flash Pro CS5.5 doesn't support native extensions. Also, this native extension requires a v14 SWF published (11.1) and CS5.5 only goes up to 10.2 (or higher if you install the players).
    I edited the AiriPhone.xml file and pointed it to an AIR 3.1 airglobal.swc and I have AIR 3.1 overlayed in flash. I can't test AIR for iOS anymore after that change but I can get it to compile a SWF. The adt command line adt utility stopped complaining that my SWF version was 13 when it needed 14, so I assume this worked?
    I am trying to compile a debug version so I can see trace statements to see if the native extension reports success on changing the bit. Here is my command line cobbled together from scraps of info on adobe.com and the -help data:
    adt -package -target ipa-debug -connect 192.168.1.80 -provisioning-profile myApp.mobileprovision -storetype pkcs12 -keystore myApp.p12 myApp.ipa myApp-app.xml myApp.swf dat AppIconsForPublish Default-Landscape.png Default-LandscapeRight.png -extdir extensionDir
    Before this iCloud change this app published directly from Flash Pro CS5.5 without any issues. I am only running into issues getting this app to work with this native extension and/or published correctly.
    I am including the folders "dat" and "AppIconsForPublish" as well as splash screens (this app is landscape-only) as well as that extension in the folder extensionDir.
    After putting in my password my app compiles into an IPA which I can drop into iTunes. It has the same general size as the IPA generated from Flash Pro. The icon is correct, etc.
    When I sync this file, the progress bar goes across, I see it loading on my iPad and then once it goes to install I get a popup saying "iTunes Sync: 'myApp' failed to install."
    Is there anything obvious wrong with my adt line? Has anyone else used this native extension? Ideas on what I can do to fix this?
    No, unfortunately I did not build this with Flash Builder. I am an avid user of it now and this would be a moot point as it uses ANEs and changes SWF versions trivially. I have to get this to compile using Flash Pro CS5.5 though.
    Any help is greatly appreciated!
    edit:
    Just FWIW, after I updated the .xml to use the latest AIR and such (so the version is 14) I removed the extension, exported purely from Flash Pro CS5.5 and the app works fine. As soon as I enable the <extension> in the XML I can no longer install the app. This just appears to be a noob adt publish issue.

    My app downloads PDFs, movies and other information-esque files and saves them to the apps Documents folder so they can be retrieved via file sharing. These files not being in something purgable like /Library/Caches and not having the "do not back up" bit is why I was rejected.
    update: It's definitely my command line building.. I took out the native extension completely and published from flash to an IPA and it works. I then run adt on the same SWF that just worked and it fails to install. So the install failing is my command line. I see this article and my command line is very similar. I'm really uncertain why it's failing.

  • Myriad Pro accidently no more available in Flash

    Hello,
    I am using the Myriad Pro font for years. Now it is accidently not more available in Flash. I worked on a customer project and accidently the Myriad Pro font isn't shown any more in any FLA file. To test it I created a new FLA file, but even there the Myriad Pro isn't shown (I can choose it from the menu, but no letters are shown).
    Also reinstalling the font in Windows is no solution. In any other programs like Flash CS 3 Extended etc. I can still use the font and it works fine.
    Can somebody help me or has got the same problem?
    Thank you very much!
    Regards,
    Timo

    Ahhh thank you so much! Searched for it half of the day. Here are some more information, if anyone has got trouble with it too: http://graphics-unleashed.unleash.com/2012/12/windows-update-kb2753842-will-make-some.html

  • Need to re-download Flash CS5.5 Pro

    I have a Flash CS5.5 Pro License and a new computer at work - the old computer has been wiped - I therefore I need to re-download and reinstall Flash 5.5 on my new Win 7 pc.  I am an occasional Flash user only these days and am not going to cough for an upgrade, and definitely not interested in the Cloud service.  I have called a number of Adobe help lines already, and was eventually referred here, being assured that my problem would be resolved, so please can someone solve this one for me here.
    Thanks in advance.

    CS5.5 - http://helpx.adobe.com/creative-suite/kb/cs5-5-product-downloads.html
    You can also download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS5.5: http://prodesigntools.com/adobe-cs5-5-direct-download-links.html
    If you never deactivated the installation on the old machine you should contact Adobe support thru chat and ask them to reset your acrivations.  That way you will still be able to install and activate on two machines if you ever need a backup.
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

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

    I have intalled CS4 Design Premium and Flash Builder 4 (the trial version).  According to this Adobe
    training video they should work together "http://tv.adobe.com/watch/adc-presents/flash-builder-4-and-flash-professional-cs4-workflow /".
    However, when i try to create Flash Professional component for use in Flex as specified in the  the workflow  video to (i.e. copy a .fla to
    Flex Project lib directory or drag "custom" Flash Professional component onto state to link to Flash Pro) - I get the  "This feature requires Adobe Flash CS5"
    error mesage.
    Thanks for your help!
    Bob W.

    I have intalled CS4 Design Premium and Flash Builder 4 (the trial version).  According to this Adobe
    training video they should work together "http://tv.adobe.com/watch/adc-presents/flash-builder-4-and-flash-professional-cs4-workflow /".
    However, when i try to create Flash Professional component for use in Flex as specified in the  the workflow  video to (i.e. copy a .fla to
    Flex Project lib directory or drag "custom" Flash Professional component onto state to link to Flash Pro) - I get the  "This feature requires Adobe Flash CS5"
    error mesage.
    Thanks for your help!
    Bob W.

  • Flash CS5.5 - font outlines still get embeded while using runtime sharing

    I have a project where I use several SWFs and have the fonts outlines stored into a seperate SWF. Within the .fla file's I have checked the Import for runtime sharing with the various font definitions.
    In the library the linkage part shows for every font the Import: classname
    To get a correct idea how things look within the IDE, I've checked several character ranges within the font properties so the preview renders correctly.
    In Flash CS5 everything was working correctly; no font outline was included within the SWF. The size report also shows this.
    When I create the SWF with Flash CS5.5 font outlines of the selected ranges still get embedded into the SWF. The file size of the SWF is much larger and the font outline information shows up in the size report.
    Anyone has a solution for this problem?

    I've just stepped into the same problem. Quick analysis of SWF content showed that all "import" tags have been removed and replaced by "font" tags (sometimes empty (empty - meaning no glyphs are there), sometimes not). I am publishing SWFs for Flash 8/ AS 2.0, thus, the SWFs should be FULLY compatible with old players. Technically speaking, importing of fonts is totally busted in CS5.5 and makes the CS5.5 completely unusable for us.
    Seems VERY much like a nasty bug. I am going to play a bit more with it in order to find a workaround. If not - I'll go back to CS5. I really hope Adobe will fix this bug ASAP. I have submitted a bug report about this issue.
    A bit more info about repro the issue: create font.fla and export font $Font from it. Create the second fla (main.fla) that imports the font $Font from  the font.swf. Publish all the swfs. Look inside the main.swf and instead of "ImportAsset" tag for font you'll see the regular "Font" tag (like it was never imported). However, the "ExportAsset" tag exists in font.swf and it looks completely fine.
    AB: Added some info

  • Adobe flash cs5 pro crashes when launched.

    Adobe flash cs5 pro crashes when launched. The name of the problem is named 'Appcrash.' The application name is 'flash exe'. Application version 11.0.0.485. Name of the module with this faults is Adobepsl.dll. and the So version?: 6.0.6002.2.2.0.768.2
    When I start Flash cs5 there appears a small box which tells me that it is importing files, where I didn't ask for. This happened after I imported a video animation from Photoshop Cs3. But now I just want to start a new project which it doesn't allow. I get only the flash sign and the fonts and than during the building workspace, i get the errorreport. Anyone knows what to do? Because it is not only frustrating, now I can not work on my website projects which I have to finish soon, aaaahhhhhaaaaaahhhhhhhh.
    Thanks for reading and hopefully someone knows something to help me out of this misery. Oh I reinstalled flash cs5 allready, but nothing changed!.......

    Hello,
    We need you to recreate preferences to help resolve this issue as Jose suggests. Follow this KB article and see if it helps you.
    http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    Regards,
    Suhas Yogin

  • 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 CS5.5 Pro symbol properties window on OSX 10.7.2 Lion

    Hello
    My Flash CS5.5 is working ok on my new MackBook Pro, running OSX 10.7.2 Lion, although when I try to insert a new symbol or try to acces the movieclip's properties from the library, the propteries window doesn't appear! I am able to add a new symbol by pressing enter so it's working ok it's just I can't see the window anywhere and I can't interact with flash at all unless I press esc or enter a new symbol.
    Does anyone know why this is happening and can give me some help please? I have updated to the latest version too.
    Thanks
    Adam

    Has no one had this problem?

Maybe you are looking for