Flex Builder Crashes

I have been working with Flex for 5 months now and have no
idea why this is happening.
When I go to build a project, Flex gets invocted on my
project folder and when it completes, Flex shuts down.
Has anyone else experienced this, what can I do to
resolve?

Hi there,
I have faced a similar issue before. I had an old machine
with only 512MB RAM. At that time, flex 2 builder used to crash
frequently. Carsh used to happen usually when I tried to create a
new project or start flex2 builder.
What I tried was to remove the flex builder 2 folder in my
documents and keep it safe in some other drive . Now I tried to
start it again and it worked. I feel its coz of low virtual memory
, that this problem has occured. May be or may not be but it was a
trial and error method. that I used.

Similar Messages

  • Flex Builder crashes if Help is opened

    Hi everybody,
    I've got a nasty problem after I updated to Flex SDK 3.4.
    Every time I open up the Help Contents, Flex Builder crashes in 5-20 seconds, regardless of what I do.
    Anyone has the same problem?

    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider. You may have to leave the machine there for several days.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. There are ways to back up a computer that isn't fully functional—ask if you need guidance.
    If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    Apple also recommends that you deauthorize a device in the iTunes Store before having it serviced.
    *An SSD doesn't need to be zeroed.

  • Error installing flex builder 2 plugin

    I'm getting an error when I try to install the flex builder 2
    into my copy of eclipse version 3.2.1.
    Here is the log:
    !SESSION 2007-03-13 14:10:12.087
    eclipse.buildId=M20060629-1905
    java.version=1.4.2_12
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments: -application
    org.eclipse.update.core.standaloneUpdate -command install -from
    file:\C:\Program Files\Adobe\Flex Builder 2
    Plug-in\com.adobe.flexbuilder.update.site/ -featureId
    com.adobe.flexbuilder.feature.core -version 2.0.155577
    Command-line arguments: -application
    org.eclipse.update.core.standaloneUpdate -command install -from
    file:\C:\Program Files\Adobe\Flex Builder 2
    Plug-in\com.adobe.flexbuilder.update.site/ -featureId
    com.adobe.flexbuilder.feature.core -version 2.0.155577
    !ENTRY org.eclipse.update.core 4 0 2007-03-13 14:10:17.197
    !MESSAGE Duplicate conflicts

    Yes I tried that to work around my problem Flex Builder
    crashing. My Eclipse 3.3 install works fine, Flex Builder will not
    even start. The plug-in installer would not get past that same
    screen, I downloaded 3.2 and it installed fine, I assume it checks
    the version and 3.3 is not supported.

  • HELP!! Silent Installing Flex Builder 2

    I need to silently deploy Flex Builder 2 with HP Radia. Does
    anybody know how to do this?

    Yes I tried that to work around my problem Flex Builder
    crashing. My Eclipse 3.3 install works fine, Flex Builder will not
    even start. The plug-in installer would not get past that same
    screen, I downloaded 3.2 and it installed fine, I assume it checks
    the version and 3.3 is not supported.

  • I have a component like the following and it completely crashes the design view in flex builder

    I have a component like the following and it completely crashes the design view in flex builder.I can see anything in the layout. Everything compliles fine and looks normal in the outline view. Any ideas whats wrong. If I remove the AdvancedDataGridColumnGroup's all looks fine
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Panel x="353" y="34" width="1159" height="505.7" maxWidth="663" allowDrag="true" allowResize="true" allowClose="true" allowMaximize="true" allowMinimize="true" resizeEffect="Resize" moveEffect="Move" close="parent.removeChild(this)" maxHeight="680" layout="absolute" title="Back office list" xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{tradesResult}" width="100%" height="373" sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
            <mx:columns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="Reference" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="clientside" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="bankDealRef" headerText="Bank Ref" width="70" editable="true" wordWrap="true" dataTipFunction="dataTipFuncNotes" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="Premium2" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:columns>
        </mx:AdvancedDataGrid>
    </mx:Panel>

    Nikos,
    When using grouped columns you should change the <mx:columns> to <mx:groupedColumns>, I ran this example in a sandbox app and it works fine.
    EXAMPLE:
    <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{flatData}" width="100%" height="373"
            sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
           <mx:groupedColumns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="customer" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="product" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="revenue" headerText="Bank Ref" width="70" editable="true" wordWrap="true"
                        showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="cost" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:groupedColumns>
        </mx:AdvancedDataGrid>
    HTH,
    Kenny Yates

  • Sometimes the Flex Builder design window crashes

    Sometimes the Flex Builder design window crashes in that when
    you click on components, you don't see the usual outline transform
    box out side the component you clicked on. Also things like the
    toggle button bar doesn't switch the viewstack. I have no errors or
    warnings in the problems windows.
    Any ways round this?

    Actually I found the answer to my question. You can find it
    in my blog.
    programmatic
    skinning in Flex Builder Design view

  • Adobe Flex builder 3 crashes

    Whenever i try to do a simple program, the flex builder 3.0 closes and gives the error as shown in the attached file. Can anybody look into it and suggest me to solve this.

    I would uninstall everything related to Java on your machine, then uninstall and reinstall Flex Builder.
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Video Display Problems with Flex Builder 2

    I am currently trying out the Flex Builder 30-day trial and
    have been having problems running the software.
    System info:
    FB 2.0.1
    Dell Latittude D820 running WinXP
    NVIDIA Quadro NVS 120M Video Card
    When I first installed it, my display turned to garbage and I
    had to reboot my machine to get it to a usable state. Someone
    suggested changing my display properties and see if it helped. When
    I tried 768X1024 with 8-bit color it worked. Once I installed it, I
    changed them back to 1920X1200 32-bit. Everything seemed to work
    fine until I started getting into some more complicated tutorials.
    My display crashed and looked similar to what I saw before. I
    updated to the latest NVIDIA driver from Dell. No help. I then
    tried the Windows Troubleshooting. When I turned my hardware
    acceleration to None, it started working again. There are some
    weird display issues with menu buttons and I can't launch my Nvdia
    software.
    Is there a better solution to this? Has anyone had this
    problem? I'm not so sure I'll purchase the software with this many
    problems.
    Thanks,
    Wendi

    Boys n Girls
    I am Currently restoring my Power Book after a significant meltdown.
    Thanks for posting I too saw the shearing effect but shrugged it off thinking oh well I'll just reboot!
    If you are seeing this Buy a fire wire drive NOW and Back-up.
    I suspect the Video update changed a low level feature in the power management routines and this resulted in my Power book cooking itself.
    I've got a 12mth old Hitachi 7200 PATA drive in my Power Book after the Apple Drive cooked itself soem tim back and I have now got to back-up and restore my whole system. Luckiliy I have plenty of Big fast firewire drives around so I'm imaging the corrupt drive and going to run the Hitachi tool on it via a WINDOZE Thinkpad. Then a combination of clean install of 10.5.x and a migration assisted restore should do it.
    I'm really not very happy though! My Time machine image did not restore and the disk repair did not work. I have a corrupted asl.DB ( the log file for Apple System Logs) and the mac won't boot from its internal drive.
    I'll post the resolution here as it happens I'm at hour Disaster + 24 so I'm really cranky!
    I suggest If you have a G4 Power Book you resist the temptation to install the video update.
    Regards

  • Flex Builder 3, Design window not working

    A few days into a new project, suddenly flex builder 3
    crashed and I can no longer graphically edit my layout. Editing the
    source works, and the changes are reflected in the design window,
    however I cannot make changes while in the design window.
    Help!

    You can try to delete (not contents), then reimport your
    project, or simply reinstall Flex. Takes all of 5 minutes. If that
    still doesn't work, make sure you don't have some component
    covering the others possibly.

  • Flex builder 3 don't show new components

    Hi,
    I've installed flex builder 3 beta 3. The new components such
    as the advanced datagrid don't show in the components window.
    Actually they were showing but for some reasons they are gone now.
    I also have flex builder 2 installed on the same pc, but it
    shouldn't be an issue.
    I've made sure in the preferences that flex builder 3 uses
    the right sdk (3.0 beta 3)
    Can someone help ?
    Thanks

    Yes I was definitely running 3.0. I've solved the problem by
    reinstalling flex 3.
    However sometimes I get a nasty crash when I open a component
    in Design mode and when the Properties window of this component is
    opened. Then Flex closes and I get a popup with error log. Will
    post it next time I see it.
    Overall it seems ok though, I'm already enjoying the advanced
    datagrid :)

  • Flex Builder Beta M4 uninstall failure

    Flex builder beta M4 has expired 53 days earlier than
    promised. But that's little trouble. Awful trouble is that it is
    refusing to uninstall. When I am trying to uninstall, it says this,
    quote:
    quote:
    java.lang.InternalError: jzentry == 0,
    jzfile = 8600112,
    total = 1099,
    name = C:\Program Files\Adobe\Flex Builder 3\Uninstall Adobe
    Flex Builder 3\uninstaller.jar,
    i = 99,
    message = invalid LOC header (bad signature)
    at java.util.zip.ZipFile$3.nextElement(Unknown Source)
    at java.util.zip.ZipFile$3.nextElement(Unknown Source)
    at ZeroGy.d(DashoA8113)
    at ZeroGy.a(DashoA8113)
    at ZeroGy.b(DashoA8113)
    at ZeroGd.g(DashoA8113)
    at ZeroGd.b(DashoA8113)
    at ZeroGd.b(DashoA8113)
    at ZeroGd.b(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.b(DashoA8113)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA8113)
    at com.zerog.ia.installer.Main.main(DashoA8113)
    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 com.zerog.lax.LAX.launch(DashoA8113)
    at com.zerog.lax.LAX.main(DashoA8113)
    Anybody has any idea how to bypass this to get this POS
    (piece of software) out of my system?

    Hi Larry,
    Thank you so much for your reply!
    I am mainly using Flash Builder Beta 2 which like I said does install fine(using the stand alone version). In code mode it does crash sometimes, but is rare, it happens now and then, but what I really want to get working is the design view. i am new to flex, and would really like this to work.
    when I go to the terminal
    java - version
    java version "1.6.0_15"
    Java(TM) SE Runtime Environment (build 1.6.0_15-b03-219)
    Java HotSpot(TM) 64-Bit Server VM (build 14.1-b02-90, mixed mode)
    I did install java 1.5 for CodlFusion 9, turned out that I don't need it, well I think not. I was thinking about re installing Snow Leopard to see if I could get Flex working, but I have not yet done that. I have heard that others have flash builder or flex  working in snow leopard, can you confirm this?
    My laestest error log FlashBuilder beta 2:
    http://hawaiiflash.net/flashBuilder_error.txt
    for Flex 3:
    http://hawaiiflash.net/flex3_error.txt
    also I have http://hawaiiflash.net/Flex3.txt
    now I did hear from somebody that since I have 2 different versions of java this is causing issue with Flex? should I un-install all prior versions of java and just leave the 1.6 version? I am not sure why this would cause flex to crash when in design mode?
    Thank you so much for your help, I would love to get flex working in design mode, either flex 3 or flash builder`-`
    Johnny

  • Flex Builder Won't Launch?

    I recently downloaded the trial for Adobe Flex Builder 4 and when opening the program all i get is a message saying 'An error has occoured, please see log file'. I had the same problem when trying Flex 3.
    Can anyone help? Ive tried everything I can find, ive also tried uninstalling it and re-installing it. I am running Mac OSX 10.6.2

    I've installed Flash Builder 4 RC in my windows XP workstation, but it crashes every time I try to launch the application. I found this error in C:\Documents and Settings\<User>\Adobe Flash Builder 4\.metadata\.log
    !SESSION 2010-03-30 14:14:14.656 -----------------------------------------------
    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
    !ENTRY org.eclipse.equinox.ds 4 0 2010-03-30 14:14:15.453
    !MESSAGE
    !STACK 0
    org.osgi.framework.BundleException: The bundle could not be resolved. Reason: Missing Constraint: Import-Package: org.eclipse.equinox.internal.util.event; version="1.0.0"
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.getResolverError(AbstractBundle.j ava:1313)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.getResolutionFailureException(Abs tractBundle.java:1297)
    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:309)
    at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:370)
    at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1068)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManage r.java:557)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java :464)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelMana ger.java:248)
    at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManage r.java:445)
    at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)
    at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:337)
    Any idea, how to fix this?

  • Flex Builder vs Eclipse Plugin

    Hi All,
    New to Flex and am currently working on PHP and java projects
    using Eclipse. I would love to be able to utilize one IDE for all
    my projects but don't want to sacrifice solid Flex support (mxml,
    design view ect...).
    How does the Eclipse plug-in compare with Flex Builder (what
    do I loose if I use the Eclipse plug-in)?
    Any comments much appreciated.
    Cheers,
    Greg

    Flex bulder seems to be just an eclipse installation with the
    plugin already there for you, so you shouldnt loose anything by
    using just the plugin
    However i did find when using using the flex plugin in
    combination with all the other development plugins i had going it
    made eclipse grind to a crashing halt every 20mins. Increasing the
    eclipse jvm memory limits helped, but didnt fully solve my crashing
    problem
    If you want to incorporate all your development into one
    eclipse then increase the eclipse jvm memory and give it a try, if
    it is going too slow then use the stand alone builder

  • Flex installer crashes

    First of all, I hope this is the right place to ask my
    question.
    I've downloaded Flex Builder 2, the trial. But everytime I
    try to install this app, my pc crashes, it gives me a bluescreen.
    The strange thing is that a week ago nothing went wrong and
    the installation went fine. But I installed it at a wrong place so
    I uninstalled it...
    I think there is a conflict between windows and the
    installer.
    Does someone recognize this situation?
    Thanks a lot and sorry for my bad English.

    Hi there,
    I have faced a similar issue before. I had an old machine
    with only 512MB RAM. At that time, flex 2 builder used to crash
    frequently. Carsh used to happen usually when I tried to create a
    new project or start flex2 builder.
    What I tried was to remove the flex builder 2 folder in my
    documents and keep it safe in some other drive . Now I tried to
    start it again and it worked. I feel its coz of low virtual memory
    , that this problem has occured. May be or may not be but it was a
    trial and error method. that I used.

  • PDF Portfolio SDK setup - Navigator project wizard in Flex Builder 4.6 does not show

    Hello, Experts
    I am trying to build PDF Custom Navigator using Adobe PDF Portfolio SDK; however, for some reason, when performing step 3 of installation, Navigator project wizard in Flex Builder  (  4.6 ) would not show;
    The plugins have been extracted to:
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse\plugins
    The NavigatorSupport folder has been extracted to:
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse and ( just in case ) to
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\
    any advice would be greatly appreciated
    Best Regards,
    -Alex

    as per Joel's recommendation, used 4.5 instead - that worked just fine

Maybe you are looking for