Flash Catalyst + List + Dynamic ?

Hey guys,
my plan:
Create a nice List in Catalyst, containing custom items with a textfield in it. A Label u can say... The Question ist, how i can bind dynamic test @ this textfield (inside the listItem inside the List)
Of Course i am using FLashbuilder, to map the dynamic Text (Array) to the items of the List.
Hope for an answer.
Greetings, Nico

Hi Nico,
There's no way in this version of Catalyst to attach an editable Text Input control to dynamic data in a list.  You'll have to write a little bit of code in Flash Builder to do this.  However, you can get most of the way there in Catalyst:
Create a list in Catalyst and edit the list item's appearance
Place some plain text with the text tool where you want your Text Input to go in the final version (you can even draw a box around it, etc. to make your prototype look more like the final version)
Save the project and import this FXP into Flash Builder
Edit the list item's .mxml file
Locate the <s:RichText> tag for your plain text, and change the "<s:RichText" part to "<s:TextInput"
Tweak the position to line up with the original by reducing the x and y values a little bit
Hope that helps!
- Peter

Similar Messages

  • Dynamic link between Photoshop and Flash Catalyst does not exist

    Hi,
    I'm a french developer and I have a question.
    I didnt find any Dynamci link between Photoshop and Flash Catalyst.
    Let me explain :
    I have a photoshop file (.psd) and I import it into Flash Catalyst.
    But I have some modification to do on my design file (psd) but the design does not update himself in Flash Catalyst .
    Do you plane to add the possibility ?
    Thanks a lot !
    Clement
    http://www.dator.fr

    Given that you named the class TextDynamicLayout, it implies you are trying to handle wordwrapping text.  That requires handing down the VBox's explicitWidth to the Text controls before they get measured.  Wordwrapping text can be any size so it needs to have its width fixed in order to determine its height.
    The List classes do not support percentages on the renderers.  All renderers are effectively given a size based on the List's size (or DG Column size).  You can see how explicitWidth is handled in the default renderer by looking at the source for ListItemRenderer.as.
    Note that VBox or any container makes for heavy and slow rendering.  That's why the default Flex renderers extend UIComponent and have custom measure() and updateDisplayList() methods.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Download Assistant in not listing Flash Catalyst CS5.5

    So how do I download it ?

    Flash Catalyst was discontinued last week.  You can find addditional details at http://www.adobe.com/products/flashcatalyst.html.

  • FAQ: SWF's and loading external files in Flash Catalyst

    How do I make the images in my Flash Catalyst project external to the published SWF?
    You can choose whether images are embedded in your Flash Catalyst SWF, or loaded dynamically; this can help to keep your SWF's small. Simply right-click an image and chose "Externalize Image".
    Answered by: Adam Cath.
    See entire discussion.
    How do I make the SWF I imported to Flash Catalyst load external files?
    When importing a SWF, Flash Catalyst only pulls the SWF asset into your project. Many SWF's, such as slideshows and media players, rely on external data files, such as configuration files or media assets. If you would like to use such a SWF in Catalyst, then you will have to place these external resources into your Catalyst project as well as importing the SWF.
    Let's assume you have a SWF source folder that contains your SWF file and all of the external files it needs. You can open the SWF file from this folder and it works fine. But, if you import the SWF into Catalyst, the Catalyst project doesn't display it correctly because it can't load the external files. Here's what you do:
    1. Open your swf source folder, and copy all of the files/folders there except the SWF you imported.
    2. In Catalyst, Run/Preview your project (Ctl/Cmd-Enter)
    2. Note the file path to Main.html in your browser
    3. In your OS, open the folder that contains /bin-debug/Main.html from above
    4. Open the "src" folder
    5. Paste all of the files from step 1 into the src folder.
    6. Catalyst won't pick up that your project changed, so tweak it a bit (add a Rectangle), and save it.
    7. Run your project. If it doesn't work, try closing and reopening your project and running again.
    For an example, check out: Using an XML-driven SWF in Catalyst to create a slideshow.
    See entire discussion.
    Answered by: Bear Travis

    You can make you swf a custom component with 2 states.
    The first state will be empty and rename it "OFF" the second state will have your swf file and name it ON.
    Then go back to your artboard/project, add your 2 buttons ON & OFF.
    For the ON button add interaction "play transition to custom component ON"
    For the OFF button add interaction "play transition to custom component OFF"
    Here is an example swf_control

  • How to send submited information on the form created in flash catalyst to an email??

    Hi,
    i have created a contact form in flash catalyst including submit button and i need this information to be emailed, when people press the submit button.
    does anyone here have the idea what should i do and what is the easiest way????
    please help me on this...

    Hi Faryar,
    Emailing a form requires some special setup on your web server. The actual sending of the email is done on the server-side. The SWF you create in Catalyst sends a request to your server, which then sends the email. Unfortunately, you have to be prepared to learn some server-side coding to get this to work.
    Here are some resources to help you get started:
    - A tutorial on making web forms: http://www.javascript-coder.com/html-form/how-to-make-a-form.phtml . Note that you'll be doing the actual form UI in Catalyst, instead of HTML (so you can skip those parts).
    - Using the Flex Form control to sending email using PHP on the server: http://cookbooks.adobe.com/post_Submitting_a_Flex_form_using_PHP-8523.html . Note that you're not using the Form control, but this demonstrates how to write the PHP code.
    - A good discussion of this topic. http://www.actionscript.org/forums/showthread.php3?t=181049
    - One cheesy way of doing this without a server is to create a mailto link with the email body pulled from the form. When the user clicks the link, his email client will open up with the email pre-written, but he will still have to send it. I don't really recommend this method as many users don't have mailto configured on their machines. If you do want to do it, you just need to construct a mailto link dynamically from the form contents. Add a "Go to URL" interaction in Catalyst, import the project to builder, and then change the URL to something like this:
    "mailto:[email protected]?subject=Form Submission&body=" + firstNameTextInput.text + ", " + lastNameTextInput.text".
    -Adam

  • Using Flash Catalyst to create a portfolio gallery... Problems

    I'm using Fc to create a portfolio site, yet have been struggling with creating a gallery that shows the way I want it to. I've tried to streamline the process using states and substates, as several people have suggested to others, yet I'm having a difficult time figuring out exactly how to transition to these states without having the content from another state show, or really finding the best method to achieve the desired result. Given that I'm pretty new to Catalyst, a detailed solution would be very appreciated!
    edit... Also, I do not wish to use a data list, because I don't want even rows and columns for each set of photos.
    Message was edited by: Chip Davis

    Here is a tutorial that I wrote on extending Flash Catalyst to use keyboard navigation:
    http://chrisgriffith.wordpress.com/2011/11/13/adding-keyboard-navigation-to-a-flash-cataly st-project/
    Chris

  • Few questions about Flash Catalyst

    In my organisation, we are looking at tools such as Flash Catalyst.
    After experiencing a bit with the tool, I have the following questions:
    - When you switch from the Design to Code view, the mxml is not editable. Is this done on purpose? To make it editable, you have to use the Open With in the Explorator View.
    - The WireFrame Component view seems limited regarding the number of components available. Don't you think that basic componants such as Grids, Panels should be included.
    - Do you plan to have a feature such as "Export as a Word document" to export the contents of the screens prototyping.
    Finally, do you have a roadmap available for the tool with list of features and dates of release.
    Regards,
    Jean-Michel

    Hi Jean-Michel,
    Re Code view...
    Since Flash Catalyst is a designer-oriented tool, it does not currently support editing code.  You can import a Flash Catalyst FXP file into Flash Builder when you're ready to begin adding richer business logic and server connectivity to your app.
    Re the Components panel...
    Check out View > Grid & Guide Settings for a way to align layouts on various grids today.
    While there's no generic "Panel" control, you can easily create artwork that represents a border around any bunch of content.  To create a reusable border, akin to a custom-skinned reusable panel control, make the border into a custom component and then place copies of it beneath your different groups of artwork.
    Re export to Word...
    We don't have immediate plans for this functionality, but we're definitely aware there's a lot of interest around being able to output mockups and wireframes in printed form.  Currently, you can print out individual screens of your Catalyst mockup by running it, right-clicking, and choosing Print.
    Re roadmap...
    Catalyst 1.0 will be released within the first half of next year.  We don't have a full feature list that we can share yet, but look for at least one more beta this year that will preview some of the additional features.
    - Peter

  • Can't install Flash Catalyst in OS 10.6.2

    I downloaded the beta version this morning. The installation process seems to have gone without a hitch through the Welcome screen where you accept the ULA. But the app will not accept the serial number and will not allow me to check the radio button next to "Install this product as a trial". So I am completely stuck.
    Running it on OS 10.6.2 on a 15" Core Duo MacBook Pro with CS4 installed (if that makes a difference). Any help would be appreciated.

    This is my log.
    Fri Mar  5 11:00:54 2010 [INFO] PIM - Build Version - 1.0.101.0
    Fri Mar  5 11:00:54 2010 [INFO] PIM - Logging Level verbosity Set  to 4
    Fri Mar  5 11:00:54 2010 [INFO] PIM - Build Version - 1.0.101.0
    Fri Mar  5 11:00:54 2010 [INFO] PIM - Logging Level verbosity Set  to 4
    Fri Mar  5 11:00:54 2010 [INFO] PIM - CREATE PIM Instance ...
    Fri Mar  5 11:00:54 2010 [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    Fri Mar  5 11:00:54 2010 [INFO] PIM - SUCCESS Created Tables.
    Fri Mar  5 11:00:54 2010 [INFO] PIM - PIM Database is Up To Date.
    Fri Mar  5 11:00:54 2010 [INFO] PIM - Updater Inventory location:/Volumes/Adobe Flash Catalyst/Install.app/Contents/Frameworks/UpdaterInventory.framework/UpdaterInventory
    Fri Mar  5 11:00:55 2010 [INFO] PIM - pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 114981081
    Fri Mar  5 11:00:55 2010 [INFO] PIM - freeDiskSpace ... 11008180224
    Fri Mar  5 11:00:55 2010 [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Catalyst/packages/core/PDApp.pimx
    Fri Mar  5 11:00:55 2010 [INFO] PIM - SUCCESS insertPackageUpdateList.
    Fri Mar  5 11:00:55 2010 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    Fri Mar  5 11:00:59 2010 [INFO] PIM - SUCCESS installPackage at file /Volumes/Adobe Flash Catalyst/packages/core/PDApp.pimx.
    Fri Mar  5 11:00:59 2010 [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Catalyst/packages/UWA/UWA.pimx
    Fri Mar  5 11:00:59 2010 [INFO] PIM - SUCCESS insertPackageUpdateList.
    Fri Mar  5 11:00:59 2010 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    Fri Mar  5 11:01:04 2010 [INFO] PIM - SUCCESS installPackage at file /Volumes/Adobe Flash Catalyst/packages/UWA/UWA.pimx.
    Fri Mar  5 11:01:04 2010 [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Catalyst/packages/DWA/DWA.pimx
    Fri Mar  5 11:01:04 2010 [INFO] PIM - SUCCESS insertPackageUpdateList.
    Fri Mar  5 11:01:04 2010 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    Fri Mar  5 11:01:09 2010 [INFO] PIM - SUCCESS installPackage at file /Volumes/Adobe Flash Catalyst/packages/DWA/DWA.pimx.
    Fri Mar  5 11:01:09 2010 [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Catalyst/packages/LWA/LWA.pimx
    Fri Mar  5 11:01:09 2010 [INFO] PIM - SUCCESS insertPackageUpdateList.
    Fri Mar  5 11:01:09 2010 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    Fri Mar  5 11:01:13 2010 [INFO] PIM - SUCCESS installPackage at file /Volumes/Adobe Flash Catalyst/packages/LWA/LWA.pimx.
    Fri Mar  5 11:01:13 2010 [INFO] PIM - START installPackage at file /Volumes/Adobe Flash Catalyst/packages/PWA/PWA.pimx
    Fri Mar  5 11:01:13 2010 [INFO] PIM - SUCCESS insertPackageUpdateList.
    Fri Mar  5 11:01:13 2010 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    Fri Mar  5 11:01:18 2010 [INFO] PIM - SUCCESS installPackage at file /Volumes/Adobe Flash Catalyst/packages/PWA/PWA.pimx.
    Fri Mar  5 11:01:19 2010 [INFO] PIM - Build Version - 1.0.101.0
    Fri Mar  5 11:01:19 2010 [INFO] PIM - Logging Level verbosity Set  to 4
    Fri Mar  5 11:01:19 2010 [INFO] PIM - Acquired System level ACF lock ...
    Fri Mar  5 11:01:19 2010 [INFO] PIM - Build Version - 1.0.101.0
    Fri Mar  5 11:01:19 2010 [INFO] PIM - Logging Level verbosity Set  to 4
    Fri Mar  5 11:01:19 2010 [INFO] PIM - CREATE PIM Instance ...
    Fri Mar  5 11:01:19 2010 [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    Fri Mar  5 11:01:19 2010 [INFO] PIM - SUCCESS Created Tables.
    Fri Mar  5 11:01:19 2010 [INFO] PIM - PIM Database is Up To Date.
    Fri Mar  5 11:01:19 2010 [INFO] PIM - Updater Inventory location:/Volumes/Adobe Flash Catalyst/Install.app/Contents/Frameworks/UpdaterInventory.framework/UpdaterInventory
    Fri Mar  5 11:01:19 2010 [INFO] PIM - pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 114981081
    Fri Mar  5 11:01:19 2010 [INFO] PIM - freeDiskSpace ... 10901671936
    Fri Mar  5 11:01:19 2010 [INFO] PIM - FREE PIM Instance ...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp - Build Version - 1.0.101.0
    Fri Mar  5 11:01:20 2010 [INFO] PDApp - Logging Level verbosity Set  to 4
    Fri Mar  5 11:01:20 2010 [INFO] PDApp - Application initialization start, Looking for command line arguments
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.CommandLineParser - Parsing the command line provided. Number of command line arguments is 5
    Fri Mar  5 11:01:20 2010 [INFO] PDApp - DWA_UI argument on command line. Launching a different instance
    Fri Mar  5 11:01:20 2010 [INFO] PDApp - NO deployment workflow is running ...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.WindowManager - Initializing native WindowManager
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.MessageQuequeManager - Message Queue Manager initialized...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AsyncMsgProcessor - AsyncMsgProcessor initialized...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AsyncMsgProcessor - AsyncMsgProcessor Message Queue initialized...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.ExternalGateway - ExternalGateway initialized...
    Fri Mar  5 11:01:20 2010 [INFO] PIM - Build Version - 1.0.101.0
    Fri Mar  5 11:01:20 2010 [INFO] PIM - Logging Level verbosity Set  to 4
    Fri Mar  5 11:01:20 2010 [INFO] PIM - CREATE PIM Instance ...
    Fri Mar  5 11:01:20 2010 [INFO] PIM - trying to createOrUpdatePIMDbSchema.
    Fri Mar  5 11:01:20 2010 [INFO] PIM - Current db schema version on machine 1.
    Fri Mar  5 11:01:20 2010 [INFO] PIM - Current db schema version to install 1.
    Fri Mar  5 11:01:20 2010 [INFO] PIM - PIM DB Schema is up to date. Current schema version is 1.
    Fri Mar  5 11:01:20 2010 [INFO] PIM - PIM Database is Up To Date.
    Fri Mar  5 11:01:20 2010 [INFO] PIM - FREE PIM Instance ...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AppletManager - AppletManager initialize...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.ExternalGateway - NativeCommandHandler initialized...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.ExternalGateway - NativePlatformHandler initialized...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp - Detecting Applet Database file...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp - Fetching Applet registeration information...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AppletManager - Applet database path - /Users/mihkel/Applications/Adobe/OOBE/PDApp/
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AppletManager - PIM library path - /Users/mihkel/Applications/Adobe/OOBE/PDApp/core/AdobePIM.dylib
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AppletManager - Loading PIM library...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AppletManager - Fetching PIM API's...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AppletManager - Getting applet data from Applet database
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.AppletManager - Registering Applets...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.WindowManager - Creating APEWindow...
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.WindowManager - Creating window instance
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.WindowManager - Checking for appletID and appletVersion given in CommandLineOptions
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.WindowManager - Creating APE stage instance
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.WindowManager - Loading main SWF with Path and args - /Users/mihkel/Applications/Adobe/OOBE/PDApp/PDAppFlex.swf
    Fri Mar  5 11:01:20 2010 [INFO] PDApp.WindowManager - Assigning window ID - 1 to created window
    Fri Mar  5 11:01:21 2010 [INFO] PDApp.ExternalGateway - MessageHandler initialized...
    3/5/2010 11:01:21.292 [INFO] PDApp.StartupCommand Logging Level verbosity Set to  INFO
    3/5/2010 11:01:21.294 [INFO] PDApp.StartupCommand Processing the startup Command
    3/5/2010 11:01:21.299 [INFO] PDAPP.AppletManager Starting Applet registeration...
    3/5/2010 11:01:21.309 [INFO] PDAPP.MainDisplayMediator Looking up for the Exact versioned applet for ID :DWA_UI
    3/5/2010 11:01:21.317 [INFO] PDAPP.AppletManager Loading Applet: DWA_UI Version = 1.0
    3/5/2010 11:01:21.335 [INFO] PDApp.ZStringLoader PDAPP SWF - locale set to - en_US
    3/5/2010 11:01:21.996 [INFO] PDApp.ExternalGateway Recieved Applet Loading Completion
    3/5/2010 11:01:21.999 [INFO] DWA.ZStringLoader Trying to load ZString for preferred locale - en_US
    3/5/2010 11:01:22.023 [INFO] DWA.ZStringLoader Locale set to - en_US
    3/5/2010 11:01:22.362 [INFO] DWA.Startup Processing the startup command
    3/5/2010 11:01:22.378 [INFO] DWA.FetchMediaInformationCommand Started fetching the payloads data
    Fri Mar  5 11:01:22 2010 [INFO] PDApp.AppletManager - Loading Applet - DWA_Native for WindowID - 1
    3/5/2010 11:01:22.560 [INFO] DWA.FetchMediaInformationCommand Media Signature found as {9F1FA0D8-2154-4F89-9D06-FD47CB469AE6}
    3/5/2010 11:01:22.562 [INFO] DWA.FetchMediaInformationCommand Checking whether the media has been run on this system
    3/5/2010 11:01:22.591 [INFO] DWA.FetchMediaInformationCommand Setting System statistics data...
    3/5/2010 11:01:22.594 [INFO] DWA.DirectoryTokens Extracting tokens for mac
    3/5/2010 11:01:22.596 [INFO] DWA.DirectoryTokens Adding a token with name [AdobeProgramFiles] and value /Applications
    3/5/2010 11:01:22.597 [INFO] DWA.DirectoryTokens Adding a token with name [AdobeCommon] and value /Library/Application Support/Adobe
    3/5/2010 11:01:22.598 [INFO] DWA.DirectoryTokens Adding a token with name [Common] and value /Library/Application Support
    3/5/2010 11:01:22.599 [INFO] DWA.DirectoryTokens Adding a token with name [ProgramFiles] and value /Applications
    3/5/2010 11:01:22.600 [INFO] DWA.DirectoryTokens Adding a token with name [SharedApplicationData] and value /Library/Application Support
    3/5/2010 11:01:22.601 [INFO] DWA.DirectoryTokens Adding a token with name [SharedDocuments] and value /Users/Shared
    3/5/2010 11:01:22.605 [INFO] DWA.DirectoryTokens Adding a token with name [Utilities] and value /Applications/Utilities
    3/5/2010 11:01:22.606 [INFO] DWA.DirectoryTokens Adding a token with name [FontsFolder] and value /Library/Fonts
    3/5/2010 11:01:22.608 [INFO] DWA.DirectoryTokens Adding a token with name [Library] and value /Library
    3/5/2010 11:01:22.609 [INFO] DWA.DirectoryTokens Adding a token with name [LibraryPreferences] and value /Library/Preferences
    3/5/2010 11:01:22.610 [INFO] DWA.DirectoryTokens Adding a token with name [ScriptingAdditions] and value /Library/ScriptingAdditions
    3/5/2010 11:01:22.611 [INFO] DWA.DirectoryTokens Adding a token with name [UserPreferences] and value /Users/mihkel/Library/Preferences
    3/5/2010 11:01:22.612 [INFO] DWA.DirectoryTokens Adding a token with name [UserCommon] and value /Users/mihkel/Library/Application Support
    3/5/2010 11:01:22.794 [INFO] DWA.FetchMediaInformationCommand ******************************** Payload Adobe Code and Display Name Map Start **************************************
    3/5/2010 11:01:22.795 [INFO] DWA.FetchMediaInformationCommand {296DF712-F93D-4144-974F-873CA36D5AF0} Adobe Type Support CS5
    3/5/2010 11:01:22.796 [INFO] DWA.FetchMediaInformationCommand {415F9103-4C39-49F1-84A8-015F93D05044} Adobe Flash Player 10
    3/5/2010 11:01:22.797 [INFO] DWA.FetchMediaInformationCommand {49CF0444-BB79-41A1-8BCA-CD23284B0C3B} Adobe Media Encoder CS5
    3/5/2010 11:01:22.797 [INFO] DWA.FetchMediaInformationCommand {4FB2237E-A212-4D86-B7B2-D036473A1B06} AdobeHelp
    3/5/2010 11:01:22.798 [INFO] DWA.FetchMediaInformationCommand {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1
    3/5/2010 11:01:22.799 [INFO] DWA.FetchMediaInformationCommand {7FA065C5-B6CF-4844-91CF-60D0E1E4B197} Adobe CMaps CS5
    3/5/2010 11:01:22.800 [INFO] DWA.FetchMediaInformationCommand {91BC0960-C329-44D6-983C-C374ED8420C6} Adobe Dynamiclink Support
    3/5/2010 11:01:22.801 [INFO] DWA.FetchMediaInformationCommand {9F1FA0D8-2154-4F89-9D06-FD47CB469AE6} Adobe Flash Catalyst
    3/5/2010 11:01:22.802 [INFO] DWA.FetchMediaInformationCommand ******************************** Payload Adobe Code and Display Name Map End **************************************
    3/5/2010 11:01:22.803 [INFO] DWA.FetchMediaInformationCommand Found the driver payload by name Adobe Flash Catalyst
    Fri Mar  5 11:01:22 2010 [INFO] PDApp.AppletManager - Loading Applet - LWA_Native for WindowID - 1
    3/5/2010 11:01:22.845 [INFO] DWA.FetchMediaInformationCommand Fetching Sif for Media Signature {9F1FA0D8-2154-4F89-9D06-FD47CB469AE6}
    3/5/2010 11:01:22.855 [INFO] DWA.FetchMediaInformationCommand Sif file path is /tmp/8E4D7B73-029F-47DB-B3D8-44EAF8B11028/2ABCA1CE-73DA-483A-989D-9960D93F039B
    3/5/2010 11:01:22.857 [INFO] DWA.FetchMediaInformationCommand Fetching aul file for Media Signature {9F1FA0D8-2154-4F89-9D06-FD47CB469AE6}
    3/5/2010 11:01:22.866 [INFO] DWA.FetchMediaInformationCommand AUL file path is /tmp/8E4D7B73-029F-47DB-B3D8-44EAF8B11028
    3/5/2010 11:01:22.977 [WARN] DWA.FetchMediaInformationCommand language list<?xml version="1.0" encoding="UTF-8"?>
    <result>
        <eula_language_list><eula_language>de_DE</eula_language>
            <eula_language>en_US</eula_language>
            <eula_language>fr_FR</eula_language>
            <eula_language>ja_JP</eula_language>
            <eula_language>ko_KR</eula_language>
            <eula_language>zh_CN</eula_language>
        </eula_language_list>
    </result>
    3/5/2010 11:01:22.980 [INFO] DWA.FetchEula Fetching eula for locale en_US
    3/5/2010 11:01:23.059 [INFO] DWA.FetchMediaInformationCommand Fetching the setup manifest from media
    3/5/2010 11:01:23.070 [INFO] DWA.FetchMediaInformationCommand Fetching Installer Background for media signature{9F1FA0D8-2154-4F89-9D06-FD47CB469AE6}
    3/5/2010 11:01:23.081 [INFO] DWA.Utils Checking network connection
    3/5/2010 11:01:23.082 [INFO] DWA.ApplyPayloadPolicies Starting the payload mappings
    3/5/2010 11:01:23.083 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadAdobeTypeSupport CS5
    3/5/2010 11:01:23.086 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for AdobeTypeSupport CS5
    3/5/2010 11:01:23.092 [INFO] DWA.SystemRequirement SystemRequirements is not mentioned for payload - {296DF712-F93D-4144-974F-873CA36D5AF0}
    3/5/2010 11:01:23.093 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadFlash Player
    3/5/2010 11:01:23.094 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for Flash Player
    3/5/2010 11:01:23.094 [INFO] DWA.SystemRequirement SystemRequirements is not mentioned for payload - {415F9103-4C39-49F1-84A8-015F93D05044}
    3/5/2010 11:01:23.095 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadAdobe Media Encoder CS5
    3/5/2010 11:01:23.097 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for Adobe Media Encoder CS5
    3/5/2010 11:01:23.097 [INFO] DWA.SystemRequirement Performing SystemRequirements for payload - {49CF0444-BB79-41A1-8BCA-CD23284B0C3B}
    3/5/2010 11:01:23.101 [INFO] DWA.SystemRequirement SystemRequirements check done for payload - {49CF0444-BB79-41A1-8BCA-CD23284B0C3B}
    3/5/2010 11:01:23.101 [INFO] DWA.SystemRequirement SystemRequirements check PASSED for payload - {49CF0444-BB79-41A1-8BCA-CD23284B0C3B}
    3/5/2010 11:01:23.102 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadAdobeHelp
    3/5/2010 11:01:23.103 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for AdobeHelp
    3/5/2010 11:01:23.103 [INFO] DWA.SystemRequirement SystemRequirements is not mentioned for payload - {4FB2237E-A212-4D86-B7B2-D036473A1B06}
    3/5/2010 11:01:23.104 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadAdobe Flash Fonts1
    3/5/2010 11:01:23.105 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for Adobe Flash Fonts1
    3/5/2010 11:01:23.106 [INFO] DWA.SystemRequirement SystemRequirements is not mentioned for payload - {7745F18B-FD8A-4011-BE16-588900C503D0}
    3/5/2010 11:01:23.107 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadAdobeCMaps CS5
    3/5/2010 11:01:23.107 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for AdobeCMaps CS5
    3/5/2010 11:01:23.108 [INFO] DWA.SystemRequirement SystemRequirements is not mentioned for payload - {7FA065C5-B6CF-4844-91CF-60D0E1E4B197}
    3/5/2010 11:01:23.109 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadDynamiclinkSupport
    3/5/2010 11:01:23.109 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for DynamiclinkSupport
    3/5/2010 11:01:23.110 [INFO] DWA.SystemRequirement SystemRequirements is not mentioned for payload - {91BC0960-C329-44D6-983C-C374ED8420C6}
    3/5/2010 11:01:23.112 [INFO] DWA.ApplyPayloadPolicies Mapping for payloadAdobe Flash Catalyst
    3/5/2010 11:01:23.116 [INFO] DWA.ApplyPayloadPolicies Checking system requirements for Adobe Flash Catalyst
    3/5/2010 11:01:23.117 [INFO] DWA.SystemRequirement Performing SystemRequirements for payload - {9F1FA0D8-2154-4F89-9D06-FD47CB469AE6}
    3/5/2010 11:01:23.119 [INFO] DWA.SystemRequirement SystemRequirements check done for payload - {9F1FA0D8-2154-4F89-9D06-FD47CB469AE6}
    3/5/2010 11:01:23.120 [INFO] DWA.SystemRequirement SystemRequirements check PASSED for payload - {9F1FA0D8-2154-4F89-9D06-FD47CB469AE6}
    3/5/2010 11:01:23.121 [INFO] DWA.ApplyPayloadPolicies Fetching the status of the leids
    3/5/2010 11:01:23.381 [INFO] DWA.Utils PWA closesession returned <result><session>23DE53B1-1DD2-41B0-9D67-B6FCD1E5CF4D</session></result>
    3/5/2010 11:01:23.382 [INFO] DWA.ApplyPayloadPolicies Doing marking of PP and STIs
    3/5/2010 11:01:23.384 [INFO] DWA.ApplyPayloadPolicies Setting up the language list
    3/5/2010 11:01:23.385 [INFO] DWA.CSInstaller Setup manifest has the language mentioned en_US
    3/5/2010 11:01:23.386 [INFO] DWA.CSInstaller Adding en_US to the final language list
    3/5/2010 11:01:23.387 [INFO] DWA.Payload ADOBE ID would be skipped as requested in UI Customization
    3/5/2010 11:01:23.388 [INFO] DWA.Payload ADOBE ID would be skipped as requested in UI Customization
    3/5/2010 11:01:23.389 [INFO] DWA.Payload ADOBE ID would be skipped as requested in UI Customization
    3/5/2010 11:01:23.390 [INFO] DWA.ApplyPayloadPolicies Performing special checks for the Driver payload
    3/5/2010 11:01:23.391 [INFO] DWA.ApplyPayloadPolicies Going to start the workflow
    3/5/2010 11:01:23.392 [INFO] DWA.StartWorkflow Starting the workflow
    3/5/2010 11:01:23.393 [INFO] DWA.StartWorkflow Appmanager size is 114980864 bytes after conversion
    3/5/2010 11:01:23.436 [WARN] DWA.Fetchserialnumber Fetch serial numbers returned nothing
    3/5/2010 11:01:23.443 [INFO] DWA.Utils PWA closesession returned <result><session>50542748-B3BE-4B2D-8FAD-9D1886C2712D</session></result>
    3/5/2010 11:01:23.448 [INFO] DWA.ProductOptionsMediator Notification Recieved For showing the payloads
    3/5/2010 11:01:23.449 [INFO] DWA.ProductOptionsMediator Filtering the top level payloads
    3/5/2010 11:01:23.451 [INFO] DWA.ProductOptionsMediator Payload AdobeTypeSupport CS5 is STI
    3/5/2010 11:01:23.451 [INFO] DWA.ProductOptionsMediator Payload Flash Player is STI
    3/5/2010 11:01:23.452 [INFO] DWA.ProductOptionsMediator Payload Adobe Media Encoder CS5 is STI
    3/5/2010 11:01:23.453 [INFO] DWA.ProductOptionsMediator Payload AdobeHelp is STI
    3/5/2010 11:01:23.454 [INFO] DWA.ProductOptionsMediator Payload Adobe Flash Fonts1 is STI
    3/5/2010 11:01:23.455 [INFO] DWA.ProductOptionsMediator Payload AdobeCMaps CS5 is STI
    3/5/2010 11:01:23.455 [INFO] DWA.ProductOptionsMediator Payload DynamiclinkSupport is STI
    3/5/2010 11:01:23.456 [INFO] DWA.ProductOptionsMediator Payload Adobe Flash Catalyst is PointProduct
    3/5/2010 11:01:23.457 [INFO] DWA.ProductOptionsMediator Adding Adobe Flash Catalyst to top level list
    3/5/2010 11:01:23.458 [INFO] DWA.ProductOptionsMediator Payload Adobe Flash Catalyst is the first one. Adding directly to top level list
    3/5/2010 11:01:23.459 [INFO] DWA.ProductOptionsMediator Filtering of the top level payloads done
    3/5/2010 11:01:23.460 [INFO] DWA.StartWorkflow Setting the window to center
    3/5/2010 11:01:23.461 [INFO] DWA.StartWorkflow Workflow started
    3/5/2010 11:01:24.372 [INFO] DWA.Utils Launch Successful
    3/5/2010 11:01:24.378 [INFO] DWA.Utils Approximate total time taken in startup is 2795 milliseconds
    3/5/2010 11:01:24.385 [INFO] PDAPP.MessageQueueManager Processing Message Ended
    3/5/2010 11:01:24.911 [INFO] PDAPP.MessageQueueManager Processing Message Ended
    3/5/2010 11:02:12.202 [INFO] DWA.SerialNumberMediator Notification Recieved for Setting the languages
    3/5/2010 11:02:12.204 [INFO] DWA.ProductOptionsMediator Notification Recieved for language change
    3/5/2010 11:02:12.205 [INFO] DWA.ProductOptionsMediator Language changed to en_US
    3/5/2010 11:02:12.211 [INFO] DWA.ProductOptionsMediator Setting the default status of payloads
    3/5/2010 11:02:12.218 [INFO] DWA.ProductOptionsMediator Filtering the display payloads for language en_US
    3/5/2010 11:02:12.219 [INFO] DWA.ProductOptionsMediator Filtering the display payloads completed
    3/5/2010 11:02:12.228 [INFO] DWA.SerialNumberMediator Notification Recieved for Setting the languages
    3/5/2010 11:02:12.230 [INFO] DWA.ProductOptionsMediator Notification Recieved for language change
    3/5/2010 11:02:12.231 [INFO] DWA.ProductOptionsMediator Language changed to en_US
    3/5/2010 11:02:12.233 [INFO] DWA.ProductOptionsMediator Setting the default status of payloads
    3/5/2010 11:02:12.236 [INFO] DWA.ProductOptionsMediator Filtering the display payloads for language en_US
    Fri Mar  5 11:01:22 2010 [INFO] DWANative - Build Version - 1.0.101.0
    Fri Mar  5 11:01:22 2010 [INFO] DWANative - Logging Level verbosity Set  to 4
    Fri Mar  5 11:01:22 2010 [FATAL] DWANative - pdbOpenSession kCapsErrNotFound ...
    Fri Mar  5 11:02:13 2010 [INFO] DWANative - freeDiskSpace ... 10899636224
    Fri Mar  5 11:02:16 2010 [INFO] DWANative -  IPC Listen thread STARTED...
    Fri Mar  5 11:02:16 2010 [INFO] Native-Utils - Launch Process With Task
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Received a progress packet from deployment
    Fri Mar  5 11:02:21 2010 [INFO] DWANative -  KID_PROGRESS_AUTHORIZATION_SUCCESSFUL <<>> ignored progressType
    Fri Mar  5 11:02:21 2010 [INFO] DWANative -  KID_PROGRESS_AUTHORIZATION_SUCCESSFUL <<>> <?xml version="1.0" encoding="UTF-8"?>
    <result>
        <authentication_status>1</authentication_status>
    </result>
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Received a progress packet from deployment
    Fri Mar  5 11:02:21 2010 [INFO] DWANative -  KID_PROGRESS_AUTHORIZATION_SUCCESSFUL <<>> ignored progressType
    3/5/2010 11:02:12.237 [INFO] DWA.ProductOptionsMediator Filtering the display payloads completed
    3/5/2010 11:02:16.576 [INFO] DWA.ProductOptionsMediator Sending the install start command
    3/5/2010 11:02:16.659 [INFO] DWA.ProductOptionsMediator <success/>
    3/5/2010 11:02:21.297 [INFO] DWA.Utils Close MediadbSession Returned <?xml version="1.0" encoding="UTF-8"?>
    <result>
        <success>Closed Mdb Session Sucessfully</success>
    </result>
    3/5/2010 11:02:21.300 [INFO] PDAPP.MessageQueueManager Processing Message Ended
    3/5/2010 11:02:21.306 [INFO] DWA.Utils Close MediadbSession Returned <?xml version="1.0" encoding="UTF-8"?>
    <result>
        <success>Mdb Session is already closed</success>
    </result>
    3/5/2010 11:02:21.307 [INFO] PDAPP.MessageQueueManager Processing Message Ended
    3/5/2010 11:02:21.944 [INFO] DWA.Utils PWA closesession returned <result><session>F5DC1D45-0389-4016-BA00-4E06B9C3D359</session></result>
    3/5/2010 11:02:22.027 [INFO] DWA.Utils PWA closesession returned <result><session>6CD29065-1810-4B1C-9EB4-3F0A8C6F36FA</session></result>
    Fri Mar  5 11:01:22 2010 [INFO] LWANative - Build Version - 1.0.101.0
    Fri Mar  5 11:01:22 2010 [INFO] LWANative - Logging Level verbosity Set  to 4
    Fri Mar  5 11:01:22 2010 [WARN] LWANative - Error in mdbOpenSessionNoCreate 8
    Fri Mar  5 11:02:21 2010 [INFO] DWANative -  KID_PROGRESS_AUTHORIZATION_SUCCESSFUL <<>> <?xml version="1.0" encoding="UTF-8"?>
    <result>
        <authentication_status>1</authentication_status>
    </result>
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Received Invalid packet
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Received Invalid packet
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Received Invalid packet
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Received Invalid packet
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Received Maximum invalid packets ,Quit...
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - Message created :<?xml version="1.0" encoding="UTF-8"?>
    <exit>
        <exit_code>-1</exit_code>
    </exit>
    Fri Mar  5 11:02:21 2010 [INFO] DWANative - END DEListenThread
    3/5/2010 11:02:22.034 [INFO] PDAPP.MessageQueueManager Processing Message Ended
    Fri Mar  5 11:02:23 2010 [INFO] PDApp.AppletManager - Un-loading Applet - LWA_Native for window ID - 1
    Fri Mar  5 11:02:23 2010 [INFO] PDApp.ExternalGateway - Callng the finalize function of the applet ID - LWA_Native
    Fri Mar  5 11:02:23 2010 [INFO] PDApp.AppletManager - Un-loading Applet - DWA_Native for window ID - 1
    Fri Mar  5 11:02:23 2010 [INFO] PDApp.ExternalGateway - Callng the finalize function of the applet ID - DWA_Native
    3/5/2010 11:02:23.775 [INFO] PDApp.HostMessageHandler Recieved force window close message
    3/5/2010 11:02:23.776 [INFO] PDApp.HostMessageHandler Sending message to native
    Fri Mar  5 11:02:23 2010 [INFO] PDApp.WindowManager - Destroying window with ID - 1
    Fri Mar  5 11:02:23 2010 [INFO] PDApp - Last window destroyed quiting as event. Quiting application as an event (async)...
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.WindowManager - Destroying PDApp main window with ID - 1
    Fri Mar  5 11:02:24 2010 [WARN] PDApp.WindowManager - DestroyAllAPEWindow failed, APE Window count is zero while destroying all APEWindow's
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Terminating MessageQueueManager
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.AsyncMsgProcessor - Terminating AsyncMsgProcessor Message Queue
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.AsyncMsgProcessor - Terminating AsyncMsgProcessor
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.MessageQuequeManager - Message Queue Manager destructed
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Terminating AppletManager
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.AppletManager - AppletManager destructed
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Terminating WindowManager
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Terminating NativeCommandHandler
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.ExternalGateway - NativeCommandHandler destructed
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Terminating NativePlatformHandler
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.ExternalGateway - NativePlatformHandler destructed
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Terminating ExternalGateway
    Fri Mar  5 11:02:24 2010 [INFO] PDApp.ExternalGateway - ExternalGateway destructed
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Terminating APE
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Releasing all locks acquired
    Fri Mar  5 11:02:24 2010 [INFO] PDApp - Quiting Application

  • Exporting file for Flash Catalyst use?

    Hey everyone.  I've made a video in Flash Pro, and I want to be able to play it in Flash Catalyst.  I'm using 5.5 of both versions, btw.  I export the Flash Pro video to a .mov file and then use Media Encoder to make that a .flv file.  I bring that file into FC and publish to web.  However, when I put those 'deploy to web' files on my website, the video doesn't play.  Everything else works except for the video.  So I put a generic, short .flv file that I downloaded from the internet into my FC file.  I published it to my website again, and everything worked fine.  The video played.  So obviously the problem with my video must be in the encoding process.
    How should I do this?  I read one article online that said when I export a .mov file for FC, I should make sure that I don't have 'Fast - Compressed Header' selected in the Streaming options.  Well, I checked and I don't.  It's just under regular 'Fast'.  So what am I doing wrong here?  I've even tried converting my .mov file to a f4v file, and that doesn't work.  Help here would be so greatly appreciated.

    Ah.  I think they just tested the .html file.  Though, they were trying nearly everything yesterday, so they might have tried the swf file, too.  I'll ask him this afternoon.  There's a webpage included in both deploy-to-web and run-local folders.  Both are entitled main.html.  I'm looking at both codes in Dreamweaver to see what would be different, how the code is calling to the flv video, and I can't see any change!  I switch from one code view to the other, and nothing is different.  The only difference is that in the video size area, the html file from the run-local folder is bigger.  So obviously something more was put into the run-local html file, but what I don't know.  I can't figure that out from the code.  Here's the code from the run-local file, though it looks the same in the deploy-to-web html file, too.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
        <!--
        Smart developers always View Source.
        This application was built using Adobe Flex, an open source framework
        for building rich Internet applications that get delivered via the
        Flash Player or to desktops via Adobe AIR.
        Learn more about Flex at http://flex.org
        // -->
        <head>
            <title></title>
            <meta name="google" value="notranslate" />        
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <!-- Include CSS to eliminate any default margins/padding and set the height of the html element and
                 the body element to 100%, because Firefox, or any Gecko based browser, interprets percentage as
                 the percentage of the height of its parent container, which has to be set explicitly.  Fix for
                 Firefox 3.6 focus border issues.  Initially, don't display flashContent div so it won't show
                 if JavaScript disabled.
            -->
            <style type="text/css" media="screen">
                html, body  { height:100%; }
                body { margin:0; padding:0; overflow:auto; text-align:center;
                       background-color: #ffffff; }  
                object:focus { outline:none; }
                #flashContent { display:none; }
            </style>
            <!-- Enable Browser History by replacing useBrowserHistory tokens with two hyphens -->
            <!-- BEGIN Browser History required section -->
            <link rel="stylesheet" type="text/css" href="history/history.css" />
            <script type="text/javascript" src="history/history.js"></script>
            <!-- END Browser History required section --> 
            <script type="text/javascript" src="swfobject.js"></script>
            <script type="text/javascript">
                // For version detection, set to min. required Flash Player version, or 0 (or 0.0.0), for no version detection.
                var swfVersionStr = "10.2.0";
                // To use express install, set to playerProductInstall.swf, otherwise the empty string.
                var xiSwfUrlStr = "playerProductInstall.swf";
                var flashvars = {};
                var params = {};
                params.quality = "high";
                params.bgcolor = "#ffffff";
                params.allowscriptaccess = "sameDomain";
                params.allowfullscreen = "true";
                var attributes = {};
                attributes.id = "Main";
                attributes.name = "Main";
                attributes.align = "middle";
                swfobject.embedSWF(
                    "Main.swf", "flashContent",
                    "405", "350",
                    swfVersionStr, xiSwfUrlStr,
                    flashvars, params, attributes);
                // JavaScript enabled so display the flashContent div in case it is not replaced with a swf object.
                swfobject.createCSS("#flashContent", "display:block;text-align:left;");
            </script>
        </head>
        <body>
            <!-- SWFObject's dynamic embed method replaces this alternative HTML content with Flash content when enough
                 JavaScript and Flash plug-in support is available. The div is initially hidden so that it doesn't show
                 when JavaScript is disabled.
            -->
            <div id="flashContent">
                <p>
                    To view this page ensure that Adobe Flash Player version
                    10.2.0 or greater is installed.
                </p>
                <script type="text/javascript">
                    var pageHost = ((document.location.protocol == "https:") ? "https://" : "http://");
                    document.write("<a href='http://www.adobe.com/go/getflashplayer'><img src='"
                                    + pageHost + "www.adobe.com/images/shared/download_buttons/get_flash_player.gif' alt='Get Adobe Flash player' /></a>" );
                </script>
            </div>
            <noscript>
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="405" height="350" id="Main">
                    <param name="movie" value="Main.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#ffffff" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <param name="allowFullScreen" value="true" />
                    <!--[if !IE]>-->
                    <object type="application/x-shockwave-flash" data="Main.swf" width="405" height="350">
                        <param name="quality" value="high" />
                        <param name="bgcolor" value="#ffffff" />
                        <param name="allowScriptAccess" value="sameDomain" />
                        <param name="allowFullScreen" value="true" />
                    <!--<![endif]-->
                    <!--[if gte IE 6]>-->
                        <p>
                            Either scripts and active content are not permitted to run or Adobe Flash Player version
                            10.2.0 or greater is not installed.
                        </p>
                    <!--<![endif]-->
                        <a href="http://www.adobe.com/go/getflashplayer">
                            <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" />
                        </a>
                    <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </noscript>    
       </body>
    </html>
    But I don't see anything where it calls to my bathinline.flv file.  Yet this one plays just fine.  I've played both .html files, and only the run-local html file plays fine on my computer (not viewing from website this time).  So I agree with you that I think it's a pathing issue on the deploy to web thing, but I have no idea what.  The code isn't showing any difference.
    Any more ideas.  You've been really, really helpful so far!

  • What Viewer Will Work In Flash Catalyst

    I got simpleviewer to work until I closed the project and the folders I loaded into the workspace folder were not saved.  I tried the demo of Slideshow Pro, but it gives me no idea of if it will work in Flash Catalyst or how I would install it.  Is there any kind of viewer that I can use to create a picture gallery in Flash Catalyst or do I need to build one in Flash Catalyst with a data list?

    I took a look at the tutorial PSD file and couldn't find anything wrong with it.
    When you save your project file, the only file that it should save is the ecotours_ui.fxp file. The ecotours_site.fxp file was one that was bundled in the tutorial files .zip package.
    It shouldn't be a problem that you have the CS3 versions of Photoshop and Flash. As you have said, you are not running them. The lack of RAM could possibly be an issue. Another possibility might be some permissions getting in your way. Have you checked to see if the files or folders that got unzipped will allow you to write to them?
    -Adam Altman
    Catalyst Engineering

  • My top ten requested features for Flash Catalyst Next

    Here is my top ten list of requested features for Flash Catalyst:
    10. Rearranging of pages / states in the pages / states panel (also resizing to smaller icons)
    9. Menu bar option to Insert Custom / Generic Component. There isn't a  way to create a custom component without first adding something to stage  and then converting that.
    8.  Edit component on double click in layers panel
    7. Replace existing artwork with library component - for example, when you create a button or text input then you should be able to use that skin in all of the text input instances rather than creating new ones every time you choose convert artwork to component
    6. Artboard sized to content - no hardcoded size of the project
    5. Import of Flex Components / movieclps
    4. Flex Capacitor library integration / support - supports deep  linking and navigation through your flash catalyst or flex project  without coding - all the work is done
    3. Integration and coexistence in native Flex project - no fxpl or zip - flat file structure
    2. Container support - VGroup HGroup Skinnable Container - set layout property
    1. Component Constraints support - top left bottom right horizontal center vertical center baseline width height 100%

    Additional features:
    • When opening a Illustrator file the option to choose which artboard or layers to import (rather than the whole project).
    • Set a default option so that all imported text fields from Illustrator use "Fit Height". Mainly because currently it is cutting off the descent but also bc it allows you to change the text content (globalization) and have the text fit.
    • Show intersection lines while dragging. At least vertical center and horizontal center... similar to Flex and Illustrator.
    • Add a convert to vector when selecting images.
    • In the code view the default directory "components" could be renamed to something like: design, compositions, construction, architecture, form, embodiments, chassis, constitution, frame, representation, manifestation, cast, expression, mold, etc. just not skins. design, chassis, representations, cast, expressions, compositions are my favorites. It would be nice to be able to define this folder path in preferences.
    • Use the layer name to name the library components. Otherwise there is a directory with 30 assets named "graphic[n]".
    • Command to clean out library of unused symbols.

  • Flash Catalyst won't launch

    Every time we try to open Flash Catalyst from Design Premium CS5 we get a reoccuring message As Shown above.
    We have looked over the forums and have found this
    "To repair your Flash Catalyst Fileset you will need to copy  the following directory from a working Flash Catalyst installation into  the same location in your Fileset.
    Import the "temp" directory from:
    /Applications/Adobe Flash Catalyst CS5/plugins/com.adobe.thermo.core_1.0.0.273393/com/adobe/thermo/
    into the same location in your Fileset:
    /Applications/Adobe Flash Catalyst CS5/plugins/com.adobe.thermo.core_1.0.0.273393/com/adobe/thermo/
    When completed, the fileset should have the following directories in
    /Applications/Adobe Flash Catalyst CS5/plugins/com.adobe.thermo.core_1.0.0.273393/com/adobe/thermo/
    application/
    batching/
    core/
    exceptions/
    headlights/
    interfaces/
    models/
    temp/
    undo/
    utils/
    There are a number of directories in the Plugins directory that start  with "com.adobe.thermo.core…"  Please make sure that you follow the path  correctly."
    Which didn't help. Inside the log file it said this
    "!SESSION 2011-04-13 09:38:35.403 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_24
    java.vendor=Apple Inc.
    BootLoader constants: OS=macosx, ARCH=x86, WS=carbon, NL=en_US
    Framework arguments:  -keyring /Users/g5/.eclipse_keyring -showlocation
    Command-line arguments:  -os macosx -ws carbon -arch x86 -clean -keyring /Users/g5/.eclipse_keyring -consoleLog -showlocation
    !ENTRY org.eclipse.osgi 4 0 2011-04-13 09:38:41.108
    !MESSAGE An error occurred while automatically activating bundle com.adobe.flexbuilder.project (17).
    !STACK 0
    org.osgi.framework.BundleException: Exception in com.adobe.flexbuilder.project.internal.FlexProjectCore.start() of bundle com.adobe.flexbuilder.project.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at com.adobe.thermo.application.ThermoApplication.start(ThermoApplication.java:62)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(Transforme rImpl.java:661)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:707)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:313)
    at com.adobe.flexbuilder.util.XMLUtil.toByteArrayOutputStream(XMLUtil.java:232)
    at com.adobe.flexbuilder.util.XMLUtil.toString(XMLUtil.java:94)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.saveToPrefStore(FlexSDKPreferences. java:318)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferenceInitializer.initializeDefaultPreferen ces(FlexSDKPreferenceInitializer.java:44)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(Pref erenceServiceRegistryHelper.java:276)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefault s(PreferenceServiceRegistryHelper.java:130)
    at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(Preferences Service.java:367)
    at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPref erences.java:163)
    at org.eclipse.core.internal.preferences.DefaultPreferences.loadDefaults(DefaultPreferences. java:236)
    at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:232 )
    at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:3 07)
    at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences. java:543)
    at org.eclipse.core.internal.preferences.DefaultPreferences.node(DefaultPreferences.java:150 )
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getDefaultPreferences(Pr eferenceForwarder.java:130)
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getString(PreferenceForw arder.java:636)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.loadFromPreferenceStore(FlexSDKPref erences.java:307)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.getFlexSDKPreferences(FlexProjectC ore.java:1127)
    at com.adobe.flexbuilder.project.actionscript.ActionScriptCore.start(ActionScriptCore.java:3 80)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.start(FlexProjectCore.java:320)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    ... 27 more
    Root exception:
    java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(Transforme rImpl.java:661)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:707)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:313)
    at com.adobe.flexbuilder.util.XMLUtil.toByteArrayOutputStream(XMLUtil.java:232)
    at com.adobe.flexbuilder.util.XMLUtil.toString(XMLUtil.java:94)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.saveToPrefStore(FlexSDKPreferences. java:318)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferenceInitializer.initializeDefaultPreferen ces(FlexSDKPreferenceInitializer.java:44)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(Pref erenceServiceRegistryHelper.java:276)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefault s(PreferenceServiceRegistryHelper.java:130)
    at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(Preferences Service.java:367)
    at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPref erences.java:163)
    at org.eclipse.core.internal.preferences.DefaultPreferences.loadDefaults(DefaultPreferences. java:236)
    at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:232 )
    at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:3 07)
    at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences. java:543)
    at org.eclipse.core.internal.preferences.DefaultPreferences.node(DefaultPreferences.java:150 )
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getDefaultPreferences(Pr eferenceForwarder.java:130)
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getString(PreferenceForw arder.java:636)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.loadFromPreferenceStore(FlexSDKPref erences.java:307)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.getFlexSDKPreferences(FlexProjectC ore.java:1127)
    at com.adobe.flexbuilder.project.actionscript.ActionScriptCore.start(ActionScriptCore.java:3 80)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.start(FlexProjectCore.java:320)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at com.adobe.thermo.application.ThermoApplication.start(ThermoApplication.java:62)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    !ENTRY org.eclipse.osgi 4 0 2011-04-13 09:38:41.122
    !MESSAGE Application error
    !STACK 1
    java.lang.NoClassDefFoundError: com/adobe/flexbuilder/project/FlexBuilderInstallation
    at com.adobe.thermo.application.ThermoApplication.start(ThermoApplication.java:62)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter$TerminatingClassNotFoundExce ption: An error occurred while automatically activating bundle com.adobe.flexbuilder.project (17).
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:125)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    ... 13 more
    Caused by: org.osgi.framework.BundleException: Exception in com.adobe.flexbuilder.project.internal.FlexProjectCore.start() of bundle com.adobe.flexbuilder.project.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    ... 22 more
    Caused by: java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(Transforme rImpl.java:661)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:707)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:313)
    at com.adobe.flexbuilder.util.XMLUtil.toByteArrayOutputStream(XMLUtil.java:232)
    at com.adobe.flexbuilder.util.XMLUtil.toString(XMLUtil.java:94)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.saveToPrefStore(FlexSDKPreferences. java:318)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferenceInitializer.initializeDefaultPreferen ces(FlexSDKPreferenceInitializer.java:44)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(Pref erenceServiceRegistryHelper.java:276)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefault s(PreferenceServiceRegistryHelper.java:130)
    at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(Preferences Service.java:367)
    at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPref erences.java:163)
    at org.eclipse.core.internal.preferences.DefaultPreferences.loadDefaults(DefaultPreferences. java:236)
    at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:232 )
    at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:3 07)
    at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences. java:543)
    at org.eclipse.core.internal.preferences.DefaultPreferences.node(DefaultPreferences.java:150 )
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getDefaultPreferences(Pr eferenceForwarder.java:130)
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getString(PreferenceForw arder.java:636)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.loadFromPreferenceStore(FlexSDKPref erences.java:307)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.getFlexSDKPreferences(FlexProjectC ore.java:1127)
    at com.adobe.flexbuilder.project.actionscript.ActionScriptCore.start(ActionScriptCore.java:3 80)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.start(FlexProjectCore.java:320)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    ... 27 more
    !ENTRY org.eclipse.osgi 2 0 2011-04-13 09:38:41.131
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.131
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.131
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.131
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.132
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.132
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.132
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.132
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.132
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.133
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.133
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.133
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.133
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.133
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.133
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.134
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.134
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.134
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.134
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.134
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.134
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.135
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.135
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !ENTRY org.eclipse.osgi 2 0 2011-04-13 09:38:41.136
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.136
    !MESSAGE Bundle update@plugins/com.adobe.flexbuilder.utils.osnative.win_1.0.0.273393/ [19] was not resolved.
    !SUBENTRY 2 com.adobe.flexbuilder.utils.osnative.win 2 0 2011-04-13 09:38:41.137
    !MESSAGE Platform filter did not match: (& (osgi.ws=win32) (osgi.os=win32) (osgi.arch=x86))
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.137
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar [171] was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.137
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.137
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar [175] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.137
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.137
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar [176] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.138
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.138
    !MESSAGE Bundle update@plugins/org.eclipse.swt.carbon.macosx_3.4.0.v3448f.jar [205] was not resolved.
    !SUBENTRY 2 org.eclipse.swt.carbon.macosx 2 0 2011-04-13 09:38:41.138
    !MESSAGE Another singleton version selected: org.eclipse.swt.carbon.macosx_3.4.0.v3449
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.138
    !MESSAGE Bundle update@plugins/org.eclipse.swt_3.4.0.v3448f.jar [208] was not resolved.
    !SUBENTRY 2 org.eclipse.swt 2 0 2011-04-13 09:38:41.138
    !MESSAGE Missing imported package org.mozilla.xpcom_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.138
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar [212] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.139
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.139
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar [213] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.139
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.139
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar [214] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.139
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.139
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar [215] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.139
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.140
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar [224] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.140
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.140
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar [229] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.140
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.140
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar [263] was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.140
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:38:41.141
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar [266] was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:38:41.141
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SESSION 2011-04-13 09:42:01.597 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_24
    java.vendor=Apple Inc.
    BootLoader constants: OS=macosx, ARCH=x86, WS=carbon, NL=en_US
    Framework arguments:  -keyring /Users/g5/.eclipse_keyring -showlocation
    Command-line arguments:  -os macosx -ws carbon -arch x86 -clean -keyring /Users/g5/.eclipse_keyring -consoleLog -showlocation
    !ENTRY org.eclipse.osgi 4 0 2011-04-13 09:42:03.397
    !MESSAGE An error occurred while automatically activating bundle com.adobe.flexbuilder.project (17).
    !STACK 0
    org.osgi.framework.BundleException: Exception in com.adobe.flexbuilder.project.internal.FlexProjectCore.start() of bundle com.adobe.flexbuilder.project.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at com.adobe.thermo.application.ThermoApplication.start(ThermoApplication.java:62)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(Transforme rImpl.java:661)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:707)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:313)
    at com.adobe.flexbuilder.util.XMLUtil.toByteArrayOutputStream(XMLUtil.java:232)
    at com.adobe.flexbuilder.util.XMLUtil.toString(XMLUtil.java:94)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.saveToPrefStore(FlexSDKPreferences. java:318)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferenceInitializer.initializeDefaultPreferen ces(FlexSDKPreferenceInitializer.java:44)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(Pref erenceServiceRegistryHelper.java:276)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefault s(PreferenceServiceRegistryHelper.java:130)
    at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(Preferences Service.java:367)
    at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPref erences.java:163)
    at org.eclipse.core.internal.preferences.DefaultPreferences.loadDefaults(DefaultPreferences. java:236)
    at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:232 )
    at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:3 07)
    at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences. java:543)
    at org.eclipse.core.internal.preferences.DefaultPreferences.node(DefaultPreferences.java:150 )
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getDefaultPreferences(Pr eferenceForwarder.java:130)
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getString(PreferenceForw arder.java:636)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.loadFromPreferenceStore(FlexSDKPref erences.java:307)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.getFlexSDKPreferences(FlexProjectC ore.java:1127)
    at com.adobe.flexbuilder.project.actionscript.ActionScriptCore.start(ActionScriptCore.java:3 80)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.start(FlexProjectCore.java:320)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    ... 27 more
    Root exception:
    java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(Transforme rImpl.java:661)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:707)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:313)
    at com.adobe.flexbuilder.util.XMLUtil.toByteArrayOutputStream(XMLUtil.java:232)
    at com.adobe.flexbuilder.util.XMLUtil.toString(XMLUtil.java:94)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.saveToPrefStore(FlexSDKPreferences. java:318)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferenceInitializer.initializeDefaultPreferen ces(FlexSDKPreferenceInitializer.java:44)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(Pref erenceServiceRegistryHelper.java:276)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefault s(PreferenceServiceRegistryHelper.java:130)
    at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(Preferences Service.java:367)
    at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPref erences.java:163)
    at org.eclipse.core.internal.preferences.DefaultPreferences.loadDefaults(DefaultPreferences. java:236)
    at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:232 )
    at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:3 07)
    at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences. java:543)
    at org.eclipse.core.internal.preferences.DefaultPreferences.node(DefaultPreferences.java:150 )
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getDefaultPreferences(Pr eferenceForwarder.java:130)
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getString(PreferenceForw arder.java:636)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.loadFromPreferenceStore(FlexSDKPref erences.java:307)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.getFlexSDKPreferences(FlexProjectC ore.java:1127)
    at com.adobe.flexbuilder.project.actionscript.ActionScriptCore.start(ActionScriptCore.java:3 80)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.start(FlexProjectCore.java:320)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at com.adobe.thermo.application.ThermoApplication.start(ThermoApplication.java:62)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    !ENTRY org.eclipse.osgi 4 0 2011-04-13 09:42:03.479
    !MESSAGE Application error
    !STACK 1
    java.lang.NoClassDefFoundError: com/adobe/flexbuilder/project/FlexBuilderInstallation
    at com.adobe.thermo.application.ThermoApplication.start(ThermoApplication.java:62)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter$TerminatingClassNotFoundExce ption: An error occurred while automatically activating bundle com.adobe.flexbuilder.project (17).
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:125)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    ... 13 more
    Caused by: org.osgi.framework.BundleException: Exception in com.adobe.flexbuilder.project.internal.FlexProjectCore.start() of bundle com.adobe.flexbuilder.project.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    ... 22 more
    Caused by: java.lang.AbstractMethodError: org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(Transforme rImpl.java:661)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:707)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.ja va:313)
    at com.adobe.flexbuilder.util.XMLUtil.toByteArrayOutputStream(XMLUtil.java:232)
    at com.adobe.flexbuilder.util.XMLUtil.toString(XMLUtil.java:94)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.saveToPrefStore(FlexSDKPreferences. java:318)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferenceInitializer.initializeDefaultPreferen ces(FlexSDKPreferenceInitializer.java:44)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(Pref erenceServiceRegistryHelper.java:276)
    at org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefault s(PreferenceServiceRegistryHelper.java:130)
    at org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(Preferences Service.java:367)
    at org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(DefaultPref erences.java:163)
    at org.eclipse.core.internal.preferences.DefaultPreferences.loadDefaults(DefaultPreferences. java:236)
    at org.eclipse.core.internal.preferences.DefaultPreferences.load(DefaultPreferences.java:232 )
    at org.eclipse.core.internal.preferences.EclipsePreferences.create(EclipsePreferences.java:3 07)
    at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(EclipsePreferences. java:543)
    at org.eclipse.core.internal.preferences.DefaultPreferences.node(DefaultPreferences.java:150 )
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getDefaultPreferences(Pr eferenceForwarder.java:130)
    at org.eclipse.core.internal.preferences.legacy.PreferenceForwarder.getString(PreferenceForw arder.java:636)
    at com.adobe.flexbuilder.project.sdks.FlexSDKPreferences.loadFromPreferenceStore(FlexSDKPref erences.java:307)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.getFlexSDKPreferences(FlexProjectC ore.java:1127)
    at com.adobe.flexbuilder.project.actionscript.ActionScriptCore.start(ActionScriptCore.java:3 80)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore.start(FlexProjectCore.java:320)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:1 009)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1003)
    ... 27 more
    !ENTRY org.eclipse.osgi 2 0 2011-04-13 09:42:03.488
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.488
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.489
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.489
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.489
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.489
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.489
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.489
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.490
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.490
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.490
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.490
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.490
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.490
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.491
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.491
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.491
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.491
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.491
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.492
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.492
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.492
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.492
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !ENTRY org.eclipse.osgi 2 0 2011-04-13 09:42:03.494
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.495
    !MESSAGE Bundle update@plugins/com.adobe.flexbuilder.utils.osnative.win_1.0.0.273393/ [19] was not resolved.
    !SUBENTRY 2 com.adobe.flexbuilder.utils.osnative.win 2 0 2011-04-13 09:42:03.498
    !MESSAGE Platform filter did not match: (& (osgi.ws=win32) (osgi.os=win32) (osgi.arch=x86))
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.498
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar [171] was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.498
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.498
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar [175] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.499
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.499
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar [176] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.499
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.499
    !MESSAGE Bundle update@plugins/org.eclipse.swt.carbon.macosx_3.4.0.v3448f.jar [205] was not resolved.
    !SUBENTRY 2 org.eclipse.swt.carbon.macosx 2 0 2011-04-13 09:42:03.499
    !MESSAGE Another singleton version selected: org.eclipse.swt.carbon.macosx_3.4.0.v3449
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.500
    !MESSAGE Bundle update@plugins/org.eclipse.swt_3.4.0.v3448f.jar [208] was not resolved.
    !SUBENTRY 2 org.eclipse.swt 2 0 2011-04-13 09:42:03.500
    !MESSAGE Missing imported package org.mozilla.xpcom_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.502
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar [212] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.502
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.502
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar [213] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.502
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.502
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar [214] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.503
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.503
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar [215] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.503
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.503
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar [224] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.503
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.504
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar [229] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.504
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.504
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar [263] was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.504
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-04-13 09:42:03.504
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar [266] was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-04-13 09:42:03.505
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SESSION 2011-04-13 09:43:16.242 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_24
    java.vendor=Apple Inc.
    BootLoader constants: OS=macosx, ARCH=x86, WS=carbon, NL=en_US
    Framework arguments:  -keyring /Users/g5/.eclipse_keyring -showlocation
    Command-line arguments:  -os macosx -ws carbon -arch x86 -clean -keyring /Users/g5/.eclipse_keyring -consoleLog -showlocation
    !ENTRY org.eclipse.osgi 4 0 2011-04-13 09:43:17.932
    !MESSAGE An error occurred while automatically activating bundle com.adobe.flexbuilder.project (17).
    !STACK 0
    org.osgi.framework.BundleException: Exception in com.adobe.flexbuilder.project.internal.FlexProjectCore.start() of bundle com.adobe.flexbuilder.project.
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1028)
    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 84)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:265)
    at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :427)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:193)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:36 8)
    at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:33)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :441)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:397)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:385)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at com.adobe.thermo.application.ThermoApplication.start(ThermoApplication.java:62)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.

    Both I and my Grandad have managed to get Flash Catalyst to work, mainly him. But still.
    This is what we did;
    Navigate to each of these folders starting home library first:
    ~User/Library/Java/Extensions.
    ~Startup Drive/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/lib/ext
    ~Startup Drive/System/Library/Java/Extensions
    ~Startup Drive/Library/Java/Extensions
    In each folder, check if there are any files containing the text "xalan" or "xerces"
    If there are, temporarily remove them one at a time (e.g. just drag them to desktop for now) "Do NOT delete until All Apps have been checked".
    Re-launch Catalyst each time if you find one putting it back if it does not work. I found it was the HOME Library when it worked.
    Don't ask how he worked it out (He is a very clever man)

  • Flash Catalyst (especially Paninni) Rules - This Is An Apology

    Hi… Two weeks ago I posted a question asking how to create a horizontal scrollbar that reveals content from both the right and left sides of a page. I became frustrated because I couldn't bring Catalyst in line with the design I had created in Illustrator for my web page. I had tried using a data list, a component with nested buttons and more components but wasn't able to resolve the challenge on my own. So, I started reviewing the video tutorials and visiting the Adobe Catalyst forum for an answer. When my question didn't receive a response within the first couple of days I posted an additional comment expressing my disappointment. Well, Mykola D. responded to my question telling me how I could use Flash Builder and ActionScript to accomplish my goal. This frustrated me even further because as a designer (not a developer), the last thing I wanted to do was to learn code and begin as a novice with yet another program. So instead I posted another comment basically lambasting Catalyst, and the basic premise of the new program as a "bridge" between designer and developer. Well… I was wrong. In fact, my ultimate experience with Flash Catalyst (Paninni) has been so rewarding that I wanted to post this additional comment to let any one know that read my previous post that I jumped the gun forming an opinion. REALLY jumped the gun. And you know what I forgot? I forgot one of my own fundamental rules when creating. Never try and take a set of preconceived ideas and impose them on a set of tools with which you are unfamiliar. The best ideas emerge from the the artists familiarity with the materials, tools and techniques he/she is using. Trying to create in any other way would be analogous to someone trying to compose a piano concerto without knowing how to play the piano… Or performing brain surgery without ever having attended medical school. I am sure we have all run across THAT type of person before… You know, the big shot creative director who fancies him/herself an "idea" person but has no idea how to actually reduce those ideas to practice, instead relying on the expertise of real artists to create. And you know what? After focusing my attention and actually learning Catalyst it turns out that I didn't have to compromise my Illustrator design one bit. I got the scroll bar to work and even implemented an Illustrator mask grouped with the custom component and… Well, it just worked fantastic. My web page is up and I am very pleased. If you would like to take a look at a professional designers first attempt at a web page I am including the link below. Thanks to whoever had the initial idea for creating Catalyst and I hope the development of this product continues. I am already working on some other ideas on how I can use Catalyst.
    Karl
    http://www.karldeckeronline.com/

    I totally feel ya (though I don't know the thread you are writing about)...
    My only complaint is that there is little support for it, however it is obviously quite powerful and full of deesign steroids
    In particular it works so well with illustrator, if only I could figure out import=>swf to work on the server

  • Flash Catalyst cs5.5 Startup Error

    Hi I'm having strange issue, that I can't resolve. Simple: Flash Catalyst crashing at startup with error message:
    "An error has occured. See the log file
    c:\Users\[username]\Application Data\Adobe\Flash Catalyst CS5.5\workspace\.metadata\.log
    I reinstalled it but it didn't help. Any ideas what to do with this case?
    Here is log file:
    !SESSION 2011-08-24 18:42:22.803 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY com.adobe.thermo.core 1 0 2011-08-24 18:42:35.253
    !MESSAGE Loading ThermoPanels from bundleentry://52/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.osgi 4 0 2011-08-24 18:43:35.579
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTError: Cannot initialize Drop
    at org.eclipse.swt.dnd.DND.error(DND.java:267)
    at org.eclipse.swt.dnd.DND.error(DND.java:228)
    at org.eclipse.swt.dnd.DropTarget.<init>(DropTarget.java:143)
    at org.eclipse.ui.internal.EditorSashContainer.addDropSupport(EditorSashContainer.java:541)
    at org.eclipse.ui.internal.EditorSashContainer.createControl(EditorSashContainer.java:533)
    at org.eclipse.ui.internal.EditorAreaHelper.<init>(EditorAreaHelper.java:41)
    at org.eclipse.ui.internal.WorkbenchPage.init(WorkbenchPage.java:2386)
    at org.eclipse.ui.internal.WorkbenchPage.<init>(WorkbenchPage.java:560)
    at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchPage(Workbench 3xImplementation.java:39)
    at org.eclipse.ui.internal.WorkbenchWindow.busyOpenPage(WorkbenchWindow.java:756)
    at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1027)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
    at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
    at org.eclipse.ui.internal.Workbench$27.runWithException(Workbench.java:1361)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2293)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.adobe.thermo.application.ThermoApplication.start(Unknown Source)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    !ENTRY org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.594
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.594
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !ENTRY org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar [173] was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar [177] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar [178] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar [212] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar [213] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar [214] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar [215] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar [222] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar [227] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar [263] was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:43:35.596
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar [266] was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:43:35.596
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SESSION 2011-08-24 18:54:19.683 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY org.eclipse.core.resources 2 10035 2011-08-24 18:54:23.321
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY com.adobe.thermo.core 1 0 2011-08-24 18:54:32.328
    !MESSAGE Loading ThermoPanels from bundleentry://52/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.osgi 4 0 2011-08-24 18:55:32.542
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTError: Cannot initialize Drop
    at org.eclipse.swt.dnd.DND.error(DND.java:267)
    at org.eclipse.swt.dnd.DND.error(DND.java:228)
    at org.eclipse.swt.dnd.DropTarget.<init>(DropTarget.java:143)
    at org.eclipse.ui.internal.EditorSashContainer.addDropSupport(EditorSashContainer.java:541)
    at org.eclipse.ui.internal.EditorSashContainer.createControl(EditorSashContainer.java:533)
    at org.eclipse.ui.internal.EditorAreaHelper.<init>(EditorAreaHelper.java:41)
    at org.eclipse.ui.internal.WorkbenchPage.init(WorkbenchPage.java:2386)
    at org.eclipse.ui.internal.WorkbenchPage.<init>(WorkbenchPage.java:560)
    at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchPage(Workbench 3xImplementation.java:39)
    at org.eclipse.ui.internal.WorkbenchWindow.busyOpenPage(WorkbenchWindow.java:756)
    at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1027)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
    at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
    at org.eclipse.ui.internal.Workbench$27.runWithException(Workbench.java:1361)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2293)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.adobe.thermo.application.ThermoApplication.start(Unknown Source)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    !ENTRY org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.552
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.552
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !ENTRY org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar [173] was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar [177] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar [178] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar [212] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.554
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar [213] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.554
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.557
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar [214] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.557
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.557
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar [215] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.557
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.557
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar [222] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.557
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.557
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar [227] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.557
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.557
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar [263] was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.557
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 18:55:32.557
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar [266] was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-08-24 18:55:32.557
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SESSION 2011-08-24 19:30:37.092 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY org.eclipse.core.resources 2 10035 2011-08-24 19:30:40.399
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY com.adobe.thermo.core 1 0 2011-08-24 19:30:51.318
    !MESSAGE Loading ThermoPanels from bundleentry://52/ThermoPanelsSWF/ThermoPanels.swf
    !ENTRY org.eclipse.osgi 4 0 2011-08-24 19:31:52.326
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTError: Cannot initialize Drop
    at org.eclipse.swt.dnd.DND.error(DND.java:267)
    at org.eclipse.swt.dnd.DND.error(DND.java:228)
    at org.eclipse.swt.dnd.DropTarget.<init>(DropTarget.java:143)
    at org.eclipse.ui.internal.EditorSashContainer.addDropSupport(EditorSashContainer.java:541)
    at org.eclipse.ui.internal.EditorSashContainer.createControl(EditorSashContainer.java:533)
    at org.eclipse.ui.internal.EditorAreaHelper.<init>(EditorAreaHelper.java:41)
    at org.eclipse.ui.internal.WorkbenchPage.init(WorkbenchPage.java:2386)
    at org.eclipse.ui.internal.WorkbenchPage.<init>(WorkbenchPage.java:560)
    at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchPage(Workbench 3xImplementation.java:39)
    at org.eclipse.ui.internal.WorkbenchWindow.busyOpenPage(WorkbenchWindow.java:756)
    at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1027)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
    at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
    at org.eclipse.ui.internal.Workbench$27.runWithException(Workbench.java:1361)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3800)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3425)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2293)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.adobe.thermo.application.ThermoApplication.start(Unknown Source)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    !ENTRY org.eclipse.osgi 2 0 2011-08-24 19:31:52.338
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.338
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.338
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.341
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.341
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !ENTRY org.eclipse.osgi 2 0 2011-08-24 19:31:52.343
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.343
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.nl1_0.2.0.v20080914043401.jar [173] was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.343
    !MESSAGE Missing host org.eclipse.help.appserver_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.343
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.nl1_0.2.0.v20080914043401.jar [177] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.343
    !MESSAGE Missing host org.eclipse.help.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.343
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.nl1_0.2.0.v20080914043401.jar [178] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.343
    !MESSAGE Missing host org.eclipse.help.webapp_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.343
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401.jar [212] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.core.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.343
    !MESSAGE Missing host org.eclipse.team.cvs.core_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.343
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401.jar [213] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.343
    !MESSAGE Missing host org.eclipse.team.cvs.ssh_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.343
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401.jar [214] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ssh2.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.346
    !MESSAGE Missing host org.eclipse.team.cvs.ssh2_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.346
    !MESSAGE Bundle update@plugins/org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401.jar [215] was not resolved.
    !SUBENTRY 2 org.eclipse.team.cvs.ui.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.346
    !MESSAGE Missing host org.eclipse.team.cvs.ui_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.346
    !MESSAGE Bundle update@plugins/org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401.jar [222] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.cheatsheets.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.346
    !MESSAGE Missing host org.eclipse.ui.cheatsheets_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.346
    !MESSAGE Bundle update@plugins/org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401.jar [227] was not resolved.
    !SUBENTRY 2 org.eclipse.ui.externaltools.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.346
    !MESSAGE Missing host org.eclipse.ui.externaltools_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.346
    !MESSAGE Bundle update@plugins/org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401.jar [263] was not resolved.
    !SUBENTRY 2 org.eclipse.update.scheduler.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.346
    !MESSAGE Missing host org.eclipse.update.scheduler_[0.0.0,9.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2011-08-24 19:31:52.346
    !MESSAGE Bundle update@plugins/org.junit4.nl1_0.2.0.v20080914043401.jar [266] was not resolved.
    !SUBENTRY 2 org.junit4.nl1_0.2.0.v20080914043401 2 0 2011-08-24 19:31:52.346
    !MESSAGE Missing host org.junit4_[0.0.0,9.0.0).
    !SESSION 2011-08-24 19:45:07.649 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86 -clean
    !ENTRY org.eclipse.core.resources 2 10035 2011-08-24 19:45:10.602
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.

    Hum. Did you update your JAVA runtime recently? Flash Catalyst is built on Eclipse, which is in turn built on JAVA.
    Chris

  • Flash Catalyst - how to encapsulate components

    Hi everybody
    I have created an interactivew project in Flash Catalyst, however, just as I am about to add the final states to the project, I am told that I am limited to 20 states. Apparently I have exceeded that number and cannot finish my project, which has taken me hours to create.
    The help file tells me that the way around the limitation is to encapsulate components. Unfortunately, there are no concrete examples of how to do that.
    If someone can help me out here, I shall be very grateful.
    Yours
    hjbune2
    Hi again
    I realize that it is difficult to help me unlless I'm more specific as to my project.
    The project has a main window with a vertical menu with 10 buttons which displays in every state and opens with an application transition:
    I have an 'on click' interaction on each of the buttons, which transitions the user to "contents 1" on a page with a scrolling bar component, using a flex component from the common library:
    The button in the lower right corner brings the user to a scrolling panel sub page:
    The button in the lower right corner opens a pdf document to allow the reader to print the subject.
    This is the structure for all 10 buttons in the vertical navigation bar.
    Futhermore, I have animated background boxes coming in from the bottom on the scroplling panel pages.
    I was not aware of the 20 states limitation before I started the project and am hoping that I can still save the project by finding a work around that will allow me to fit all my items and their contents into the existing structure, some magic recipe ;0)
    If this is not possible, I am hoping that someone can instruct me on how to design the structure to avoid the problem next time around.
    Any help will be VERY MUCH APPRICIATED.
    By the way, I think Adobe should definitely introduce the states limitation at an early point in their tutorials, so that it does not come as a nasty surprise when it is too late. I have watched all the adobe video tutorials and there is no mention of this limitation.
    I hope that they will bring a video tutorial on how to work your way around it, with step by step examples, as soon as possible.
    hjbune2
    Message was edited by: hjbune2

    Importing the swf's will destroy any actionscript they have.  You'll need to copy the timelines of the games into movieclips in your other file.
    You might instead consider just loading the games dynamically, making the main file more of a loading/summary platform that you use to communicate with the loaded games.  This approach would likely allow you to easily add even more games as long as you have a similar communication scheme established.

Maybe you are looking for

  • Office 2013 - Incorrect Icons In Taskbar When Apps Running

    Hi, I have a a strange issue relating to Office 2013 (all apps in suite) in our school based Windows 7 domain environment. When students login and run any app from the office suite they launch correctly and are able to be used.  However the icon that

  • PDF document not full page but need to print it as a full page

    Hi, I have a pdf document which is 15 cm by 8 cm and need to print it as a full page without the white border making up the full page. How can I do this? The document was created in publisher and saved as a pdf. I am reading the document from Adobe R

  • Adobe air not working

    hi i use various software that need adobe air to use. but for whatever reason it is just not working. i have uninstalled adobe air and re-installed it but that didn't work i have uninstalled adobe air and one of the software i use with it and re-inst

  • Does my excel can be opened as a region in my jspx page.

    Hi, Am using jdeveloper 11.1.2.4.0., My scenario  is I need to open my ADF Integrated Excel as a region in my jspx page. Does it possible? Am expecting help to achieve this. Kindly revert back if am not clear with the scenario. Regards, Prasad K T, 9

  • Change the Encryption key

    I Have a Linksys WRT54G How Do You Change The Password