Flash Builder 4 Run Problem

When I Run a project in FB4 sometimes I have this weird problem where the changes I have made do not show up in the project I have just ran.  I can do something as simple as changing a label or complex as changing some AS code and it still has this problem.  I am not sure if it is random or what the issue is.  Has anyone else encountered this or have an answer as to why it might be happening?  Thanks in advance!

I've recently been experiencing an abnormal number of occurrences of this error and Google directed me to this thread. In response to your question, here's the Error Log message that gets added when the "internal build error" occurs:
null
Error
Mon Aug 06 13:11:03 EDT 2012
Uncaught exception in compiler
java.lang.NullPointerException
          at com.adobe.flexbuilder.project.ui.utils.ANE.AppXMLFileANEExtensionHandler.addToAppXmlFile( AppXMLFileANEExtensionHandler.java:74)
          at com.adobe.flexbuilder.project.ui.utils.ANE.AppXMLFileANEExtensionHandler.addToAppXmlFile( AppXMLFileANEExtensionHandler.java:46)
          at com.adobe.flexbuilder.project.ui.utils.ANE.ANEController.applyWorkingCopy(ANEController.j ava:720)
          at com.adobe.flexbuilder.project.ui.utils.ANE.ANEController.projectIsBuilt(ANEController.jav a:904)
          at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.informProjectBuildList ener(FlexProjectBuilder.java:156)
          at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.buildItem(FlexProjectB uilder.java:616)
          at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.build(FlexProjectBuild er.java:382)
          at com.adobe.flexbuilder.project.compiler.internal.FlexIncrementalBuilder.build(FlexIncremen talBuilder.java:187)
          at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728)
          at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
          at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199)
          at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239)
          at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292)
          at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
          at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295)
          at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351)
          at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374)
          at org.eclipse.core.internal.resources.Workspace.buildInternal(Workspace.java:513)
          at org.eclipse.core.internal.resources.Workspace.build(Workspace.java:422)
          at org.eclipse.ui.actions.GlobalBuildAction$1.run(GlobalBuildAction.java:180)
          at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
My particular project is a Flex Mobile project with a couple of ANEs. I have to restart Flash Builder every couple of times I launch my project though because of this type of error.
Any ideas? Could I provide you with any more information to help track down the problem?

Similar Messages

  • Changes to .fla don't show up in Flash Builder run

    All,
    So, I've been developing applications in the Flash Pro IDE, and I've decided to try and use Flash Builder 4's advanced coding tools to make things a bit speedier and to help in profiling and debugging.
    The applications I'm looking at creating generally have a lot of complex  graphic elements, and a lot of timeline based animations. So, I still want to use Flash Pro as my drawing/animation tool, but use Flash Builder to test, profile and debug the ActionScript code.
    I've successfully created a new "Flash Professional Project" in Flash Builder.
    It is a very simple project consisting of a Main.fla
    The first time I ran the Project (using the actual Flash Builder "Run" and not the "Test Movie in Flash Professional"), everything went smoothly.
    I was also able to use Flash Builder's "Debug" to successfully debug the application. (Again, not the Flash Professional Debugger).
    So, I wanted to see how/if Flash Builder updates the project if I make a change to a graphic within a .fla file in the project.
    With both Flash Builder 4 and Flash Pro CS5 open, I opened Main.fla and just drew a square Shape on the stage.
    I saved Main.fla, and then went back to Flash Builder.
    I hit F5 to refresh the project, but when I attempted to "Run" the Project, a new browser window opened, but the square was not displayed.
    Same thing happens when I choose "Debug".
    How do I get Flash Builder 4 to update the project so any graphical/animation changes I make in a .fla will be reflected when I Run/Debug in Flash Builder?
    When I hit "Run", Flash Builder opens the "bin-debug/Main.html" file in a new browser window. So, I assume this is the file that is not getting updated... or more accurately... the "bin-debug/Main.swf" that the .html file loads.
    Thanks!

    Hi, Hammer Chick,
    Here are two recent threads where other users have reported
    similar problems:
    "Multiple/broken/repeated
    listings in Search results"
    "Double-entry
    Search results!"
    So the proposed solutions are:
    1) Make a backup of your project, and then rename the .cpd
    file and reenter your project.
    2) Try creating a new single source layout.
    3) Check the hyperlinks in your topics for any that
    inadvertently point to target topics that are above the root folder
    of the help project.
    Pete

  • Flash Builder Data problem - mysqli_stmt_bind_param ?

    Hi All.. hope someone can help.
    I've started a very simple application and experiencing a problem regarding creating a new record in a MySQL database via PHP & Zend.
    Here's the snippet of AS:
              newLine.buy_price = cursor.current.buy;
              newLine.sell_price = cursor.current.sell;
              linesService.createLines(newLine);
              createLineResult.token = linesService.commit();
    Here's the snippet of PHP (all generated by FB):
         public function createLines($item) {
              $stmt = mysqli_prepare($this->connection, "INSERT INTO $this->tablename (supplier, sku, product_name, quantity, buy_price, sell_price) VALUES (?, ?, ?, ?, ?, ?)");
              $this->throwExceptionOnError();
              mysqli_stmt_bind_param($stmt, 'iisiii', $item->supplier, $item->sku, $item->product_name, $item->quantity, $item->buy_price, $item->sell_price);
              $this->throwExceptionOnError();
              mysqli_stmt_execute($stmt);          
              $this->throwExceptionOnError();
              $autoid = mysqli_stmt_insert_id($stmt);
              mysqli_stmt_free_result($stmt);          
              mysqli_close($this->connection);
              return $autoid;
    When I run the createLines() function then commit(), I get the following error popup from my application:
    MySQL Error - 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'lines (supplier, sku, product_name, quantity, buy_price, sell_price) VALUES (?, ' at line 1
    #0 C:\wamp\www\XOM-debug\services\LinesService.php(119): LinesService->throwExceptionOnError()
    #1 [internal function]: LinesService->createLines(Object(stdClass))
    #2 [internal function]: ReflectionMethod->invokeArgs(Object(LinesService), Array)
    #3 C:\wamp\www\ZendFramework\library\Zend\Server\Reflection\Function\Abstract.php(380): call_user_func_array(Array, Array)
    #4 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(359): Zend_Server_Reflection_Function_Abstract->__call('invokeArgs', Array)
    #5 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(359): Zend_Server_Reflection_Method->invokeArgs(Object(LinesService), Array)
    #6 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(553): Zend_Amf_Server->_dispatch('createLines', Array, 'LinesService')
    #7 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(629): Zend_Amf_Server->_handle(Object(Zend_Amf_Request_Http))
    #8 C:\wamp\www\XOM-debug\gateway.php(69): Zend_Amf_Server->handle()
    #9 {main}
    As as I see it, the parameters are not being replaced by the actual values, so MySQL is freaking out as it's getting question marks in the statements. What I don't understand is how this is happening! Everything is auto-generated by FB. I created a new project from scratch and used only drag & drop from the Data/Services panel to generate a form for data entry and got the same error.
    Any ideas!?
    Cheers,
    Steve

    Hi,
    Thanks for your feedback!
    This feature has been going through a lot of changes with the BlazeDS and Flash Builder builds.
    We request you to pick up the BETA2 build of Flash Builder and BlazeDS 4.0.0.10654, hopefully you should see things working fine.
    Kindly let us know if you still encounter problems.
    Thanks,
    Balaji
    http://balajisridhar.wordpress.com

  • Flash Builder Link Problem

    Whenever I try to access links in Flash Builder such as those on the Start Page, Device Connection Help in Run Configurations or even Find and Download other versions of Flex SDK in the Flex Configuration window it opens up a blank Notepad window with an error "The filename, directory name, or volume label syntax is incorrect."
    Anyone have any idea on how to fix this? I assume it is supposed to open up a web page.

    Wow, problem solved. I thought it was weird when I installed Flash Builder 4.7 and it was still happening. Apparently at some point I set Notepad.exe as the default program to open HTML files and did not realize it.
    I feel kind of dumb now but as every other program was working (heck, links even worked in Flash Professional) I was so sure it was a Flash Builder problem.
    Anyway, I am just glad to have the mystery solved.

  • Avoid MathScipt Comments in EXE, Build & Run Problems - NI Please Fix these Bugs!

    Hello,
    After 4 days of intensive work, I have finally found the solution for two major MathScript Problems:
    1) Mathscript Comments are included in your EXE File !!
        - Yes, if you do not watch your steps, the EXE will include all your % Mathscript Comments!
    2) Problems building, but even worse: An app that builds with NO Error and NO Warnings will not RUN and creates the following misleading Erro Message:
        "The VI is not Executable. The full development version of LabView is required to fix the errors"
        With absolutely NO hint to what VI have the problem.
    I have made myself an internal note how to avoid this problem. I am using LabView 2009, 2010 DS1 Release (I think this is 9.01) under WInXP SP2.
    Rather than retyping everything, I will post the full text of my Notes below. I also mention several other LV BUG in this note, so pleae read carefully.
    One is the TagSrv Error that occurs in LabView 2009 if I programatically deploy Shared Variables under the WinXP Development Environment. After this problem has occured, it will occur every time I restart XP, and in essense I have to restore to before I did this (thanks Nortong Ghost !!!).
    Below you can find the full unabridged version of my Build, Run and Bug Notes for LV 2009 / 2010 DS1 (9.01). Hope they can be helpful to my fellow LabView programmers!
    2010-07-03:
    Building under LabView 2009 / 2010 DS1 Release (version 9.01)
    Follow the steps below:
    a) To successfully build an EXE that also runs
    b) Avoid that MathScript Comments are included in the EXE !!!!!!!!!!!!!!!!
    Before Building:
    I) Recompile All  by pressing Ctrl+Shift and pressing the RUN button on the Application_References.vi
       Then Save All (about 1200 Vis are saved)
    II) Make Sure that NO User Defined Mathscript (and Mathscript Nodes?) define Empty Functions:
        This seemed to cause the following problem with the built EXE: The main VI will be broken, and a dialog reports:
        "The VI is not Executable. The full development version of LabView is required to fix the errors"
        MathScitp BUG: Empty Functions causes no Build Errorm but RUN Error:
        The following User Defined MathScript .m files are candidates:
        log_write() and log_clear() whith do_log_write() and do_log_clear() commented out, these functions are empty.
        When calls to log_write() and log_clear() where removed, the problem above vanished !
    Building the EXE:
    1) Additional Exclusions:
     -"Disconnect type definitions": YES
     - "Remove unused polymorphic VI instantces": YES
     - "Remove unused members of project libraries": NO (do not know if this is important)
    2) Advanced:
     - Enable Debugging: "NO"
    3) Mathscript BUG: The Application Builder Includes ALL MathScript Comments in the EXE if you use the New Build File Layout:
       IMPORTANT !!!!!!!!!!!!!
       Advanced:
       "Use LabView 8.x file layout": YES !!!!!!!
       Using the new layout, causes ALL COMMENTS FROM USER DEFINED MATHSCRIPT .M FILES TO BE INCLUDED IN THE .EXE !!!!!!!
    4) BUG: DSC Reference Problem in LabView 2010 DS1 release:
       In VI Deploy_Shared_Variables.vi we deploy alle Shared Variables using the "Deploy Libraries.vi" which is a part of the DSC option.
       As long as only deploying of Variables is used, using this VI should NOT require any DSC Runtime license.
       We have used this before with no compilation problems.
       However, starting with LV 2009 SP1 (or was it the DS1 2010 upgrade) LV will start nagging us to resolve references to tens of VIs
       in the DSC lib file ! Solution: Used press "Stop" on the dialog, and the Build will succeed and the EXE will work !
       Optionally, we could use the following Invoke node for the deployment:
       (see: http://digital.ni.com/public.nsf/allkb/04D9A85B6967EE87862571140065EEC6). Excerpt from this description:
      <<Right-click the block diagram to bring up the programming palette and go to Programming»Application Control and place the
        Invoke Node on the block diagram. Using the hand tool, click Method and select Library»Deploy Library>>
    5) LabView BUG: Do NOT RUn the Application under the WIn XP SP2 Development Environment if the APP Deploys Shared Vars:
       This will cause the Dreaded TagSrv Error:  "TagSrv.exe: This application has requested the runtime to terminate in an unusual way".
       After this Error has occured, it will reoccur each time WinXP SP2 is restarted, and (Network) Shared Variables will NOT work any more!
    Geir Ove
    Attachments:
    LabView_Tagsrv_Error.jpg ‏26 KB

    Hello Geir,
    I have tried to reproduce the behavior you are seeing where .m file comments appear in the final built executable.  However, I am unable to do so using LabVIEW 2009 SP1.  I have a caller VI with a MathScript node that calls the adder function in adder.m.  The contents of adder.m are as follows:
    % ADDER This function adds 3 to its input variable
    %   y = adder(x)
    %   INPUT: x
    %   OUTPUT: y, equal to x + 3
    function y = adder(x)
    y = x + 3;
    I have configured the build specification as you mention in steps (1) and (2):
    Additional Exclusions
     - "Disconnect type definitions" Yes
     - "Remove unused polymorphic VI instances" Yes
     - "Remove unused members of project libraries" No
    Advanced
     - "Enable Debugging" No
    At first, I did not include the adder.m file in the project.  I built the application and was not able to find the text "adder" anywhere in the EXE.  Then, I added the .m file to the project and put it in the "Always Included" section in "Source Files."  Again, I was not able to find the search text in the built EXE.  In step 3, you mention
    geirove wrote:    
       "Use LabView 8.x file layout": YES !!!!!!!
    but in the 5th post in this thread, you state
    geirove wrote:
    Compile using the new compile method ( Use LabView 8.x file layout": NO),
    I have tried both settings in the Advanced section, but again, I am not able to find any comments in the EXE.  I even added a call to the "path" function in adder.m.  This puts a warning glyph on the caller MathScript node and generates different code.  The EXE will return an unknown symbol error for adder (any VI with a warning glyph will not work in a built app), but I am not able to find any comments in the EXE.  This project is attached below.
    As for your other item with a broken EXE if you call empty functions, I am unable to reproduce this as well.  I have taken the last attachment to your third post in this thread (the log_write function) and called it from the caller VI as well.  The EXE runs just fine and I do not find any comments in this EXE either.
    Unfortunately, there was a rather serious issue in the LabVIEW 2009 MathScript RT Module, where some internal MathScript VIs could become corrupted when building executables.  Have you tried running the "Find Bad Instantiations" tool from this Knowledge Base article?  Simply installing the SP1 version on top may not have corrected any VIs that may be corrupted.
    Due to our difficulty in reproducing the issues you mention, could you modify the attached project or else attach a new project, appropriately configured, that builds an EXE with .m comments embedded in it?  This way, we can uncover any minute details that we're overlooking.
    Grant M.
    Senior Software Engineer | LabVIEW MathScript | National Instruments
    Attachments:
    MComments.zip ‏186 KB

  • Flash Builder Burrito problem (s:MobileApplication)

    I got trial and entered my Flash Builder Serial, and everything went well,
    but now i see that when creating mobile projects, i get error on
    s:MobileApplication, instead i have to use component:MobileApplication
    and this on bot Views as well in default package.
    Is there any known bugs/errors with entering serial or is this some other problem ?
    i think this is connected to my serial but im not sure, before everything worked fine
    in burrito but i got this prob AFTER entering serial

    Problem solved by turning off Design View (which we never use anyway, useless thing for OO style programming), it's on by default with a new install of Flash builder.
    The mobile app looks promising, just waiting on a developer license to see how it goes on an iPad

  • Migration from Flex 3.3 to Flash Builder 4 problems.

    So, I've been working on a Flex Builder 3.3 project for some time now. One of the things I had expected from Flash Builder 4 would be the ability to simply import a fully operational (bug free) 3.3 project. Wrong.
    My 3.3 project uses an imported FLVPlayback component (for a number of reasons) and under 3.3 I got no errors using it. Immediately upon importing and opening my 3.3 project in 4.0 I get the following: (any assistance whatsoever would be appreciate to resolve this)
    VideoError: 1008: VideoPlayer.iNCManagerClass has not been set or its value is invalid: fl.video.NCManagerDynamicStream
    at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::createINCManager()[E:\dev\beta1\frameworks\projects\flex4\src\fl\video\VideoPlayer.as:3710]
    at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::_load()[E:\dev\beta1\frameworks\projects\flex4\src\fl\video\VideoPlayer.as:1327]
    at fl.video::VideoPlayer/load()[E:\dev\beta1\frameworks\projects\flex4\src\fl\video\VideoPla yer.as:1270]
    at fl.video::FLVPlayback/doContentPathConnect()
    at fl.video::FLVPlayback/set source()
    at lucid/videoScene()[/Users/villmer/Documents/Adobe Flash Builder Beta/lucid/src/lucid.mxml:212]
    at lucid/build()[/Users/villmer/Documents/Adobe Flash Builder Beta/lucid/src/lucid.mxml:202]
    at lucid/init()[/Users/villmer/Documents/Adobe Flash Builder Beta/lucid/src/lucid.mxml:123]
    at lucid/loadXML/xmlComplete()[/Users/villmer/Documents/Adobe Flash Builder Beta/lucid/src/lucid.mxml:116]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()

    Hi Matt,
    Alright, I tried:
    1. Removing  the FLVPlayback.swc from Properties > Flex Build Path >  
    Library Path
    2. Adding import fl.video.*
                import fl.video.FLVPlayback;
    But I still get:
    VideoError: 1008: VideoPlayer.iNCManagerClass has not been set or its 
    value is invalid: fl.video.NCManagerDynamicStream
         at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::createINCManager()
    [E:\dev\beta1\frameworks\projects\flex4\src\fl\video\VideoPlayer.as:
    3710]
         at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::_load()
    [E:\dev\beta1\frameworks\projects\flex4\src\fl\video\VideoPlayer.as:
    1327]
         at fl.video::VideoPlayer/load()[E:\dev\beta1\frameworks\projects
    \flex4\src\fl\video\VideoPlayer.as:1270]
         at fl.video::FLVPlayback/doContentPathConnect()
         at fl.video::FLVPlayback/set source()
         at lucid/videoScene()[/Users/villmer/Documents/Adobe Flash Builder 
    Beta/lucid/src/lucid.mxml:210]
         at lucid/build()[/Users/villmer/Documents/Adobe Flash Builder Beta/
    lucid/src/lucid.mxml:200]
         at lucid/init()[/Users/villmer/Documents/Adobe Flash Builder Beta/
    lucid/src/lucid.mxml:121]
         at lucid/loadXML/xmlComplete()[/Users/villmer/Documents/Adobe Flash 
    Builder Beta/lucid/src/lucid.mxml:114]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at flash.net::URLLoader/onComplete()

  • Tip: How to Avoid some tough LV 2009 Build & Run Problems

    Hello,
    I posted some tips I think may be useful to my fellow LabView 2009 programmers on the MathScript forum here:
    http://forums.ni.com/t5/LabVIEW-MathScript-RT-Module/Avoid-MathScipt-Comments-in-EXE-Build-amp-Run-P...
    Allthough some of the problems are MathScript related, the post contains information on how to avoid some other LabView 2009 problems as well. I thought this info would be interesting to other than "MathScript programmers":
    The post contains information on how to circumvent the following problems:
    * "The VI is not Executable. The full development version of LabView is required to fix the errors"
    * Avoid that MathScript Comments are included in the EXE !
    * Mathscript BUG: The Application Builder Includes ALL MathScript Comments in the EXE
    * DSC Reference Problem in LabView 2010 DS1 release
    * TagSrv Error "TagSrv.exe: This application has requested the runtime to terminate in an unusual way"
    Geir Ove

    Hello,
    I posted some tips I think may be useful to my fellow LabView 2009 programmers on the MathScript forum here:
    http://forums.ni.com/t5/LabVIEW-MathScript-RT-Module/Avoid-MathScipt-Comments-in-EXE-Build-amp-Run-P...
    Allthough some of the problems are MathScript related, the post contains information on how to avoid some other LabView 2009 problems as well. I thought this info would be interesting to other than "MathScript programmers":
    The post contains information on how to circumvent the following problems:
    * "The VI is not Executable. The full development version of LabView is required to fix the errors"
    * Avoid that MathScript Comments are included in the EXE !
    * Mathscript BUG: The Application Builder Includes ALL MathScript Comments in the EXE
    * DSC Reference Problem in LabView 2010 DS1 release
    * TagSrv Error "TagSrv.exe: This application has requested the runtime to terminate in an unusual way"
    Geir Ove

  • Flash Builder Language Problem

    Hi, i download the BETA and the installer run in a strange language, even the program have a different language, my OS is in spanish, can someone explain me how to put FB4 in english?
    thanks.

    Hi JK994
    Out of curiosity, what language did you select in the install language selection dialog?
    Here is how you can manually change the language:
    1. Exit FB and open the finder and go to the FB insatll directory
    2. Control + click on the Gumbo.app and select Show Package contents
    3. Navigate to Contents > MacOS
    4. Edit Gumbo.ini in TextEdit
    5. Change the nl to en_US (it is likely de_DE or something along those lines)
    -nl
    en_US
    6. Save the file and launch FB.
    If you still have a problem, add the following under the -vmargs line
    -Duser.language=en
    -Duser.country=US
    -Larry

  • Flash Builder 4 super slow when Workspace and Project is on Network Drive

    Hi I was wondering if maybe it is not common practice to create a workspace and project in a Network Drive? When I do this Flash Builder runs extremely slow ( build workspace slow, saving slow, code hinting slow, undo slow, etc, etc, etc). Very painful!
    When I place the same project locally on my C drive everything runs fine. So should I not be running things off the network? I would really like to since all my files are on the network with backup system. Can anyone offer some advice? Or maybe I need to optimize something? Thanks
    - D

    Hi.
    Having your workspace and project on a network drive is not recommended as Flash Builder writes and reads a lot from the workspace and that will be slow.
    A version control system such as svn or git with a repository hosted on your network drive should be perfectly fine. (You only take the hit when you check in and check out)
    -Anirudh

  • Problems running Flash Builder 4.6 profiler

    Hello,
    I have a problem running Flash Builder profiler. When I click "Profile" it starts my web application, but nothing else happens inside Flash Builder itself - no new data appears in Profiler perspective, Flash Builder itself doesn't show any sign of doing something.
    My mm.cfg contains the next line: "PreloadSwf=C:/flash builder workspace/.metadata/.plugins/com.adobe.flash.profiler/11/ProfilerAgent.swf?host=localhost &port=9999"
    Additional details:
    OS: Windows 7
    Flash Builder version: 4.6
    Tested web browsers: Firefox, IE 8 - the same problem in both of them
    Flash player versions: ActiveX/Plug-in Version:11.7.700.169
    I made sure that ProfilerAgent.swf indeed exists in the location defined in mm.cfg. In addition, I tried to change port 9999 to other ports (both in mm.cfg and in Flash Builder). I also verified that the location of ProfilerAgent.swf appears in trusted locations of Flash Player.
    I would be very grateful if someone could help me to solve this problem.
    Thanks,
    Valeria

    R Grieve wrote:
    This sounds like something has gone wrong during installation. CSAR and CSLIBS references should be set up automatically during installation.
    There should also be no need to import the Flex SDKs as CS Extension Builder 2.0 ships with them included. It won't do any harm though having the CS Flex SDKs imported.
    Can you detail how you installed CS Extension Builder 2.0, please and where you obtained it from?
    Here are the installation instructions I would recommend starting from a clean FlashBuilder 4.6 instance:
    To install Adobe Creative Suite Extension Builder, download the ZIP file and unzip it into a root location (SDKRoot).
    Install Extension Builder in Eclipse with Flash Builder or Flash Builder Standalone:
    In Eclipse, choose Help > Install New Software.
    In the Install dialog, click Add.
    In the Add Site dialog, click Local... to browse to the SDK root folder or enter the URL of the update site.
    Name the site CS SDK and click OK to confirm the changes.
    Select the new CS SDK site in the "Work with" field.
    -- Select all the Adobe Creative Suite Extension Builder components.
    -- Click Next to confirm the selection.
    In the Install Details review dialog, click Next to confirm that you want to install all the components listed.
    Accept the terms of license agreements and click Finish.
    Re-start  Eclipse as recommended.
    I obtained it from Adobe and installed it using the Help > Install software option, but without unzipping it. Maybe that was it.
    Now I've done a clean installation and it works perfect. I did it with administrator permissions, don't know if it has anything to do with it, but I read it somewhere and did so just in case!
    Thanks a lot!

  • Problem running Flash Builder on OSX 10.8.3

    Hi,
    I am having no luck getting Flash Builder to run under OSX. I have tried reinstalling the JDK and JRE multiple times but I still get this message every time I attempt to start the application.
    A Java Runtime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Adobe Flash Builder 4.7. No Java virtual machinewas found after searching the following locations:/Applications/Adobe Flash Builder 4.7/Adobe Flash Builder 4.7.app/Contents/MacOS/jre/bin/javajava in your current PATH
    Does anyone have any ideas how to overcome this issue?

    I just installed 10.8, can't get FB to work either. Did you resolve this issue?

  • Problem with working in Flash Builder 4

    Hi there,
    I am working on the develepment of a new kind of website in 3D.
    For this I am using Flash Builder 4 AS3 Project and the 3D program Away3D.
    The problem is that I created a SWF in one AS3 project called PoloSWF.
    In another project I created a plane with the SWF as material.
    For this I copied PoloSWF from the original bin release directory and pasted it in the assets folder of the plane project.
    When running the plane project, the SWF is not visible.
    Any idea where the bug is?

    I tried it in Internet Explorer, Firefox, and Chrome. I was able to get the Akamai download manager but that was all I could download. Currently with firefox the download is stuck at waiting and will not continue any further.

  • Adobe Flash Builder 4 licence is for one desktop and one laptop, only one at a time run or

    After installing Adobe Flash Builder 4 needed install AIR? Adobe Flex 4 SDK IS ALREADY INCLUDED?
    Adobe Flash Builder 4 licence is for one desktop and one laptop, only one at a time run or...?

    hi,
    Flashbuilder has the ability to create and run Air content from the IDE, to actually usean Air App outside of the IDE you need to install Air.
    Flashbuilder install includes 2 sdks, the 3.5 sdk for 'backward' compatibility with Flexbuilder and for targeting flashplayer 9, the 4.x SDK for Flashbuilder and  targetting flashplayer 10.0 and above.
    As far as fair use is concerned Adobe have had fair use software licensing for a while, single user 2 devices is not a problem, what is not clear is if you can use the software on both devices at the same time.
    David

  • Problem signing application to BlackBerry from Flash builder 4.6 premium

    Hi,
    I would like generate "BlackBerry" version of my application with Flash Builder, for this i'm using this guide.
    http://docs.blackberry.com/en/developers/deliverables/37176/BlackBerry_Tablet_OS_SDK_for_A dobe_AIR-Getting_Started_Guide_for_Windows_Developers--1943146-1206065540-001-2.0_Beta-US. pdf
    First, i have uninstalled older flash builder versions, and i have installed Flash builder 4.6 premium.
    After, I have installed the BlackBerry Tablet OS SDK for Adobe AIR.
    Next, I have updated the BlackBerry Tablet OS SDK plug-in.
    But, my problem is using the deployment setup wizard.
    I tried with the BlackBerry Tablet Simulator started, but when I click "Run the BlackBerry Tablet OS Deployment Setup Wizard" to configure your development environment, the wizard is not showing.
    I would like generate my application, ".bar" file, signed with the reals certificates of BlackBerry. But i don´t know what is the problem.
    Somebody have tested if this wizard is working to Flash builder 4.6.
    Furthermore, i have tried to setting the reals certificates of BlackBerry, with the preferences window:
    Flash Builder > Preferences > Flash Builder > Target Platforms > BlackBerry Tablet OS > Signing.
    Such as at this url:
    http://www.adobe.com/devnet/air/articles/packaging-air-apps-blackberry.html
    But when i click Register button, the dialog is not showing.
    Any idea is wellcome.
    Thanks

    Hi all,
    I have found the problem
    BlackBerry Tablet OS search a path that don´t exist in my spanish Windows X.
    As my system is at spanish, BlackBerry Tablet OS installer create this path:
    %HOMEPATH%\Configuraci¾n local\Datos de programa\Research In Motion
    To resolve the problem, you must to create the path in english and copy the content of spanish path:
    %HOMEPATH%\Local Settings\Application Data\Research In Motion
    By default, code signing keys are stored in a central location in your profile directory and used by all BlackBerry Tablet OS development tools. The default locations of these files vary based on operating system and  are outlined in the following table.  
    Note: In a Windows XP environment, the default  %HOMEPATH% is C:\Documents and Settings\<username>.  In a Windows Vista and Windows 7 environment, the default %HOMEPATH% is  C:\Users\<username>.
    Windows XP
    %HOMEPATH%\Local Settings\Application Data\Research In Motion
    Windows Vista  and  Windows 7
    %HOMEPATH%\AppData\Local\Research In Motion
    Mac OS
    ~/Library/Research In Motion
    UNIX and Linux
    ~/.rim

Maybe you are looking for

  • Issue: Upgrading from 11i to R12 - zxmiggltaxopts.sql

    Hi, we are upgrading from 11.5.10.2 to 12.1.1. During upgrade patch, one of the worker zxmiggltaxopts.sql has failed with below errors: sqlplus -s APPS/***** @/orafinx/apps/apps_st/appl/zx/12.0.0/patch/115/sql/zxmiggltaxopts.sql declare ERROR at line

  • Transfering itunes library from a windows computer to a mac computer. HELP!

    i have all my itunes on a older windows computer and was wondering if there was any way to transfer that to my new mini mac?? i have looked and they have external hard drives but seems like they have to be formatted for one or the other.. i guess if

  • Safari crashes in pages with text field

    I had the bugger of a problem with the "Your network settings have been changed by another program" bug (virus?). I solved that by doing the quick-finger return/click settings, duplicate my settings, delete Automatic, and rename my duplicate one "Aut

  • View with outer join results wrong number of rows

    Hi, When i run a query on a view it returns 2 rows(2 distinct rows), when i run the same query with the select statement which the view is created , it returns only 1 row. According to data the 1 row result is correct, how come twi results. A coding

  • HTML Editor Kit

    Hi, I want to display following html in JEditotKit. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>ExploreCollbarativeNetworks</title> <meta http-equiv="Content-Type" conten