Update to Flash Builder?

I have asked in all Evangelist blogs but nobody cared to answer. It is frustrating to have paid for software and to be completely ignored. It is unbelievable that, to be able to develop for the new resolutions of the iPad, or even to install the new version of Air, we have to perform all sort of tricks. At least, I would like an honest answer, of the type: We will never update it. But to be completely ignored? So much for the blog they update less than once a month, or for the revolutionary "Welcome" tab in FB, which was going to be so useful and just displays stories that are months old.

Hi Bsoule,
That is definitely a little odd that Adobe Application Manager doesn't show up on the start menu for you. It does for me on my Windows 7 64-bit system. Did you check the full list under All Programs?
Are you attempting to install Flash Builder 4.7 through Adobe Application Manager (and not downloading Flash Builder off of the Adobe website)? Converting a Flash Builder 4.7 trial will not work.
You might try installing Adobe Application Manager from here:
Windows - http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
-Dave

Similar Messages

  • Air Auto Update Error -- Flash Builder Burrito.

    This is my first attempt at this, so I may be missing something simple.
    I'm not having any luck getting an Air app to automatically update.
    If I manually go to  http://localhost/air1/air1.air and redownload the file I will get a popup that asks if I want to update the app, but when I say ok I get this error.
    "There was an error checking for updates. Error# 16816"
    I haven't found a reason yet,
    Any ideas?
    update.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
      <version>2.0</version>
      <url>http://localhost/air1/air1.air</url>
      <description>1.0 - First version</description>
    </update>
    file -- air1.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx"
                           applicationComplete="init()">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import air.update.events.UpdateEvent;
                import air.update.ApplicationUpdaterUI;
                import mx.controls.Alert;
                protected var appUpdater:ApplicationUpdaterUI = new ApplicationUpdaterUI(); // Used for auto-update
                protected function init():void
                    // Check for update
                    this.checkUpdate();
                    Alert.show("checking update");
                // This function is triggered when the application finished loading.
                // Initialize appUpdater and set some properties
                protected function checkUpdate():void
                    // set the URL for the update.xml file
                    appUpdater.updateURL = "http://localhost/air1/update.xml";
                    appUpdater.addEventListener(UpdateEvent.INITIALIZED, onUpdate);
                    appUpdater.addEventListener(ErrorEvent.ERROR, onUpdaterError);
                    // Hide the dialog asking for permission for checking for a new update.
                    // If you want to see it just leave the default value (or set true).
                    appUpdater.isCheckForUpdateVisible = true;
                    appUpdater.initialize();
                // Handler function triggered by the ApplicationUpdater.initialize.
                // The updater was initialized and it is ready to take commands.
                protected function onUpdate(event:UpdateEvent):void
                    // start the process of checking for a new update and to install
                    appUpdater.checkNow();
                // Handler function for error events triggered by the ApplicationUpdater.initialize
                protected function onUpdaterError(event:ErrorEvent):void
                    Alert.show(event.toString());
            ]]>
        </fx:Script>
        <s:Button x="47" y="55" label="Button"/>
        <mx:ColorPicker x="61" y="119"/>
        <s:ComboBox x="77" y="216"/>
        <s:ComboBox x="77" y="185"/>
        <s:ComboBox x="77" y="154"/>
    </s:WindowedApplication>
    file  -- air1-app.xml
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
    <!-- Adobe AIR Application Descriptor File Template.
        Specifies parameters for identifying, installing, and launching AIR applications.
        xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.5
                The last segment of the namespace specifies the version
                of the AIR runtime required for this application to run.
        minimumPatchLevel - The minimum patch level of the AIR runtime required to run
                the application. Optional.
    -->
        <!-- A universally unique application identifier. Must be unique across all AIR applications.
        Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
        <id>air1</id>
        <!-- Used as the filename for the application. Required. -->
        <filename>air1</filename>
        <!-- The name that is displayed in the AIR application installer.
        May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <name>air1</name>
        <!-- A string value of the format <0-999>.<0-999>.<0-999> that represents application version which can be used to check for application upgrade.
        Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
        An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5 . -->
        <versionNumber>2.0.0</versionNumber>
        <!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users. Optional. -->
        <!-- <versionLabel></versionLabel> -->
        <!-- Description, displayed in the AIR application installer.
        May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <!-- <description></description> -->
        <!-- Copyright information. Optional -->
        <!-- <copyright></copyright> -->
        <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
        <!-- <publisherID></publisherID> -->
        <!-- Settings for the application's initial window. Required. -->
        <initialWindow>
            <!-- The main SWF or HTML file of the application. Required. -->
            <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
            <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
            <!-- The title of the main window. Optional. -->
            <!-- <title></title> -->
            <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
            <!-- <systemChrome></systemChrome> -->
            <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
            <!-- <transparent></transparent> -->
            <!-- Whether the window is initially visible. Optional. Default false. -->
            <!-- <visible></visible> -->
            <!-- Whether the user can minimize the window. Optional. Default true. -->
            <!-- <minimizable></minimizable> -->
            <!-- Whether the user can maximize the window. Optional. Default true. -->
            <!-- <maximizable></maximizable> -->
            <!-- Whether the user can resize the window. Optional. Default true. -->
            <!-- <resizable></resizable> -->
            <!-- The window's initial width in pixels. Optional. -->
            <!-- <width></width> -->
            <!-- The window's initial height in pixels. Optional. -->
            <!-- <height></height> -->
            <!-- The window's initial x position. Optional. -->
            <!-- <x></x> -->
            <!-- The window's initial y position. Optional. -->
            <!-- <y></y> -->
            <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
            <!-- <minSize></minSize> -->
            <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
            <!-- <maxSize></maxSize> -->
        <autoOrients>false</autoOrients>
        <fullScreen>false</fullScreen>
        <visible>false</visible>
      </initialWindow>
        <!-- We recommend omitting the supportedProfiles element, -->
        <!-- which in turn permits your application to be deployed to all -->
        <!-- devices supported by AIR. If you wish to restrict deployment -->
        <!-- (i.e., to only mobile devices) then add this element and list -->
        <!-- only the profiles which your application does support. -->
        <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
        <!-- The subpath of the standard default installation location to use. Optional. -->
        <!-- <installFolder></installFolder> -->
        <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
        <!-- <programMenuFolder></programMenuFolder> -->
        <!-- The icon the system uses for the application. For at least one resolution,
        specify the path to a PNG file included in the AIR package. Optional. -->
        <!-- <icon>
            <image16x16></image16x16>
            <image32x32></image32x32>
            <image36x36></image36x36>
            <image48x48></image48x48>
            <image72x72></image72x72>
            <image128x128></image128x128>
        </icon> -->
        <!-- Whether the application handles the update when a user double-clicks an update version
        of the AIR file (true), or the default AIR application installer handles the update (false).
        Optional. Default false. -->
        <!-- <customUpdateUI></customUpdateUI> -->
        <!-- Whether the application can be launched when the user clicks a link in a web browser.
        Optional. Default false. -->
        <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
        <!-- Listing of file types for which the application can register. Optional. -->
        <!-- <fileTypes> -->
            <!-- Defines one file type. Optional. -->
            <!-- <fileType> -->
                <!-- The name that the system displays for the registered file type. Required. -->
                <!-- <name></name> -->
                <!-- The extension to register. Required. -->
                <!-- <extension></extension> -->
                <!-- The description of the file type. Optional. -->
                <!-- <description></description> -->
                <!-- The MIME content type. -->
                <!-- <contentType></contentType> -->
                <!-- The icon to display for the file type. Optional. -->
                <!-- <icon>
                    <image16x16></image16x16>
                    <image32x32></image32x32>
                    <image48x48></image48x48>
                    <image128x128></image128x128>
                </icon> -->
            <!-- </fileType> -->
        <!-- </fileTypes> -->
        <!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
        <!--<android>
            <manifestAdditions>
            <![CDATA[
                <manifest android:installLocation="auto">
                    <uses-permission android:name="android.permission.INTERNET"/>
                    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
                    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
                    <uses-configuration android:reqFiveWayNav="true"/>
                    <supports-screens android:normalScreens="true"/>
                    <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
                    <application android:enabled="true">
                        <activity android:excludeFromRecents="false">
                            <intent-filter>
                                <action android:name="android.intent.action.MAIN"/>
                                <category android:name="android.intent.category.LAUNCHER"/>
                            </intent-filter>
                        </activity>
                    </application>
                </manifest>
            ]]>
            </manifestAdditions>
        </android> -->
        <!-- End of the schema for adding the android specific tags in AndroidManifest.xml file -->
    </application>

    This appears to be a Flex question. Please try posting to the Flex forums here http://forums.adobe.com/community/flex/flex_general_discussion for better response.

  • Updating to Flash Builder 4.6 plugin

    hi,
    I have FB 4.5(.1) as an Eclipse plugin. Now I want to upfate/upgrade to the 4.6 plugin.
    I read http://kb2.adobe.com/cps/921/cpsid_92180.html
    but it confuses me. So before I remove anything:
    I this a free update?
    If so, will the update recognize my serial key when I first uninstall 4.5?
    How about all the SDK's in my 4.5 sdks folder? Will I loose them?
    And hence, should I overlay again the AIR SDK after updating?
    thanks,
    Jeff.

    Thanks. It took me quite a while to get 4.6 installed.
    I uninstalled 4.5(.1) but got an error anyway when initializing the installation of 4.6
    Then I tried uninstalling Adobe Air from the utilities directory under Application as described in this thread
    http://forums.adobe.com/message/4088712
    That didn't work either.
    Finally I uninstalled Flash CS5 as well as my complete CS4 suite. I am not sure if only uninstallng Flash CS5 would have been sufficient, maybe.
    After this I sucesfully installed Flash Builder 4.6, and then re-installed the CS4 suite and Flash CS5.
    The only problem left is that when I create a new project and compile, I get a java.lang.NullPointerException
    but I will post that in a new thread...

  • Problem with registrating serilanumber after updating from flash builder 4.5 to 4.6

    Had an upgraded suite Master Collection with 4.5 and unninstallet this for then to install a clean 4.6
    Serialnumber for MasterCollection don't work, and I'm stuck with a trial version. The update should be free.
    I have registerd tha master Collection suite on AdobeID, but it don't take when i try to register Flash Builder 4.6
    Any suggestions?

    Hi MoTor,
    You would need to uninstall existing Flash Builder 4.5 on your machine and then install Flash Builder 4.6 in trial mode.
    During installation, it doesn't accept the serial number of Master Collection. So, just install it in trial mode and make sure that the you select the same language as that of your Master Collection, during FB installation.
    Now launch FB and it would then accept Master Collection CS 5.5 serial number.
    http://kb2.adobe.com/cps/924/cpsid_92402.html is the related tech note.
    Hope this helps.
    Regards,
    Anand

  • Updated to Flash Builder 4.5, getting error about unknown token

    I justed updated my project to Flash Builder 4.5 and now I am getting a problem about compiler.services containing an unknown token. I have this command line argument for the compiler:
    -services "${MY_HOME}/somedirectory/services-config.xml"
    I have defined "MY_HOME" in the Linked Resources section of the project but it's still throwing the error "configuration variable 'compiler.services' value contains unknown token 'MY_HOME'"
    Any suggestions? Thanks

    There's no spark HDividedBox yet. Use the mx one.
    Instead of mx:Tile, use a s:Group with s:layout set to TileLayout:
    <s:Group>
    <s:layout>
    <s:TileLayout />
    </s:layout>
    <!-- other children here -->
    </s:Group>

  • Unable to update to Flash Builder 4.7

    Is Flash Builder 4.7 available to Creative Cloud subscibers? When I go download the application the Adobe Application Manager starts, then I get a brief message:
    We've encountered the following issues:
    Other instances of Adobe Application Manager are currently running which must be closed before installing this product. Pleas close or wait for them to complete.
    The message goes away, then the AAM update stalls. I see no way to close or stop any AAM that is currently running.
    I'm currently a CC subscriber running Windows 7 64-bit.

    Hi Bsoule,
    That is definitely a little odd that Adobe Application Manager doesn't show up on the start menu for you. It does for me on my Windows 7 64-bit system. Did you check the full list under All Programs?
    Are you attempting to install Flash Builder 4.7 through Adobe Application Manager (and not downloading Flash Builder off of the Adobe website)? Converting a Flash Builder 4.7 trial will not work.
    You might try installing Adobe Application Manager from here:
    Windows - http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    -Dave

  • How to update Flash Builder 4.6 Premium from Master Collection CS6

    I want to update from Flash Builder 4.6 Premium to Flash Builder 4.7 Premium. But I have no seperate Serial number for this product. Only for the complete Master Collection CS6.

    There are no updates for Beta 2.
    You're probably seeing one of two issues with the latest nightly build:
    1) playerglobal.swc change http://forums.adobe.com/thread/559312?tstart=0
    2) Namespace change from xmlns:mx="library://ns.adobe.com/flex/halo" to xmlns:mx="library://ns.adobe.com/flex/mx"
    Jason San Jose
    Quality Engineer, Flash Builder

  • Flash Builder Mobile Target Updates Coming?

    Any word on the update for flash builder that will give the mobile options for Blackberry OS and iOS as target platforms in addition to the Google Android?

    Great. I appreciate the info. I had just been looking under Flex Mobile. Although, under ActionScript Mobile AIR I only see Apple iOS and Google Android as options. Is there an extension or something else to gain access for the playbook?

  • Flash Builder 4.0.0 doesn't find updates

    Hello everybody,
    As the tile reads, I can't update my Flash Builder installation (4.0.0), nor the Flex SDK version (4.0).
    My system is Mac Os X 10.6.4.
    I installed Flash Builder as part of the CS5 Web Premium package I bought in September 2010, and I have started studying Flex and working with FB this week. This might explain why I never noticed it hadn't updated.
    This morning I noticed the existence of the 4.1 SDK version and the related FB 4.0.1 update. When I try to use the automatic FB function "Search for Flash Builder Updates...", however, the Adobe Application Manager tells me that "Your applications are up to date". :-S
    I found few (really few) articles online about some sort of problem with the first release of the 4.0.1 update, but I read that I should at least see the 4.1 Flex SDK in the SDKs folder. I don't.
    Now.... how can I solve this?
    I guess I could trash the whole Flash Builder folder and manually reinstall it, but as I said it is part of the CS5 installation, and I'm afraid of messing things up even more.
    Can anyone help me, please?
    Cheers

    Thank you very much David.
    After I posted the question above I downloaded the 4.1 SDK and "imported" it into Flash Builder. It seems to work: it builds and run in both debug and release modes, so I guess it's fine.
    At first, I wasn't sure I could do this, because in the 4.0.1 release notes I read that the support for Flex SDK 4.1 was something new and just added... and therefore couldn't be used with the 4.0.0 version of FB I am using. It seems that this is not the case....
    Besides, I read somewhere that some people did update, but the version number of their Flash Builder installations remained stuck at 4.0.0. Could this have happened to me too? (as I said, I become interested in Flex this week, so I could have updated it in the past months without noticing)
    In your blog post you reference this article, where there is a link to an updater page. There I see a sort of "manual" updater. It doesn't say if I have to uninstall the current version of Flash Builder to use it, though. :-(
    Finally, about Burrito.... isn't it a beta? Is it worth the risk (of crashes, data loss, etc)?
    Cheers,
    wW

  • Output folder in Flash Builder 4.6 refuses to be anything but relative

    I just updated from Flash Builder 4.5 to 4.6. Things seemed to be going ok in terms of importing all my projects etc. (why can't there be a simple upgrade process rather than a complete uninstall/reinstall process?)
    But then I got to setting the Output Folder within the Flex Build Path section of the properties of my project.
    Now, as our dev environments we run glassfish servers locally on our testing machines and build our apps directly into them so our testing process is very quick. This was working fine in Flash Builder 4.5, I point my app's output folder to a location of the form:
    C:\Users\myUserName\glassfish3\glassfish\domains\domain1\eclipseApps\appname
    And that works fine, set by pasting in from an explorer window or Browsing there via the Browse button next to the field.
    Now when I try to do this within Flash Builder 4.6 I get nothing at all appearing if I use the browse button. No error, nothing saying it failed, just an empty field. If I try to paste in anything I get an error from Flash Builder saying '"Paste" did not complete normally."
    If I try to just type in the path it fails, it strips the leading C:\ and turns it into a relative path, which is completely useless.
    This is getting really annoying!
    Log file output after I tries to browse to the folder:
    !ENTRY org.eclipse.ui 4 0 2012-02-07 14:54:00.474
    !MESSAGE Unhandled event loop exception
    !STACK 0
    java.lang.NullPointerException
        at com.adobe.flashbuilder.launching.multiplatform.contributor.MultiPlatformDebugUtilLocalePa thVariable.resolvePath(MultiPlatformDebugUtilLocalePathVariable.java:68)
        at com.adobe.flexbuilder.project.PathVariableResolver.wrapPath(PathVariableResolver.java:198 )
        at com.adobe.flexbuilder.project.PathVariableResolver.makePathVariableRelative(PathVariableR esolver.java:283)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.makeRelativeOutpu tPath(AbstractBuildPathsPropertiesPane.java:946)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.makeRelativeOutpu tPath(AbstractBuildPathsPropertiesPane.java:931)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.browseForOutputFo lder(AbstractBuildPathsPropertiesPane.java:910)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane$12.widgetSelected (AbstractBuildPathsPropertiesPane.java:805)
        at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
        at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
        at org.eclipse.jface.window.Window.open(Window.java:801)
        at com.adobe.flexbuilder.editors.derived.ui.navigator.FlexPackageExplorerPropertyDialogActio n.run(FlexPackageExplorerPropertyDialogAction.java:41)
        at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
        at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:584)
        at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
        at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :411)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
        at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660)
        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)

    me too
    !ENTRY org.eclipse.jface 4 0 2012-05-18 10:40:39.212
    !MESSAGE java.lang.NullPointerException
    !STACK 0
    java.lang.NullPointerException
              at com.adobe.flashbuilder.launching.multiplatform.contributor.MultiPlatformDebugUtilLocalePa thVariable.resolvePath(MultiPlatformDebugUtilLocalePathVariable.java:68)
              at com.adobe.flexbuilder.project.PathVariableResolver.wrapPath(PathVariableResolver.java:198 )
              at com.adobe.flexbuilder.project.PathVariableResolver.makePathVariableRelative(PathVariableR esolver.java:283)
              at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.makeRelativeOutpu tPath(AbstractBuildPathsPropertiesPane.java:946)
              at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.updateOutputFolde r(AbstractBuildPathsPropertiesPane.java:1218)
              at com.adobe.flexbuilder.project.ui.properties.BuildPathsPropertyPage.applyProjectSettings(B uildPathsPropertyPage.java:444)
              at com.adobe.flexbuilder.project.ui.properties.AbstractFlexProjectPropertyPage.performOk(Abs tractFlexProjectPropertyPage.java:117)
              at com.adobe.flexbuilder.project.ui.properties.BuildPathsPropertyPage.performOk(BuildPathsPr opertyPage.java:586)
              at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:964)
              at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
              at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49)
              at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175)
              at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:944)
              at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDial og.java:447)
              at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:233)
              at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:624)
              at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
              at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
              at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
              at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
              at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
              at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
              at org.eclipse.jface.window.Window.open(Window.java:801)
              at com.adobe.flexbuilder.editors.derived.ui.navigator.FlexPackageExplorerPropertyDialogActio n.run(FlexPackageExplorerPropertyDialogAction.java:41)
              at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
              at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:584)
              at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
              at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :411)
              at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
              at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
              at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
              at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
              at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696)
              at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660)
              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)

  • How to download Adobe Flash Builder 4.5

    Hi,
    I have a question. I have license for Adobe Flash Builder 4.5 but I can't find this product in Adobe web page. I find only update for Flash Builder 4.5 for PHP.
    If you know answer, please, help me.
    Best regards
    Janusz

    Akamai download manager is a tool which speed up the downloads. You can download FB through Akamai (default download - it ask you install if not installed alredy) or directly.
    direct link is available as File 1 of 1 on the small popup window that was opened when you click download link. i have seen that directlink is not displayed for some users for some reason.
    if you dont see the direct link just install through Akamai download manager and dont close that small window it's gonna start the download of Flash Builde_4_6.exe automatically 
    if the download doesnt start Just try downloading from the start again. still you see the problem try different browser. For saved file location, you can serch the file with filename on your machine.
    Fahad
    Adobe Support

  • Flash Builder 4.7 crashes on start up constantly. Mac OSX 10.9

    I am having many issues using Flash Builder at the moment. I am using Flash Builder 4.7 on Mac OSX 10.9 (Mavericks). My Java version is Version 7 update 51. The JRE is 1.7
    The first problem is that the program has begun to crash on start up. The workspace opens for a second or two and then crashes with no error or log. This is now happening constantly.
    On the occasions when it does start up within around 5 minutes I receive an 'Unexpected character. " is not allowed here'. There are no characters at all at the point the error suggests.
    The Problems tab says that the unexpected character is on the last line, there is only a } and then nothing following. It doesn't matter what code I am working on, this error happens on all of them. It also gives multiple sets of these errors. On one occasion there were 169 errors relating to the unexpected character.
    With these errors, Flash Builder is currently unusable. I would appreciate any assistance that can be given.
    I noticed on the system requirements that OSX Mavericks is not listed, does anyone know if there will be an update to Flash Builder soon?
    Regards
    Richard

    Flash Builder 4.7 on OSX requires Java version 1.6. Mavericks comes with Java version 1.7, so you'll need to install the older version.
    You may also want to bump the specs in the "Adobe FlashBuilder 4.7.ini" file.
    More information in this thread.
    http://forum.starling-framework.org/topic/flash-builder-47-crashes-on-mavericks

  • Can't Upgrade To Flash Builder 4.6 Standard from 4.5.1 Standard

    A while ago, I bought Adobe CS5 Web Premium (with educational licensing). Since then, Adobe flash builder has been updated to version 4.6, which contains features that I wish to use - mobile developement. However, I cannot seem to find any way to upgrade my current Flash Builder 4.5 Standard to Flash Builder 4.6 Standard. I have found a download which installs Flash Builder 4.6 Premium, but this does not accept my license key (which seems normal, since I do not have a 4.5 Premium license). I cannot, however find any way of updating to 4.6 Standard. There is no "try" option for 4.6 Standard, though on the product page, it claims that it comes with a complimentary upgrade to 4.6 Standard. Does anyone have any clues on how to upgrade Flash Builder 4.5 Standard to Flash Builder 4.6 Standard?

    pythoner66
    As per the user agreement, I installed Creative Suite (CS) Web Premium 5.5 on both a desktop and a laptop. On the desktop (which was the first machine I tried to update) I went threw all the steps listed in my previous post before I got it to work. Once I got it working on my desktop I figured out that I could simplify the process for the laptop update. Here's what I did...
    1) Deactivated CS 5.5 by going into Flash Builder clicking Help > Deactivate Flash Builder...and clicking "Deactivate Permanently" (which deactivated the entire suite)
    2) Uninstalled only Flash Builder 4.5 and the iOS Component through the Control Panel (I'm sure you know how to do but just in case... go to Control Panel > Programs and Features (terminology may vary based on your OS) and click on your CS and click Uninstall. This will launch the Adobe uninstaller. From there deselect everything and only select (check) Flash Builder 4.5 and the iOS Component and then uninstall them - uninstalling the iOS Component might not be necessary, but I did it anyway)
    3) Restarted after those uninstalled
    4) Launched Photoshop and entered my CS Serial Number (you should be able to launch any CS program thats still installed to do this)
    5) Once it opened, closed it
    6) Installed Flash Builder 4.6 in Trial Mode making sure to select the same language used when CS was installed (that's IMPORTANT)
    7) Launched Flash Builder 4.6 in 60-Day (or however many days it was) Trail Mode
    8) Once it opened, closed it
    9) Launched Flash Builder 4.6 again, but this time I entered the Serial Number from my CS (at that point it accepted the SN and opened like normal and has everytime since)
    10) I then installed my iOS Component from my original CS
    That's it.
    If you aren't having luck with the steps I posted in my earlier replies, you might want to try the steps I just mentioned. Start by installing your entire CS again - making special note of the language you select. Once installed and SN entered and you're sure your programs are up and running, the steps mentioned here worked for me. They're also less time consuming than the steps I entered in my previous reply.
    The only issue I can see would be trying to update from Flash Builder 4.5 Standard to Flash Builder 4.6 Premium. But Jeff didn't say that was a problem, so you should be ok there.
    Hope these steps help.
    Good luck.

  • Flash Builder 4.7 Debug Configuration Bug

    I just updated to Flash Builder 4.7 today and ran into an annoying bug that did not exist with 4.6. I always have many debug configurations when developing mobile apps, ie. iPhone, iPad, iOS on device. When I tried to create these configurations this morning, I noticed that it won't let me have multiple AIR simulator configurations for different devices. When I change the device on one, it changes the device on the other, making both of them behave exactly the same. Is anyone else experiencing this issue? Is there any way around it?

    There is a workaround to this issue. To understand the workaround, it'll be good to understand what's going on with the bug a little better.
    So the issue with this bug isn't with loading or saving configurations, but rather it is with switching between them. It seems that when switching between two of the same thing (for instance, two Mobile Application configurations) it doesn't properly clear the data out of the form, and since the form isn't cleared out it doesn't properly load the new information in and as such the old information carries over. And since the save code still works fine, when you exit it will save the new, messed up configuration over the old, good configuration.
    So, technically, it's not the same configuration showing up twice, but rather two separate configurations that are configured the same because the form didn't clear out when switching between the two configurations.
    So now that we have a clearer understanding of the bug, here's the workaround: If you click on something that uses a different form, it will destroy the form. So, for instance, if you have both an iPad Simulator and an iPhone 4 Simulator, and you've got the iPad Simulator selected and you need to select the iPhone 4 Simulator, simply first click on Mobile Application, and then click on your iPhone 4 Simulator. When you do this everything works fine.
    Additionally, if you do switch directly between the two, know that the configuration that you just left is fine. It's only the one that you're currently looking at that is messed up, and all that you have to do is fix the one that you're looking at.
    So that at least let's you work around the issue. It's also convenient to just set up enough different configurations to where you never really need to access the Debug Configurations menu. For instance, I have have two configurations set up for each device or simulator that I have set up, one that has the 'Clear application data on each launch' checkbox checked, and one that does not. In addition to this, I have four simulators (iPad, iPhone, Android Phone, Android Tablet) and one 'On device' (Android) setup. Combining these gives me ten different configurations that covers majority of what I do regularly and makes it so that I don't need to access the Debug Configurations menu all that often.
    At this point with this many configurations it is also useful to organize all of these configurations in the debug dropdown menu by using the Organize Favorites menu that can be selected from the same dropdown menu.
    So, that makes for a very long answer, but hopefully it will help you out and help out a few other people that are also running into the same issue. It doesn't change the fact that there's a really horrible bug and that Adobe really needs to get on fixing it, but this can at least make it so that it can be lived with.

  • Purchasing Flash Builder Burrito

    Hi,
    Sorry if this is the wrong forum, but not sure where to ask. Was just wondering if Flash Builder Burrito will be released as an update for Flash Builder or if it will be a new version to purchase. I plan on purchasing Flash Builder, but wasn't sure if i should wait until Burrito is released or not.
    Thanks

    Hi,
    We have not announced pricing or availability as of yet for the upcoming version of Flash Builder.
    As the upcoming release contains new features it will be a paid upgrade from the current Flash Builder 4 release.
    Thanks,
    Andrew Shorten
    Group Product Manager, Developer Tools, Adobe

Maybe you are looking for