Flex3 Prj to be opened in Flashbuilder

When i tried to open a flex3 project in Flash builder it does not throw any error, it gets opened. But when i am compiling it does not get compiled i mean no errors. But the new changes are taken to get compiled...Please help me out from this problem.
thanks,
Mani

You can save down to older versions (back to CS5) with CS6 if you have access to it.

Similar Messages

  • Can't open .prj files CVI 2009

    Running CVI 2009 and everything had been running fine for weeks.  Shut down test program that was running.  Installed my license device and went to my .prj file to open it up in debug mode.  When I double clicked on it, Windows says it can't find the file, even though it is sitting right there in explorer, it will not open it.  Tried several other .prj files and it does the same thing.  Tried opening CVI by itself and then loading the .prj file, but the splash screen comes up and then it never does anything else.  Rebooted several times (running XP SP3), then finally tried to do a repair of the CVI install.  This didn't help and it did the same thing.  Then deleted everything and did a fresh install...it still says it can't find the .prj file.  It seems like something has gotten corrupted in my Windows install maybe??  Probably going to try and re-image the machine, but trying to figure out what happened.  Anyone seen anything like this ever before???
    Thanks for any info...
    EDGE

    Hi EDGE,
    I haven't run into a similar error in the past but keep us posted on if reimaging the machine resolves the issue.
    Best Regards,
    Swathi B

  • Dreamweaver CC opens .ASP in Photoshop

    On Mac OSx, in finder, I set .ASP to open in Dreamweaver.
    In Dreamweaver CC, when I click a .ASP file, it opens in Photoshop. (It used to open in Flashbuilder, but I deleted that program, now it opens in Phtooshop.)
    In Dreamweaver, I've tried:
    Associating .ASP extension with "external editor" Dreamweaver - Result: You cannot associate Dreamweaver as an external editor.
    Right Clicking file and selecting "Open with Dreamweaver" - Result: It works...ONCE. Then everytime I want to open an ASP file, I have to right click and choose Dreamweaver.
    How can I get Dreamweaver CC to open .ASP files with double click?
    Thanks.

    I came across the/an answer in the Mac OS. Apparently Dreamweaver CC is using the Mac defaults, which is strange because last week DW CS5 worked fine. I loaded DW CC, and it didn't open .ASP files with double click.
    So in the Mac finder, I had to change the association with .ASP files.
    In the Mac Finder, find an .ASP file.
    Right click and select Get Info.
    Click the ‘Open With’ arrow to expand an application list.
    Choose Dreamweaver CC.
    Click “Change All” and then “Continue” when the confirmation dialog appears
    That seems to have done it for me.

  • Compile indesign plugin with Panel

    Hi!
    I make a new question with a tittle more explicit, because i didn't have answer to my last question.
    I have :
    - Xcode 3.2.1
    - SDK CS 5.5
    And i don't know how to do to have an Indesign plugin file.
    Can you help me ?
    I tried to do what they say to do in the "GETTING STARTED WITH ADOBE INDESIGN CS5.5 PLUG-IN DEVELOPMENT" PDF file but :
    - I tried to use DollyXs.sh : i don't know what to do !
    - i tried with the "SDK project template" but after they say that : "Open WFPID.h in your IDE and find the widget definitions for the dialog, as shown here:"
    But where is "WFPID.h" ? Is it in finder ? in xcode project ?
    Please help me.
    Thanks

    Hi
    'Getting started' has enough details to create and build projects. It would be better to read again 'Build the plug-in' section.
    1. run application->terminal
    2. cd dollyxs path and run dollyxs.sh
    3. a tabbed window opens, with default values for dollyxTest project. if u want a project with different name change it
    4. next tabs are mac, win. set paths for mac and skip win.
    5. in final tab, select 'indesign product' and check panel/dialog and now Ok.
    Now a message will show that project is successfuly created.
    open project file in xcode, and build. now plugin file .pln will be created. copy it to the 'application/adobe indesign/plugins' folder. start/restart indesign.
    Unless u can start with sample plugins provided in sdk. Project files will be available in "D:\H\SDK\Adobe InDesign CS5 SDK\build\mac\prj".
    1. open basicdialog / basicmenu prj.
    2. build
    3. 'application/adobe indesign/plugins' folder. start/restart indesign.
    regards
    Ays. Hakkim

  • FlashBuilder 4.5 premium cannot open FLA

    Hello:
    I just installed the trial version of FlashBuilder 4.5 preminum
    Everytime I try to open a FLA file in FlashBuilder 4.5 I get  a messagebox that says "Windows cannot open 'Flash', Make sure you type the name correctly and try again'.
    What gives?
    BobVal

    Hi,
    The path to <installation directory>/lib should be in your LD_LIBRARY_PATH (or equivalent, it depends on your platform).
    How do I solve an unsatisfied link error when using DB XML's Java API: http://www.oracle.com/technology/products/berkeley-db/faq/xml_faq.html#24
    Bogdan Coman

  • XMP metadata from Flashbuilder why not visible in Adobe Bridge?

    Hi there,
    I'm currently wondering around XMP metadata and swf files.
    A: Flash CS5: works
    When I use the XMP panel in Flash CS5 and export a swf, open Adobe Bridge CS5 and select the file, the XMP data are correctly displayed.
    B: Flash Builder(Flex 4.1): don't work
    When I use Flashbuilder and add my metadata to the compilation, then compile, open Adobe Bridge CS5 and select the file, nothing is included in metadata.
    Procedure based on the following (same problem if metadata are directly set through compiler arguments):
    http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_14.html
    ../src/config/ProductMetaData.xml
    <flex-config>
    <metadata>
        <title>My title</title>
        <description>My description</description>
        <publisher>The publisher</publisher>
        <creator>The creator</creator>
        <language>EN</language>
    </metadata>
    </flex-config>
    compiler argument
    -load-config+=config/ProductMetaData.xml
    As far as understood, on the background the following is added to the swf at compile time:
    <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
        <rdf:Description rdf:about='' xmlns:dc='http://purl.org/dc/elements/1.1'>
            <dc:format>application/x-shockwave-flash</dc:format>
            <dc:title>My title</dc:title>
            <dc:description>
                <rdf:Alt>
                    <rdf:li xml:lang='x-default'>My description</rdf:li>
                </rdf:Alt>
            </dc:description>
            <dc:publisher>The publisher</dc:publisher>
            <dc:creator>The creator</dc:creator>
            <dc:language>EN</dc:language>
        </rdf:Description>
    </rdf:RDF>
    I've checked that the medata is correctly added to the swf file using this small software polarswf:
    http://download.cnet.com/Polar-SWF-MetaData/3000-6676_4-10738623.html
    I do not know if it is safe to use it in a produciton context at least in trial mode it allows to check the metadata included in your swf.
    I wonder if this metadata coonot be read by Adobe Bridge because they are at a "lower level" than those put by flash CS5 XMP panel?
    Thank you in advance for your help.
    This is not a blocking situation, but I'm curious to understand what happend.
    Cedric Madelaine (aka maddec)

    I was following this post for a LONG time, since I noticed the same problem.
    This week I was getting in it into myself again and I noticed you use load-config. I used these compiler options :
    contributor name
    Sets metadata in the resulting SWF file. For more information, see Adding metadata to SWF files.
    creator name
    Sets metadata in the resulting SWF file. For more information, see Adding metadata to SWF files.
    date text
    Sets metadata in the resulting SWF file. For more information, see Adding metadata to SWF files.
    But that resulted in this XML string where the dc namespace was missing a / on the end of the URI
    That caused the metadata which was added in flashbuilder was only visible in bridge in the rawXML panel, and not the specific fields
    changing the URI in http://purl.org/dc/elements/1.1/ did the trick ( did this in bridge by exporting the rawXML, changed the / , and imported it )
    <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
        <rdf:Description rdf:about='' xmlns:dc='http://purl.org/dc/elements/1.1'>
            <dc:format>application/x-shockwave-flash</dc:format>
        </rdf:Description>
    </rdf:RDF>
    Sadly there was no way I could add this / myself everytime.
    BUT then I discoverd this option :
    raw-metadata XML_string
    Defines the metadata for the resulting SWF file. The value of this option overrides any metadata.* compiler options (such as contributor,creator, date, and description).
    This is an advanced option.
    And you could give the exact RAW XML as you  described
    <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
        <rdf:Description rdf:about='' xmlns:dc='http://purl.org/dc/elements/1.1/'>
            <dc:format>application/x-shockwave-flash</dc:format>
            <dc:title>My title</dc:title>
            <dc:description>
                <rdf:Alt>
                    <rdf:li xml:lang='x-default'>My description</rdf:li>
                </rdf:Alt>
            </dc:description>
            <dc:publisher>The publisher</dc:publisher>
            <dc:creator>The creator</dc:creator>
            <dc:language>EN</dc:language>
        </rdf:Description>
    </rdf:RDF>
    to the compiler. This could also be done in Flash with JSFL.
    In the end I wrote an ANT script which injects the exact XMLstring of metadata to Flash and Flex projects by using the raw-metadata parameter in FLEX and JSFL for flash.
    Hope this helps

  • I can't get Flashbuilder 4.6 to connect to remote Linux server on port 80

    I'm using Flashbuilder 4.6 on a Mac (Snow Leopard). I have a new CentOS 6.2 Linux server with Apache webserver 2.2.21 on it, then installed GlassFish 3.1.1 application server on it, then installed mod_jk to connect Apache and Glassfish. Everything is installed on the same server. I verified that I can deploy an example war file (web application) in Glassfish and access it fine using either,
        mydomain.com:8080/mywebapp  (uses port 8080, which is direct connection to GlassFish)
        mydomain.com/mywebapp   (uses port 80, which enters Apache and passes through mod_jk to get to Glassfish)
    This works well (no errors in any logs files).
    Then I download BlazeDS from Adobe website, create a hello world application with it and deploy it in GlassFish. I next try to setup a new Flex Project in Flashbuilder 4.5. Using the wizard, I come to the section (under Server location) where I need to input a Root Folder and Root URL. Everything works fine when using a Root URL of http://mydomain.com:8080/mywebapp, meaning, I can click on the Validate Configuration button and Flashbuilder connects to the server.
    But if I enter in the Root URL input field http://mydomain.com/mywebapp, then Flashbuilder cannot connect to the server. I need to eventually close port 8080, so I need this solution, which uses port 80, to work.
    I made sure that the httpd.conf file VirtualHost section does include a `JkMount /mywebapp worker1` statement, and I can even look at the mod_jk.log file and see that Apache correctly opens a socket for mod_jk to communicate via AJP between Apache and GlassFish (with no errors or warnings) when the address `mydomain.com/mywebapp` appears on port 80. The GlassFish server.log file also shows no problems.
    I'm stumped what to do next. Does anyone have experience connecting GlassFish, mod_jk, Apache, and Blazeds (or LCDS, should be similar)? If so, do you see any differences in my setup compared to yours? I'm only trying to use RemoteObject (not messaging, or streaming, etc.) with Java POJOs.

    Hi!
    Thanks for the reply. No, my ISP isn't providing me with three IP addresses, just one static address. And the VDSL modem...not a router, but beyond that, don't know much about it. Do have a switching hub, however, a gigabit thing that so far is working great.
    Managed, somehow, to get everything working, however. Really don't know what I did. But I can now take the MBP off the wire and connect to the other Macs without turning on Airpot on those machines. Next step now is to take the MBP to another location and try to establish a connection to the home network via Desktop Transporter or Vine. That's the Holy Grail that will allow me to sever the cords that keep me from straying too far from home during working hours. Love to sit at that coffee shop across the park and do my work from there!

  • How do I open a file outside of my eclipse project?

    Hello everyone!
    I am trying to get my program to open a file that is outside of my build path.
    I am taking the URI of the file after selecting it from a file chooser and then trying
    to get it to open.
    The file is to be used in a widget that I created and the code looks like the following:
    fileSource = new dSourceDialog(thisClass).getReturnFile();
    if(fileSource != null){
    System.out.println(fileSource.toURI().toString());
    new StandaloneTabWidget(fileSource.toURI().toString(), true);
    jTabbedPane.setVisible(true);
    Console output is as follows:
    file:/D:/Program%20Files/Protege_3.3.1/examples/pizza/pizza.owl
    SEVERE: Unable to load project from: file:/D:/DevEnvironment/testGUI/file:/D:/Program%2520Files/Protege_3.3.1/examples/pizza/pizza.owl -- Project.getProjectInstancesReader()
    There were erros at loading prj: Project(pizza)
    My program does not work because my intention is to open:
    file:/D:/Program%20Files/Protege_3.3.1/examples/pizza/pizza.owl
    while my program, while running in Eclipse, tries to open:
    file:/D:/DevEnvironment/testGUI/file:/D:/Program%2520Files/Protege_3.3.1/examples/pizza/pizza.owl
    If anyone could help it would be greatly appreciated!
    ~Chris

    You say that this:
    fileSource.toURI().toString()
    Opens this:
    D:/DevEnvironment/testGUI/file:/D:/Program%2520Files/Protege_3.3.1/examples/pizza/pizza.owl
    Instead of this:
    D:/Program%20Files/Protege_3.3.1/examples/pizza/pizza.owl
    I see two approaches to solve this:
    1) Take the return value of fileSource.toURI().toString() and parse out a substring begining with the
    second occurance of 'D:' to the end of the string using .subString()
    2) Put this in your code:
    File file = new File("");
    System.out.println(file.getAbsolutePath());
    The above will show you where the directory location that the class you have it running in is located. Get that path
    and alter it programmatically to get the location of your file, assuming the file location is always known relative to where your program is deployed (example: both are in the D drive)
    Note the above is dangerous because your application may be deployed to who knows what subdirectory in production.
    Note also that the fact that one of your directories has a space in it (Program Files) may cause problems. If it does, try to put the file in a directory that doesnt have a space in it to see if that's really the problem.
    You can also look into absolute path verses relative path (example: "../../myProject")

  • I am not able to open, compile and build sample plugin projects from Indesign CS4 SDK

    Hi,
    I am new to Indesign plugin development.
    I have downloaded Indesign CS4 SDK Products version for Windows.
    I have downloaded Adobe Indesign CS4 trial version.
    I have Microsoft Visual C++ 6.0 . I want to build sample SDK examples given
    in SDK. But when I open them from visual c++ /prj folder the project is not
    getting opened.
    I want to load Dollyxs and build it and using that develop some projects.
    Also want to build and run the SDK examples .
    So can anybody help about what software I need n which version of visul c++
    is needed for this.And how to Install
    them.
    Thanks n Regards,
    Ravi Sharma

    Hi,
    Thank u very much for your response.
    Now I am getting error as :Error spawning cmd.exe. while I am building project (Indesign cs4-Windows).
    I have set properties for .fr and .rc files .Am I missing any other setting to be made.
    Can u help me?
    Regards,
    Ravi Sharma

  • FlexUnit is working with FlashBuilder and not working with Build file

    Hi
    I have few flexunit test cases . When I am running those testcases from Flashbuilder FlexUnit plugin I am able to run all the testcases and when I run Build file to run those testcases , build file is launching my testrunner swf file and it is throwing follwoing  runtime error in flash player
    VerifyError: Error #1014: Class flash.events::NativeWindowBoundsEvent could not be found.
    at flash.display::MovieClip/nextFrame()
    at mx.managers::SystemManager/deferredNextFrame()
    at mx.managers::SystemManager/preloader_preloaderDocFrameReadyHandler()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.preloaders::Preloader/timerHandler()
    at flash.utils::Timer/_timerDispatch()
    at flash.utils::Timer/tick()
    here is the Build Console log
    [taskdef] Could not load definitions from resource flexTasks.tasks. It could not be found.
    test:
    [mxmlc] C:\Users\user\Documents\workspace\project\bin-debug\projectTestRunner.swf (1626331 bytes)
    [flexunit] Validating task attributes ...
    [flexunit] Generating default values ...
    [flexunit] Using the following settings for the test run:
    [flexunit] FLEX_HOME: [C:\Program Files\Adobe\Adobe Flash Builder for Force.com\sdks\4.5.1.21328]
    [flexunit] haltonfailure: [false]
    [flexunit] headless: [false]
    [flexunit] display: [99]
    [flexunit] localTrusted: [true]
    [flexunit] player: [flash]
    [flexunit] command: [C:\Program Files\Adobe\Adobe Flash Builder for Force.com\sdks\4.5.1.21328\runtimes\player\10.2\win\FlashPlayerDebugger.exe]
    [flexunit] port: [1024]
    [flexunit] swf: [C:\Users\user\Documents\workspace\project\bin-debug\projectTestRunner.swf]
    [flexunit] timeout: [60000ms]
    [flexunit] toDir: [C:\Users\user\Documents\workspace\project\report]
    [flexunit] Setting up server process ...
    [flexunit] Starting server ...
    [flexunit] Opening server socket on port [1024].
    [flexunit] Waiting for client connection ...
    [flexunit] Entry [C:\Users\user\Documents\workspace\project\bin-debug] already available in local trust file at [C:\Users\user\AppData\Roaming\Macromedia\Flash Player\#Security\FlashPlayerTrust\flexUnit.cfg].
    [flexunit] Executing 'C:\Program Files\Adobe\Adobe Flash Builder for Force.com\sdks\4.5.1.21328\runtimes\player\10.2\win\FlashPlayerDebugger.exe' with arguments:
    [flexunit] 'C:\Users\user\Documents\workspace\project\bin-debug\projectTestRunner.swf'
    [flexunit] The ' characters around the executable and arguments are
    [flexunit] not part of the command.
    [flexunit]
    [flexunit] Stopping server ...
    [flexunit] End of test data reached, sending acknowledgement to player ...
    [flexunit] Closing client connection ...
    [flexunit] Closing server on port [1024] ...
    BUILD FAILED
    C:\Users\user\Documents\workspace\project\build\build.xml:33: The following error occurred while executing this line:
    C:\Users\user\Documents\workspace\project\build\build.xml:175: java.util.concurrent.ExecutionException: Socket timeout waiting for flexunit report
    Many thanks for In advance for your help ..

    We had a similar problem in my project.  Took a lot of research and trial and error, but we finally narrowed it down to the resource.properties file.  Turns out that if the file gets too big it causes this problem.  Extending the timeout doesn't help.  You have to break your resource.properties into more granular files to reduce the file size.  This seems to fix the problem.  We have had it happen several times since then and we know how to fix it, so we get it fixed pretty quickly.
    Not sure if this will fix your problem, but it fixed ours.

  • Copy and Paste images to Word using Adobe Flex3

    I am trying to copy the images from Adobe Flex 3 application
    and paste it in the Microsoft Word or PowerPoint. I couldn't find
    any examples online. I am not sure whether I could do this using
    Adobe Flex3. I know this is possible with Adobe AIR.
    Could you please provide me an example for how to do this
    using Adobe Flex3?
    Thanks,
    maluri

    Good question.  Make a local copy first, i.e. drag to your Desktop,  then drag to Word.
    If that does not work, open the image>command-A>copy  and paste into word.

  • Cannot open Flash Builder 4.5 after updating

    Hi,
    I have a corporate version of CS5.5 installed on 32bit machine.
    Recently, Flash Builder notified me of an available update. It was for some Java but since Eclipse is Java Based I intalled it.
    Now when I open it, it freezes on the splash screen. Without closing it, I open a new one. It asks for a new workspace since old used, I gave it new one. Still stuck on splash screen. Tried restarting computer. Now when I open Flash Builder, it is not stuck on splash page but and error popups and program exits. The popup tells me to look at a log file.
    Here is the log file contents
    !SESSION 2011-09-15 11:03:52.113 -----------------------------------------------
    eclipse.buildId=M20110210-1200
    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
    !ENTRY org.eclipse.osgi 4 0 2011-09-15 11:03:53.844
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTError: No more handles
         at org.eclipse.swt.SWT.error(SWT.java:4109)
         at org.eclipse.swt.SWT.error(SWT.java:3998)
         at org.eclipse.swt.SWT.error(SWT.java:3969)
         at org.eclipse.swt.widgets.Widget.error(Widget.java:468)
         at org.eclipse.swt.widgets.Control.createHandle(Control.java:633)
         at org.eclipse.swt.widgets.Composite.createHandle(Composite.java:305)
         at org.eclipse.swt.widgets.Control.createWidget(Control.java:649)
         at org.eclipse.swt.widgets.Scrollable.createWidget(Scrollable.java:134)
         at org.eclipse.swt.widgets.Control.<init>(Control.java:110)
         at org.eclipse.swt.widgets.Scrollable.<init>(Scrollable.java:75)
         at org.eclipse.swt.widgets.Composite.<init>(Composite.java:95)
         at org.eclipse.ui.splash.BasicSplashHandler.getBundleProgressMonitor(BasicSplashHandler.java:159)
         at org.eclipse.ui.splash.BasicSplashHandler.getContent(BasicSplashHandler.java:265)
         at org.eclipse.ui.internal.splash.EclipseSplashHandler.init(EclipseSplashHandler.java:86)
         at org.eclipse.ui.internal.Workbench$8.run(Workbench.java:782)
         at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
         at org.eclipse.ui.internal.Workbench.createSplashWrapper(Workbench.java:798)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2467)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)
         at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.java:108)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
         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:619)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1407)
    Edit - found another thread with similar issue but still no solution.

    Hello, I'm having the same issue with Flash Builder 4.6.
    I got it off freeriatools.adobe.com, after installing I tried to open it and it said "An unexpected runtime error occured : No more handles" with the following errors in the log file :
    !SESSION 2012-04-25 20:40:19.812 -----------------------------------------------
    eclipse.buildId=I20100608-0911
    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
    !ENTRY org.eclipse.ui 2 0 2012-04-25 20:40:36.702
    !MESSAGE Warnings while parsing the commands from the 'org.eclipse.ui.commands' and 'org.eclipse.ui.actionDefinitions' extension points.
    !SUBENTRY 1 org.eclipse.ui 2 0 2012-04-25 20:40:36.702
    !MESSAGE Commands should really have a category: plug-in='com.qnx.flashbuilder.multiplatform.qnx.ui', id='com.qnx.flashbuilder.multiplatform.qnx.ui.commands.OpenInfoCenter', categoryId='com.qnx.flashbuilder.multiplatform.qnx.ui.commands.category.help'
    !ENTRY org.eclipse.osgi 4 0 2012-04-25 20:40:37.412
    !MESSAGE An unexpected runtime error has occurred.
    !STACK 0
    org.eclipse.swt.SWTError: No more handles
        at org.eclipse.swt.SWT.error(SWT.java:4308)
        at org.eclipse.swt.SWT.error(SWT.java:4197)
        at org.eclipse.swt.SWT.error(SWT.java:4168)
        at org.eclipse.swt.widgets.Widget.error(Widget.java:468)
        at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:103)
        at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:96)
        at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2564)
        at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.getTaskItem(Workbench. java:303)
        at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:319)
        at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.worked(Workbench.java: 268)
        at org.eclipse.ui.internal.Workbench$StartupProgressBundleListener.bundleChanged(Workbench.j ava:420)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImp l.java:847)
        at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230)
        at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue. java:148)
        at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework .java:1522)
        at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1458 )
        at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1453 )
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:391)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:299)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440)
        at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:268)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:107)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :462)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:216)
        at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:400)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:476)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:107)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at org.eclipse.osgi.internal.loader.BundleLoader.loadClass(BundleLoader.java:345)
        at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:229)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:120 7)
        at org.eclipse.equinox.internal.ds.model.ServiceComponent.createInstance(ServiceComponent.ja va:480)
        at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.createInstance(ServiceComponen tProp.java:271)
        at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.build(ServiceComponentProp.jav a:332)
        at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponent(InstanceProcess.java:588)
        at org.eclipse.equinox.internal.ds.ServiceReg.getService(ServiceReg.java:53)
        at org.eclipse.osgi.internal.serviceregistry.ServiceUse$1.run(ServiceUse.java:138)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.internal.serviceregistry.ServiceUse.getService(ServiceUse.java:136)
        at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.getService(ServiceRegis trationImpl.java:468)
        at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.getService(ServiceRegistry.java :467)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.getService(BundleContextImpl.j ava:594)
        at org.osgi.util.tracker.ServiceTracker.addingService(ServiceTracker.java:450)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:980)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:1)
        at org.osgi.util.tracker.AbstractTracked.trackAdding(AbstractTracked.java:262)
        at org.osgi.util.tracker.AbstractTracked.trackInitial(AbstractTracked.java:185)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:348)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:283)
        at org.eclipse.core.internal.runtime.InternalPlatform.getBundleGroupProviders(InternalPlatfo rm.java:225)
        at org.eclipse.core.runtime.Platform.getBundleGroupProviders(Platform.java:1261)
        at org.eclipse.ui.internal.ide.IDEWorkbenchPlugin.getFeatureInfos(IDEWorkbenchPlugin.java:29 1)
        at org.eclipse.ui.internal.ide.WorkbenchActionBuilder.makeFeatureDependentActions(WorkbenchA ctionBuilder.java:1217)
        at org.eclipse.ui.internal.ide.WorkbenchActionBuilder.makeActions(WorkbenchActionBuilder.jav a:1026)
        at org.eclipse.ui.application.ActionBarAdvisor.fillActionBars(ActionBarAdvisor.java:147)
        at org.eclipse.ui.internal.ide.WorkbenchActionBuilder.fillActionBars(WorkbenchActionBuilder. java:341)
        at org.eclipse.ui.internal.WorkbenchWindow.fillActionBars(WorkbenchWindow.java:3564)
        at org.eclipse.ui.internal.WorkbenchWindow.<init>(WorkbenchWindow.java:419)
        at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow(Workben ch3xImplementation.java:31)
        at org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1920)
        at org.eclipse.ui.internal.Workbench.access$14(Workbench.java:1918)
        at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1202)
        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:135)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4140)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
        at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
        at org.eclipse.ui.internal.Workbench$33.runWithException(Workbench.java:1595)
        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:135)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4140)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)
        at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
        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:344)
        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:622)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    !ENTRY org.eclipse.ui.workbench 4 0 2012-04-25 20:40:38.511
    !MESSAGE FrameworkEvent ERROR
    !STACK 0
    org.eclipse.swt.SWTError: No more handles
        at org.eclipse.swt.SWT.error(SWT.java:4308)
        at org.eclipse.swt.SWT.error(SWT.java:4197)
        at org.eclipse.swt.SWT.error(SWT.java:4168)
        at org.eclipse.swt.widgets.Widget.error(Widget.java:468)
        at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:103)
        at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:96)
        at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2564)
        at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.getTaskItem(Workbench. java:303)
        at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:319)
        at org.eclipse.ui.internal.Workbench$TaskBarDelegatingProgressMontior.worked(Workbench.java: 268)
        at org.eclipse.ui.internal.Workbench$StartupProgressBundleListener.bundleChanged(Workbench.j ava:420)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImp l.java:847)
        at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230)
        at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue. java:148)
        at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework .java:1522)
        at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1458 )
        at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1453 )
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:391)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:299)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440)
        at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:268)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:107)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :462)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:216)
        at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:400)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:476)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:107)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at org.eclipse.osgi.internal.loader.BundleLoader.loadClass(BundleLoader.java:345)
        at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:229)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:120 7)
        at org.eclipse.equinox.internal.ds.model.ServiceComponent.createInstance(ServiceComponent.ja va:480)
        at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.createInstance(ServiceComponen tProp.java:271)
        at org.eclipse.equinox.internal.ds.model.ServiceComponentProp.build(ServiceComponentProp.jav a:332)
        at org.eclipse.equinox.internal.ds.InstanceProcess.buildComponent(InstanceProcess.java:588)
        at org.eclipse.equinox.internal.ds.ServiceReg.getService(ServiceReg.java:53)
        at org.eclipse.osgi.internal.serviceregistry.ServiceUse$1.run(ServiceUse.java:138)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.internal.serviceregistry.ServiceUse.getService(ServiceUse.java:136)
        at org.eclipse.osgi.internal.serviceregistry.ServiceRegistrationImpl.getService(ServiceRegis trationImpl.java:468)
        at org.eclipse.osgi.internal.serviceregistry.ServiceRegistry.getService(ServiceRegistry.java :467)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.getService(BundleContextImpl.j ava:594)
        at org.osgi.util.tracker.ServiceTracker.addingService(ServiceTracker.java:450)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:980)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:1)
        at org.osgi.util.tracker.AbstractTracked.trackAdding(AbstractTracked.java:262)
        at org.osgi.util.tracker.AbstractTracked.trackInitial(AbstractTracked.java:185)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:348)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:283)
        at org.eclipse.core.internal.runtime.InternalPlatform.getBundleGroupProviders(InternalPlatfo rm.java:225)
        at org.eclipse.core.runtime.Platform.getBundleGroupProviders(Platform.java:1261)
        at org.eclipse.ui.internal.ide.IDEWorkbenchPlugin.getFeatureInfos(IDEWorkbenchPlugin.java:29 1)
        at org.eclipse.ui.internal.ide.WorkbenchActionBuilder.makeFeatureDependentActions(WorkbenchA ctionBuilder.java:1217)
        at org.eclipse.ui.internal.ide.WorkbenchActionBuilder.makeActions(WorkbenchActionBuilder.jav a:1026)
        at org.eclipse.ui.application.ActionBarAdvisor.fillActionBars(ActionBarAdvisor.java:147)
        at org.eclipse.ui.internal.ide.WorkbenchActionBuilder.fillActionBars(WorkbenchActionBuilder. java:341)
        at org.eclipse.ui.internal.WorkbenchWindow.fillActionBars(WorkbenchWindow.java:3564)
        at org.eclipse.ui.internal.WorkbenchWindow.<init>(WorkbenchWindow.java:419)
        at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow(Workben ch3xImplementation.java:31)
        at org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1920)
        at org.eclipse.ui.internal.Workbench.access$14(Workbench.java:1918)
        at org.eclipse.ui.internal.Workbench$21.runWithException(Workbench.java:1202)
        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:135)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4140)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
        at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
        at org.eclipse.ui.internal.Workbench$33.runWithException(Workbench.java:1595)
        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:135)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4140)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)
        at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
        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:344)
        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:622)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    !ENTRY org.eclipse.osgi 4 0 2012-04-25 20:40:38.974
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTError: No more handles
        at org.eclipse.swt.SWT.error(SWT.java:4308)
        at org.eclipse.swt.SWT.error(SWT.java:4197)
        at org.eclipse.swt.SWT.error(SWT.java:4168)
        at org.eclipse.swt.widgets.Widget.error(Widget.java:468)
        at org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:103)
        at org.eclipse.swt.widgets.TaskBar.<init>(TaskBar.java:96)
        at org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2564)
        at org.eclipse.ui.internal.WorkbenchWindow.createProgressIndicator(WorkbenchWindow.java:3362 )
        at org.eclipse.ui.internal.WorkbenchWindow.createDefaultContents(WorkbenchWindow.java:1130)
        at org.eclipse.ui.internal.WorkbenchWindowConfigurer.createDefaultContents(WorkbenchWindowCo nfigurer.java:623)
        at org.eclipse.ui.application.WorkbenchWindowAdvisor.createWindowContents(WorkbenchWindowAdv isor.java:300)
        at org.eclipse.ui.internal.WorkbenchWindow.createContents(WorkbenchWindow.java:1036)
        at org.eclipse.jface.window.Window.create(Window.java:431)
        at org.eclipse.ui.internal.Workbench$22.runWithException(Workbench.java:1211)
        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:135)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4140)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
        at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
        at org.eclipse.ui.internal.Workbench$33.runWithException(Workbench.java:1595)
        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:135)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4140)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)
        at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
        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:344)
        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:622)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    I was wondering if anyone has found a solution to this problem yet? Because I need this software to work on my laptop in order to start working on my school projects.. Thanks in advance.

  • Flash Builder 4.6 closes after opening

    I have been using Flash Builder 4.6 for a sometime now to develop some android apps. This morning I try to start it and Flash Builder would open the splash screen and silently close. I have renamed the old work space but it created a new work space and closed again silently. I tried to rename the metadata folder, Flash Builder recreated a new metadata folder and closes again. I tried to follow these http://agileui.blogspot.com/2009/09/flashbuilder-4-silently-fails-while.html instructions but I get an error that
    Gumbo.exe is not recognized as an Internal or external command, operable program or batch file.
    So guys please help me, it is very frustrating to fight something which gives no errors. I am using windows 7. Thank you in advance

    Hey all, I got the answer from this same forum http://support.muse.adobe.com/thread/1022320. Thank you

  • How to open the numeric keyboard in a mobile Flash Builder 4.5 app

    I would like to open the numeric keyboard in a mobile Flash Builder 4.5 app when click on a text field instead of the full keyboard.  Is this possible?

    It looks like this is implemented in Flashbuilder 4.6 through the softKeyboardType command:
        <s:TextInput softKeyboardType="number" />
    Here's a link to good article on it:http://devgirl.org/2011/11/29/flex-mobile-development-flex-4-6-cool-new-soft-keyboard-feat ures-sample-w-source/

  • UIImpersonator tests work in FlashBuilder, but not when run from Ant

    I'm in the process of converting a Flex 3 project to use FlexUnit4 tests.
    Everything compiles in Flashbuilder 4.5 and runs nicely. I've converted all the tests
    to use flexunit 4, which highlighted a few issues, but nothing too major, and all the
    tests now pass when run in Flashbuilder.
    So... now, I'm trying to convert the CI build to use the 4.5 SDK and flexunit4. So far,
    so good. Everything runs and I get a nicely formatted JUnit report. Unfortunately, though,
    any test that uses the UIImpersonator fails with an async method timeout, suggesting that
    the CreationComplete event hasn't fired.
    Here's a typical example of one of my UI test cases:
              [Test(async, ui)]
              public function testAvailableProductsSetupAdminForSell() : void {
                   var view:OrderBasketView = new OrderBasketView();
                   var user:CfxUser = new CfxUser();
                   user.admin = true;
                   ModelLocator.instance.userDetails = user;
                   view.buyOrSell = OrderType.SELL;
                   helper.createComponentAndAddListener(view, this, availableProductSetupAdminForSellCreationComplete);
              private function availableProductSetupAdminForSellCreationComplete(event:Event, view:OrderBasketView) : void {
                   Assert.assertTrue(view.availableProductTypes.contains(ProductType.PRODUCT_1));
                   Assert.assertTrue(view.availableProductTypes.contains(ProductType.PRODUCT_2));
                   Assert.assertTrue(view.availableProductTypes.contains(ProductType.PRODUCT_3));
    and helper.createComponentAndAddListener looks like this:
            public function createComponentAndAddListener(view:UIComponent, testCase:Object, creationComplete:Function) : void {
                   _view = view;
                   _view.addEventListener(FlexEvent.CREATION_COMPLETE, Async.asyncHandler(testCase, creationComplete, 4000, _view));
                   UIImpersonator.addChild(_view);
    If I use FlexGlobals.topLevelApplication.parent.addChild(_view) in place of UIImpersonator.addChild(_view), all the tests pass.
    I was wondering if it's a function of the fact that my helper class has no metadata that indicates it's a ui test, but that wouldn't explain why it works in FlashBuilder and not when run with ant.
    I also wondered if it was a function of running with headless server set to true, but when I changed it to false the same thing happened.
    My environment is:
    ubuntu 11.04
    ant 1.7.1
    Sun jdk 1.6.0_26
    Flex SDK 4.5.1.21328
    FlexUnit 4.1.0-8-4.1.0.16076
    I'm using the auto-generated TestRunner.mxml
    Any thoughts, anyone? Now that I can get it to work by adding the UI components to the topLevelApplication, at least I can make progress, but I'd like to get to the bottom of the problem, because that shouldn't be necessary.
    Thanks in advance,
    -Chrisl

    Changing to the topLevelApplication did not work. What's funny is that it then failed on a completely unrelated test by hanging and never returning... I'm thinking there must be something else that is going on here, but it's not clear what... :-/ Here is an example of my setup/teardown and a test that work great in the UI but not in CI...
    [Before(async, ui)]
    public function setUp():void
        _fromToList = new FromToList();
        _fromToList.setStyle('skinClass', FromToListSkin);
        Async.proceedOnEvent(this, _fromToList, FlexEvent.CREATION_COMPLETE, 1000);
        FlexGlobals.topLevelApplication.parent.addChild(_fromToList);
        // UIImpersonator.addChild(_fromToList);
    [After(ui)]
    public function tearDown():void
        FlexGlobals.topLevelApplication.parent.removeChild(_fromToList);
        // UIImpersonator.removeChild(_fromToList);
        _fromToList = null;
    [Test(async)]
    public function should_remove_selected_item_in_to_list_to_from_list():void
        _fromToList.fromArrayList = _dpArray;
        _fromToList.toArrayList = _toDpArray;
        var sequence:SequenceRunner = new SequenceRunner(this);
        sequence.addStep(new SequenceSetter(_fromToList.toList, { selectedItem: _toDpArray[1]}));
        sequence.addStep(new SequenceWaiter(_fromToList.toList, FlexEvent.VALUE_COMMIT, 100));
        sequence.addStep(new SequenceCaller(_fromToList, _fromToList.remove));
        sequence.addStep(new SequenceWaiter(_fromToList, FromToListChangeEvent.FROM_TO_LIST_CHANGE_EVENT, 100));
        sequence.addAssertHandler(handleListHasChangedThenRemoveEvent, {});
        sequence.run();
    private function handleListHasChangedThenRemoveEvent(event:FromToListChangeEvent, passThruData:Object):void
        assertThat(_fromToList.toArrayList.length, equalTo(_toDpArray.length - 1));
        assertThat(_fromToList.fromArrayList.length, equalTo(_dpArray.length - _toDpArray.length + 1));
        assertTrue(_fromToList.fromArrayList.contains(_toDpArray[1]));
    So you can see that I'm using Sequences to manage waiting for stuff to get updated in the background, and basically testing when I select an item in a list and act on it that it updates the model like I expect. Again, works GREAT in the UI Runner.
    I'm open to suggestions...

Maybe you are looking for