By pushing the key F1 in Flash Builder 4 brings no help?

For some reason, I can't get help when in Flash Builder 4 as I used to in Flex Builder 3.

The only way to find the help so far is to use this local search system and type the topic I want to get into it, it will then load a Web page that takes forever. It is quite counter-productive for me: slow and I have to type rather than hitting F1 on my source code.

How to set up Flash Builder 4 to bring me help as it used to be in Flex Builder 3?

Thank you

Hmmm. It's confusing. Can you please try something other than fx:Declarations? (Technically, statements is not a class, so it is not in the reference.)

If it still does not work, can you please post your system specs (standalone/plugin, win/mac, etc.) or create a bug of Flex Documentation to http://bugs.adobe.com ?

Thank you

-randy

Tags: Flex

Similar Questions

  • Push the Plugin problem while that build the app

    I get the following error when I build the app for ios. What is surprising is that the android app sits perfectly with the same configuration.

    "Error - the following 3rd-party plugin causes the generation fails and may need to be updated to a newer version: com.phonegap.plugins.PushPlugin.

    Help!

    Hi shauryag26424738, this plugin is now obsolete. Try to use the last being: phonegap-plugin-push.

    Include in your file as config.xml:

  • How can I get the download link for flash builder 4?

    How can I download link for "flash builder 4" when he bought off-line (CD)?

    You can find the download of the Flash Builder 4 trial at the page linked below and you can use your serial number of the original purchase to activate it:

    http://prodesigntools.com/all-Adobe-CS5-direct-download-links.html

    Don't forget to follow the very important section

  • How to upgrade the AIR included in Flash Builder SDK?

    Thus, Flash Builder SDK comes with a version of the AIR, that it uses when you compress a mobile app for iOS (Android mobile applications are managed with the AIR which is downloaded on the market)...  On my Windows machine, this copy "integrated" air is located in "C:\Program Files (x 86) \Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\runtimes\ ' if I am not mistaken.

    I am sure that it will not automatically refresh itself - and I am equally sure that it's a fairly old air version, because it is the one that came with the 4.6 SDK that was released 8 months ago...

    So, how to upgrade this version of AIR that is built into the software Flash Builder SDK?

    Thank you

    Laurence MacNeill

    Mableton, Georgia, USA.

    Oops - nevermind...  Didn't know that there was a distinct AIR SDK that you could download - I thought that it was integrated into the Flex SDK kit, and since it was not a new Flex SDK from 4.6, I thought I should enter somehow parts and parts of AIR to update manually...

    But grabbing the AIR SDK to http://www.adobe.com/devnet/air/air-sdk-download.html went around...  Just that unzipped to the folder sdks\4.6.0 and was made...  Sweet...

    L.

  • Flash Builder crashes constantly. Help!

    I'm running Flash Builder CS5 in a box of 64 bit Windows 7 HP and it crashes constantly during the strike, selection of text, collage and other normal actions in the editor. He freezes for 5 to 10 minutes and then returns to the normal work again. However, sometimes not beyond a single character typed and it hangs again! It is obtained if frustrating, that I wonder how am I ever going to complete my AIR application. Some days, he's suspended for longer it works and so I get practically anything fact.

    Anyone has an idea why it may crash all the time? I'm not under all versions of Eclipse or Aptana on this machine.

    Thank you!

    PK

    My first try would be to stop the automatic generation process. You can do this in the Project menu. Then when you run it builds, or you can just press command-B to build.

    If this isn't the case, then it is maybe something wrong with your instalation and/or plugins. Or just something wrong with your overall computer. Try reinstalling Flash Builder. If all else fails at this point, try to set up the environment on another computer just to see what happens.

    Also, try to think how do you have this problem start and address this problem.

  • Flash Builder 4.5 newbie help

    Hey guys,.

    Thank you for taking the time to read my post and help out me.  I am currently just learning actionscript 3 and I have been using flash professional in order to program most of my first flash programs, I want to take one of my ideas and create to run on blackberry playbook, then I downloaded flash builder 4.5 and have set up my whole environment.

    Im running into that problem is with flash professional imaging and video clips was as simple as adding objects to the library and then set up the link, so it could be used by your AS3 code, frames and layers were added through the... well with flash builder user interface, I have no idea of how to do because there is no GUI I wonder if someone could explain how to create and link to video clips and work with managers using the flash builder 4.5... I know this is probably a stupid question, but I'm not just

    Thanks in advanced for any help

    Hi nateatkins, Flash Builder is a software to develop flex and as3 applications. Do things with Flash Builder, you must code in .as and .mxml files. Flash you gives the opportunity to the graphic element, add them to a library, animate using the software interface and controls and publish them right out of the box, but this isn't the purpose of Flash Builder. You can use Flash to make a library of graphic elements, configure these elements to be available as classes in Actionscript, then export your library as a CFC to use them in a draft code of Flash Builder. Or you can choose to encode your actionscript code using external .as files in Flash and flash builder allows you to write them. Flash Builder is intended to make life easier when you are working on the code project using as3 object oriented and let encode you faster. Flash has its limits to help you when it's time to code, Flash Builder is there to improve your workflow development if necessary.

  • Add more music and change the key track on flash and AS3

    I want to add more music that changes automatically changes to this code as well to create a button that manually changes the music forward and backward. How can I do?

    import flash.events.MouseEvent;

    var soundReq:URLRequest = new URLRequest ("Pehla Nasha_0.mp3");
    var sound: Sound = new Sound();
    var soundControl:SoundChannel = new SoundChannel();
    var volumeControl:SoundTransform = new SoundTransform();
    var resumeTime:Number = 0;
    Sound.load() (soundReq);
    sound.addEventListener (Event.COMPLETE, onComplete);

    playSound (null);

    up_btn.addEventListener (MouseEvent.CLICK, increaseVolume);
    down_btn.addEventListener (MouseEvent.CLICK, decreaseVolume);
    function onComplete(event:Event):void
    {
    play_btn.addEventListener (MouseEvent.CLICK, playSound);
    stop_btn.addEventListener (MouseEvent.CLICK, stopSound);

    }
    function playSound(event:MouseEvent):void
    {
    soundControl = sound.play (resumeTime);
    pause_btn. Visible = true;
    pause_btn.addEventListener (MouseEvent.CLICK, pauseSound);
    play_btn. Visible = false;
    play_btn. RemoveEventListener (MouseEvent.CLICK, playSound);
    }
    function pauseSound(event:MouseEvent):void
    {
    resumeTime = soundControl.position;
    soundControl.stop ();
    play_btn. Visible = true;
    play_btn.addEventListener (MouseEvent.CLICK, playSound);
    pause_btn. Visible = false;
    pause_btn. RemoveEventListener (MouseEvent.CLICK, pauseSound);
    }
    function stopSound(event:MouseEvent):void
    {
    soundControl.stop ();
    play_btn. Visible = true;
    play_btn.addEventListener (MouseEvent.CLICK, playSound);
    pause_btn. Visible = false;
    pause_btn. RemoveEventListener (MouseEvent.CLICK, pauseSound);
    }
    function increaseVolume(event:MouseEvent):void
    {
    volumeControl.volume = 1;
    soundControl.soundTransform = volumeControl;
    }
    function decreaseVolume(event:MouseEvent):void
    {
    volumeControl.volume = 0.1;
    soundControl.soundTransform = volumeControl;
    }
    pause_btn. Visible = false;

    Copy and paste the code that I have proposed.  change nothing except:

    newsound_btn

    to match your button that you want to use to play a new sound.

    p.s. Please check the useful/correct.

  • Rename the Package by default - Flash Builder

    Hey,.

    I could be missing something, but I can't rename the default package in the project to something. I've split the code into a few packets and they import and all works fine, but I want to move the main code in a package (not named default package ). How can I do?

    Thanks in advance.

    Hey rever.

    Unfortunately in AS3 your main programming application .as file must be in the default package (in Canada). It is a requirement. everything else can reside in any package of void. hope that clears that up. Good luck!

  • 4.7 Flash builder 4.5 Flash Builder upgrade problem (key is not valid)

    Hello

    We (the company) buy Adobe products now more than 6-7 years. We bought the Flash builder 4.5 premium and premium Flash builder 4.5 for volume PHP license. Now flash builder 4.7 should be complementary upgrade for us. But when we are using the trial version of Flash builder 4.7 and addition of serial number (serial number of Flash builder 4.5), it is simply not working and showing an error "the key is not valid.

    I chat with Adobe customer care 4 different people, they find themselves saying that we transfer you volume license Department and then chat on sale. No message chat more, I checked over an hour and still no message.

    So I called, it took 15 minutes to communicate with the service the customer. I chose the option 'upgrade' from the menu of the phone and then connected with a guy. After listening full case he passed my call to the Executive of license Volume and of the Executive of license volume transferred to another guy and the other guy to some person capacit¨¦s redirect. So in total 4 guys. The last guy (specialized) called Rohit.

    Rohit guy asked me, I buy a customer support program (some product on $2.nn.00)? I said no, we purchased volume licenses for Flash builder 4.5 premium (subject to $4000.00 *). He said, sorry Sir I can't help you in this area, but I can provide you with an e-mail address and you can report your concern here. I already spent my 1.5 hour in this conversation. I said okie. He gave me a case number and told me that he will send an email stating that the e-mail address in my application I have to unplug the phone.

    I never get this email address.

    Can someone suggest me what to do next. Is my file number: 209-788-274.

    My email is: [email protected]

    Thank you

    Amitabh Arya

    @Amitabh: I understand that volume license team has reached out and helped solve the problem here, but please let me know if you have any questions outstanding.

  • Urgent: Installation of the BB10 SDK B3 upgrade blocks Flash Builder

    I just upgraded another site with Beta 3 of the AIR SDK for Flash Builder (4.6).  Now Flash Builder crashes with an alert pointing me to a log file.  The log file is long, but the tail has this:

    !MESSAGE Missing required bundle org.eclipse.mylyn.context.core_[3.8.0,4.0.0).
    !SUBENTRY 2 org.eclipse.mylyn.team.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle org.eclipse.mylyn.context.ui_[3.8.0,4.0.0).
    !SUBENTRY 2 org.eclipse.mylyn.team.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle org.eclipse.mylyn.resources.ui_[3.8.0,4.0.0).
    !SUBENTRY 2 org.eclipse.mylyn.team.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle org.eclipse.mylyn.tasks.core_[3.8.0,4.0.0).
    !SUBENTRY 2 org.eclipse.mylyn.team.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle org.eclipse.mylyn.tasks.ui_[3.8.0,4.0.0).
    !SUBENTRY 2 org.eclipse.mylyn.team.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle org.eclipse.mylyn.commons.ui_[3.8.0,4.0.0).
    !SUBENTRY 2 org.eclipse.mylyn.team.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle org.eclipse.mylyn.commons.workbench_[3.8.0,4.0.0).
    !SUBENTRY 2 org.eclipse.mylyn.team.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle org.eclipse.mylyn.monitor.core_[3.8.0,4.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-10-04 12:11:29.426
    !MESSAGE Bundle com.qnx.flashbuilder.multiplatform.qnx.ui_2.0.0.201209241107 [1125] was not resolved.
    !SUBENTRY 2 com.qnx.flashbuilder.multiplatform.qnx.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle com.adobe.flashbuilder.project.multiplatform.ui_[4.6.0,5.0.0).
    !SUBENTRY 2 com.qnx.flashbuilder.multiplatform.qnx.ui 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing required bundle com.adobe.flexbuilder.project.ui_[4.6.0,5.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-10-04 12:11:29.426
    !MESSAGE Bundle com.qnx.flashbuilder.multiplatform.qnx.ui.nl1_2.0.0.201209241107 [1126] was not resolved.
    !SUBENTRY 2 com.qnx.flashbuilder.multiplatform.qnx.ui.nl1 2 0 2012-10-04 12:11:29.426
    !MESSAGE Missing host com.qnx.flashbuilder.multiplatform.qnx.ui_2.0.0.
    
    !ENTRY org.eclipse.osgi 4 0 2012-10-04 12:11:29.427
    !MESSAGE Application error
    !STACK 1
    java.lang.RuntimeException: Application "com.adobe.flexbuilder.standalone.FlashBuilderApplication" could not be found in the registry. The applications available are: org.eclipse.ant.core.antRunner, org.eclipse.ant.ui.antRunner, org.eclipse.equinox.app.error, org.eclipse.equinox.p2.director, org.eclipse.equinox.p2.garbagecollector.application, org.eclipse.equinox.p2.publisher.InstallPublisher, org.eclipse.equinox.p2.publisher.EclipseGenerator, org.eclipse.equinox.p2.publisher.ProductPublisher, org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher, org.eclipse.equinox.p2.reconciler.application, org.eclipse.equinox.p2.repository.repo2runnable, org.eclipse.equinox.p2.repository.metadataverifier, org.eclipse.equinox.p2.artifact.repository.mirrorApplication, org.eclipse.equinox.p2.metadata.repository.mirrorApplication, org.eclipse.equinox.p2.updatesite.UpdateSitePublisher, org.eclipse.equinox.p2.publisher.UpdateSitePublisher, org.eclipse.equinox.p2.publisher.CategoryPublisher, org.eclipse.help.base.infocenterApplication, org.eclipse.help.base.helpApplication, org.eclipse.help.base.indexTool, org.eclipse.jdt.apt.core.aptBuild, org.eclipse.jdt.core.JavaCodeFormatter, org.eclipse.ui.ide.workbench, org.eclipse.update.core.standaloneUpdate, org.eclipse.update.core.siteOptimizer.
        at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:248)
        at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29)
        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: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 can I get this fix so I can run the new Flash Builder?

    Does anyone have a link to the beta 2 release, so at least I can continue to work?

    Thank you.

    Good way to spend half a day. Reinstall solved the problem.

  • Try to move the Flash Builder 4.7 old PC to the new, need to install the files

    I get upgraded my PC and reinstall Flash Builder Premium of 4.7. I can't find the installation file downloaded originally. Can you provide a link for me to re download the installation files.

    Hello

    Follow https://creative.adobe.com/products/download/flash-builder

    Hope that helps!

    Kind regards

    Sheena

  • Questions unanswered in the Forum Flash Builder

    Hi Adobe - we have a few lingering unanswered questions in the Flash Builder forum.

    I am looking for a download link for Flash Builder 4.7 - for the non-CC version.

    OR

    Creative cloud version will work with my Flash Builder Premium of 4.7 serial number and do I just install it through the creative process of cloud?  I really don't want to go creative cloud at the moment - but I don't know if it's the same file in Flash Builder 4.7 anyway and as soon as I put my serial number, it will take me off creative cloud.

    So... looking for a download link for Flash Builder 4.7 for the serial number of my non creative cloud.

    Urgent-thanks!


    Dan

    Thanks kglad.  I ended up going with just the installer of creative cloud - which is very nice!  He installed Flash Builder 4.7 and then it was the trial version - so the next time I opened it, it gave an option to add a serial number - I did and it worked.  So I think we're good!

  • The AIR SDK upgrade to 3.8 in Flash Builder 4.7...

    I use Flash Builder 4.7 on a Mac using OS X 10.7.5.

    I downloaded the AIR SDK here: http://airdownload.Adobe.com/air/Mac/download/latest/AdobeAIRSDK.tbz2

    (The one WITHOUT the compiler, because it is the one that says it's compatible Flex.)

    I followed all the instructions here: http://helpx.adobe.com/x-productkb/multi/how-overlay-air-sdk-flex-sdk.html

    I changed the Application descriptor on my Mobile ActionScript project to this: http://ns.Adobe.com/air/application/3.8 and he recorded without error.

    Yet, whenever I try to launch the project, I get the following error:

    Error occurred during the application of packaging: Users/my_name/Documents/Adobe Flash Builder 4.7/my_project/bin-debug/my_project-app.xml: error 102: invalid namespace http://ns.Adobe.com/air/application/3.8

    WTF is going on here, I should then?

    Thanks for any help you can give me.

    Laurence MacNeill

    Mableton, Georgia, USA.

    Never mind - I thought of it myself...

    You need to download the version of the SDK * WITH * the compiler (here:http://www.adobe.com/devnet/air/air-sdk-download-mac.html ) and then delete the contents of the folder/Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK and replace them with the contents of the AIRSDK_Compiler.tbz2 file that you downloaded.

    So - to be clear that you have to do BOTH of these things - the thing I did in my first post with the overlay, AND the thing I did in this post with the contents of the folder AIRSDK replacement to make it work properly...

    I wish that when you google "How to upgrade AIR SDK in Flash Builder 4.7" it would return to a single page with these TWO sets of instructions on them.

    In any case, the problem is now solved...

    L.

  • Destroy... What would cause a Flash Builder crashing repeatedly on the same. MXML file?

    Hello

    I'm building a pretty simple application and I changed something in a .mxml file pretty simple and all of a sudden whenever I open the file for editing, Flash Builder crashes and dies horribly.

    If I have all the code in comment and reopen Flash Builder, I can open and edit the file correctly. I can even put all the original in the code and test the application successfully.

    But...

    When I put all the code back in and then go back to edit the file, Flash Builder exterminates in a sort of permanent and irrevocable while I comment on all the code to make it work again...

    I tried to export, delete, import to reset the project, but the problem is recurring.

    Then...

    It is clear that I wrote something in my .mxml file that sends Flash Builder in an infinite loop of godawful or another dead end, but I'm at a loss to say what, as it is very MXML very base and direct without (far as I can tell) something unusual... and I've been professional programming with Flex for a number of years and built some _big_ Meanwhile applications...

    If someone has experienced something similar? Any ideas what I could do?

    Thank you

    G

    Found the little git.

    Somehow, I had marked "Enable design mode" and the designer was attempting to make a wide range of custom controls that she had no idea what to do with.

    I think, I _may_ have tried the design mode for about five minutes about five years ago and decided it wasn't for me... If so, this opinion still stands.

    I have "Enable design mode" Unflagged and suddenly everything plays well again.

    G

  • Flash Builder cannot locate the required Adobe Flash player debug version

    Hello

    The problem seems to be well known for the last few years and older versions of Flash builder, but I feel that it is still not resolved for Win 7 64 bit, Flash Builder 4.5.

    I have installed:

    -Flash Builder 4.5

    -windows 7, 64 bit

    -The most recent Flash Player - 11.3.r300.257

    Please, let me know how to properly use debugger in Flash Builder 4.5 without error message below:

    "Flash Builder cannot locate the required Adobe Flash player debug version. You need to maybe install the debug version of Flash Player or reinstall Flash Builder"

    SebaR

    This is a known bug in Flash Builder 4.5 and 4.6.

    It will be fixed in the next version of Flash Builder.

    The workaround for Flash Builder 4.5 and 4.6 is to download the two 32-bit & 64-bit debug player.

Maybe you are looking for

  • Apple Airport Extreme and new FIOS router - problem

    Hello, I have an Apple Airport Extreme 802.11n base station, which worked well with a Comcast router.  When you set up with Comcast router, I set the router to comcast to bridge and the Airport Extreme has done all the work as the main router. When I

  • HP Envy M6-N113DX: Need Ethernet Compatible Drivres

    Hi all I need the equivalet of network Ethernet drivers for my HP Envy M6 N113DX, who now have Windows 7 OS install I looked on the Forum post olc btu (2014) link are not valid now Can someone give me a helping hand to find a driver for Windows 7 con

  • HOW CAN I REMOVE KNCRT FROM THE COMPUTER

    NOT ABLE TO KNCRT TO STOP RUNNING TO REMOVE PROGRAMS

  • ESENT error: thousands...

    I'm having a problem and I couldn't find any information on how to fix actually. I get the following error message in the event of thousands a day Viewer... seriously.  Currently, Event Viewer displays this error occurred 71121 times within the last

  • WRT1900AC Caps of downstream of the Modem data cable to 36 Mbps?

    After that several months of fighting with Comcast that I was getting not my modem cable complete downstream speeds I was paying for, I found that when a computer connecting directly to a modem cable, I'm able to get more 150Mbps downstreatm, but whe