Flex Builder 3 / Linux and flashplayer selection

Hi all,
I'm a Flex/AS/Eclipse newbie, and I'm learning all these ones at once in these days.
I'm running Flex Builder 3 with Eclipse 3.3.2 (Europa) in Linux.
Now I'm trying to write a simple project, I should have done something to my system so now I'm getting this error message when I try to compile:
| Flex Builder cannot locate the required version of Flash Player. You might need to install Flash Player 9 or reinstall Flex Builder.
| Do you want to try to run your application with the current version?
My question is: how can I select the flashplayer / plugin to use for a specific Flex project?
Many thanks in advance, best regards.

Hi, thanks for your answer.
It turned out the problem was related to the *standalone* flashplayer.
This is located in linux in:
FLEX_BUILDER_INSTALL_PREFIX/Player/linux
when I was clicking on the "Run" button Flex Builder was looking for a flashplayer standalone app, and was failing to find it.
What I had to do was to add the complete the flashplayer path to the PATH used by eclipse.
Now clicking on "Run" it compiles the application and launches the standalone player with the generated swf file.
Now I wonder if there is some way to select the flashplayer to launch, and if it is possible to configure eclipse to make it launch a  browser or a custom script rather than execute that swf with the standalone player.
Thanks, regards.

Similar Messages

  • Flex Builder Linux A4 + Flash in Eclipse

    I installed Flex Builder Linux A4 successfully on a machine
    w/ properly working Flash 10 on Mozilla Firefox 3.01 (Iceweasel).
    When I fired up Flex in Eclipse (menu: Help > Flex Start Page),
    I get the error message below.
    " The Flex Start Page requires the Adobe Flash Player. Please
    use the installers in the Flex Builder 3/Player/ folder to install
    the Adobe Flash Player into your default browser. "
    I am running: Debian sid, Sun JRE1.6, Flash 10 (in
    Iceweasel), Eclipse 3.4.1. Many thanks for any tips to get Fx
    Builder working.

    Hi,
    Can you please change the web browser settings of Eclipse.
    From the menu select Window -> Preference -> General ->
    Web browser
    here, select external web browser and select Firefox or the
    browser in which you have Flash Player installed.
    Hope this helps.

  • Flex Builder 3 and Employee Directory Sample App

    Ok, please be paitent with me.  Just starting out with Flex Builder 3 and Flash Builder 4.
    I have installed Flex Builder 3 and imported the Employee Directory application sample, but I cannot get it to run, nor debug.
    I'm on a Mac Pro and I have not done any other configuration to the Flex Builder 3 installation, yet.
    In order to get the Employee Directory app to run, can someone give me some assistance as to what I need to do in order to get it running within the development environment.
    Any assistance will be greatly appreciated.
    Regards,
    Jeff

    No errors, it just will not run.
    I loaded the employeedirectory.mxml into the editor and simply tried to run it.  The Eclipse editor / employeedirectory canvas blinks, but doesn't execute.
    In addition, when I set a breakpoint and try to debug, I get the following error:
    Process terminated without establishing connection to debugger.
    Command:
    "/Applications/Adobe Flex Builder 3/sdks/3.2.0/bin/adl" -runtime "/Applications/Adobe Flex Builder 3/sdks/3.2.0/runtimes/air/mac" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug/employeedirectory-app.xml" "/Users/Jeff/Documents/Flex Builder 3/employeedirectory/bin-debug"
    Output from command:
    error while loading initial content
    Thanks for the reply...  hopefully it's a simple configuration issue.
    Update:  I created a blank application with no control, notta and it ran fine, i.e. loaded up into Firefox with a blank canvas.

  • Console not working flex builder 2 and 3

    even since i installed flex builder 2, i have not been able
    to get get output in the console window. i've posted about this
    before but received no reply. then i just installed FB3 and i have
    the same issue. the only way to get my trace statements in the
    console window is to double click, or open the file-debug.swf. i am
    running windows vista.
    in flex builder 2 i get this error warning every time i try
    to compile a program:
    "C:\Program Files\Mozilla Firefox\plugins\NPSWF32.dll
    Flex Builder cannot locate the required version of the Flash
    Player. You may need to install Flash Player 9.0 or reinstall Flex
    Builder. Do you want to try to run your application with the
    current version?"
    anybody know what that is about? it seems totally ridiculous
    that a program designed to create swf's doesn't even know what
    version of flash player i have installed.
    flex builder defaults with IE, not only does that suck, but
    it tells me i don't have the current flash player... i know that's
    not the case because i've installed it, along with activeX around
    ten times now. maybe it's cumulative, should install it 20 times???
    please let me know if you are having these issues as well, or
    if you can help me fix it!
    thanks
    k

    I think your flash debug version isn't installed correctly.
    Try uninstalling the flash player and then reinstalling the DEBUG
    version of the flash player.
    http://www.adobe.com/support/flashplayer/downloads.html

  • Getting started with Flex Builder, BlazeDS and Eclipse

    Hi,
    I'm a java developer looking at RIA for the first time. I'm really excited about BlazeDS and object remoting, but I can't get a working dev environment together. I'm assuming I should use Flex Builder for the client code, Eclipse Europa for the java webapp code, and deploy from both IDEs into the BlazeDS-equipped turnkey-Tomcat. I haven't found a tutorial explaining how to deploy a new webapp with this setup.
    The turnkey-Tomcat sample app works fine. Trouble starts when I try to create  a new project in Flex Builder. I don't understand the 'debug' deployment that Flex Builder does. Why are there 2 versions of my app, the regular and the debug versions? What is exactly the project structure that I'm supposed to have in Tomcat?
    The specific error I encounter when trying to deploy a new Flex project is this:
    [MessagingError message='Destination 'productService' either does not exist or the destination has no channels defined (and the application does not define any default channels.)']
    I do have a default channel configured for my environment in services-config:
    And I do have a valid destination configured in remoting-config (I'm mostly interested in object remoting):
                test.ProductService
    Here's the client code:
    What am I doing wrong? Where can I get help on these specific topics? Also, does anyone have an Ant build file that would automate this sort of deployment?
    Thanks!

    Hi Peter,<br />I don't have problems passing JavaBeans to Flex. For collections, I used DataGrid, it displayed my collection seamlessly, except I don't get column headers, just a column index number. For receiving a single JavaBean, I had a little more trouble, until I tried to display it with a DataGrid: it displayed a single row that represented my data, with each java property name used as a column header, and object attributes were displayed as 'object'. These 2 experiences led me to these conclusions:<br />- for the collection, Flex converted each element into an ordered list of attributes<br />- for the single bean, Flex converted it into a hierarchy of Maps of attributes<br /><br />I didn't create a Flex value object. Flex is doing it automatically,very much like in JavaScript/JSON: dynamic objects.<br /><br />Here's the remote object markup:<br /><br /><!-- We target the remote Java object through BlazeDS gateway: --><br />     <mx:RemoteObject id="myRemoteObject" destination="productService" <br />                          fault="Alert.show(event.fault.faultString, 'Error');"><br />          <mx:method name="getProductsCount" result="setProductsCount(event)"><br />               <mx:arguments><br />                    <arg1>{productSC}</arg1><br />               </mx:arguments><br />          </mx:method><br />          <mx:method name="getProducts"><br />          <!-- search params are wrapped in a model, ProductSC (will be converted to a Map on <br />                the server side by BlazeDS): --><br />               <mx:arguments><br />                    <arg1>{productSC}</arg1><br />                    <!-- This works because we declared these to be Bindable: --><br />                    <arg2>{pager.pageSize}</arg2><br />                    <arg3>{pager.currentPage}</arg3><br />               </mx:arguments><br />          </mx:method><br />          <mx:method name="getProduct" result="goToView()"><br />          <!--<mx:method name="getProduct">--><br />               <mx:arguments><br />                    <arg1>{selectedRecordId}</arg1><br />               </mx:arguments><br />          </mx:method><br />     </mx:RemoteObject><br /><br />And here's the dataGrid that displays the bean collection:<br /><br /><mx:DataGrid id="myDataGrid" <br />                               dataProvider="{myRemoteObject.getProducts.lastResult}" <br />                               change="selectRecord();"<br />                               width="100%" height="100%" ><br />               </mx:DataGrid><br /><br />Let me know how it goes, I'd be glad to assist if I can.<br />Miguel

  • Flex Builder 3 and CF Extensions

    Hi, I have installed Flex builder 3, however can't seem to
    get the Cold Fusion Extension wizards. Have uninstalled and
    installed several times. Yes, I am checking the option to install
    CF Extensions when I install.
    Also if I go to Help > Software Updates > Find and
    Install, the CF Extension upates are not there.
    Interested in hearing if anyone else has had similar issues
    and what they did to get the extensions installed.
    very strange, and extremely frustrating.
    Thanks

    For anyone interested, I figured it out:
    to generate a CFC, you have to right-click a table in the RDS Dataview, then you can generate a CFC. You cannot generate a CFC from an AS class as described in the CF Builder help within Flash Builder.
    Adobe: it would be nice if this got fixed – and if someone there replied to posts like this. You do  know all this, don‘t you?

  • Does the Lifecycle product license include the use of Flex Builder Pro and Flex SDK?

    I have been trying to find out whether we can use the latest Flex Builder and SDK using the LiveCycle license or do we need to purchase additional license? We will use these products to develop Flash Applications to use with our Livecycle product.

    The end user license agreement and the supplement should provide your answer:
    http://www.adobe.com/products/eulas/pdfs/MET_and_LC4.pdf
    2.1. Definition of OnPremise Software for Additional Adobe LiveCycle Components. If Customer has licensed
    Additional Adobe LiveCycle Components as set forth on the Sales Order, then “OnPremise Software” means the
    Foundation Components, the LiveCycle SDK Components, the Flex SDK Components, and object code versions of
    any of the applicable Additional Adobe LiveCycle Components, including all Documentation and other materials
    provided by Adobe to Customer under this Agreement. Customer may install and use the Foundation Components solely for purposes of facilitating use of the OnPremise Software in accordance with this Agreement, subject to
    the following additional terms: Licensee’s right to design, implement and/or execute electronic processes that
    use the On Premise Software in any way is limited to Short-Lived Processes unless Licensee has obtained a valid
    license to the Production Software version of Adobe LiveCycle Process Management; (ii) Customer may install and
    use an unlimited number of copies of the LiveCycle Designer software installed as part of the Foundation
    Components, and its output, solely with the Foundation Components and specifically designed to operate with
    the Foundation Components; and (ii) for each single (1) Deployment, Customer may install and use five (5) copies
    of Adobe Flash Builder Pro software (or its successor) provided with the Foundation Components only if Adobe
    Flash Builder Pro is installed as part of the Foundation Components and used in combination with the LiveCycle
    SDK components to modify Additional Adobe LiveCycle Components and create Applications that integrate with
    the LiveCycle Software components; all other usage of Adobe Flash Builder Pro is prohibited.

  • Flex Builder 3 and Channel definition-error

    Hi,
    I'm developing AIR application which is connecting to third
    party dll via FluorineFx. I've FluorineFx Service running. Now the
    problem is that when I'm trying to run AIR app in Flex Builder 3 I
    get following error: "Channel definition,
    mx.messaging.channels.RTMPChannel, can not be found". Does anybody
    know what might be reason and how to fix this?

    Ok, solved the problem. Found answer from here:
    http://forum.fluorinefx.com/viewtopic.php?f=9&t=3
    I installed LCDS Express and then added fds.swc to my project
    from LCDS-folder.

  • Flex Builder, debugger and web application: how?

    Hello,
    I'm traying to setup a project in eclipse with both a java
    web application (servlets, jsp) and flex applications as a
    frontend. So I installed flex builder as a plugin on an eclipse+web
    standard tools, then created a WST web application project, and
    used the "Add flex nature.." of the flex plugin. I don't want to
    use the flex data services.
    Now, in a standard run (I installed a tomcat 5.5 and
    configured it in eclipse), my mxlm files are being correctly
    compiled into swf, and they are successfully calling my servlets
    (which simulates a backend xml-based interface).
    I'm having problems in debug: if I launch the debug profile
    related to tomcat, the normal version of the sfw will be used (even
    manually switching to the "-debug" version, it says that a running
    flex debugger has not be found on localhost). On the other way, if
    I launch the debug as a "flex application", it seems to work (it
    stops at breakpoints) but my tomcat is not started at all, the swf
    is accessed as a local file and all call to my servlet will fail..
    so it will stop working almost immediately.
    There is a way to setup eclipse to start standard java
    debugging with tomcat *and* the flex debugger?
    Thanks
    Cosma

    I found a workaround of sorts for the problem: don't
    terminate the applications!
    Previously, I would terminate the application using either
    the Terminate button in the Debug view or by closing the tab in the
    browser (Firefox). Now I just let them pile up in the browser and I
    rarely see this problem.
    In other words, I was having lots of trouble when doing
    Launch-Terminate-Launch-Terminate... but now I just
    Launch-Launch-Launch... and clean up once in a while.

  • The Blueprint Eclipse plug-in is live on Adobe Labs (for Flex Builder 3 and Flash Builder 4)

    Hi all,
    Last week, we posted the initial, Mac-only, Flex Builder 3-only release of the Blueprint Eclipse plug-in on Adobe Labs. Yesterday, we updated it to include support Windows and Flash Builder 4. Please try it out if you get a minute.
    For more info, see the Flex Doc Team blog: http://blogs.adobe.com/flexdoc/2009/06/the_blueprint_eclipse_plugin_i.html
    Regards,
    Randy Nielsen
    Flex Learning Resources Manager

    That's so cool.
    Thanks Randy.

  • Flex build errors and warnings not in English but in Dutch

    Hello Flash Builders,
    I'm using Flash Builder 4 beta and both Flex SDK 3.4 and 4.0 beta 2. The problem I have is pretty annoying. Many error and warning descriptions, which you see in the "Problems" pane in Flash Builder, are in Dutch. Why? I do not know. I never told it to and I can't find anywhere in the settings an option to change it. I did not download the Flex SDK in Dutch, if that's even possible. Unless they forced me to, because they found out I live in Holland I think I would like Dutch compile error descriptions.
    Though I am Dutch, most of the time the Dutch descriptions are fare more difficult to understand than the English versions. And looking up an error when you don't know what it means is also pointless, cause the most common language on the net is ofcourse English and not Dutch.
    Someone knows how to change the language of the compiler error and warning descriptions?
    Any help would be great!
    Many thanks.

    Hi,
    DBNetLib (Database Network Library) errors occur when the BizTalk Server runtime is unable to communicate with either the MessageBox or Management databases. When this occurs, the BizTalk Server runtime instance that catches the exception shuts down and
    then cycles every minute to check to see if the database is available.
    Check if there is any server restart activity happening every night?
    Alternatively, you might need to
    Set the SynAttackProtect registry setting as described in
    http://support.microsoft.com/kb/899599. Additionally,
    look at the Group policy for that SQL server to be sure that the Group Policy does not periodically UNDO the setting change that you did above.
    Refer:
    [DBNETLIB][ConnectionWrite (send()).]General network error. Check your network documentation.
    Other possible causes could be
    1) Low hardware specs (Could be hard disk memory issue, check the free space on the server)
    2) Sharing one server or disk for more than one group of BizTalk databases
    It could also be a network card issue that could we worked around by turning off TCP Chimney using the following command:
    Netsh int ip set chimney DISABLED
    For more information, see
    Microsoft support article 942861.
    Refer for details:
    Avoiding DBNETLIB Exceptions
    Similar issue reported here ->
    BizTalk service stopping automatically.
    Also refer this link and look into the description of Error 6,10 and 11.
    BizTalk - Errors and Warnings, Causes and Solutions 
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Can you run Flex Builder 3 and Flash Builder 4 side by side?

    I have what I hope is a relatively simple question. The company I work at currently has several Flex 3 projects nearing completion or in the latter part of their development phase, but we use SVN version control. It's my understanding that while you can use Flash Builder 4 to create and/or edit and publish Flex 3 projects, once you use FB4 on a version controlled project, anyone who checks that project out from SVN will need to use FB4 to edit the project. Assuming that is correct, can we have both FB3 and FB4 installed on our workstations, and switch between them depending on the projects we use? We're hoping to migrate our developers over to FB4 as they wrap up development on Flex 3 projects, but we may need developers working on Flex 4 projects to assist on the final stages of our Flex 3 apps. Just to clarify: we do not need both the FB3 and FB4 executables running at the same time, just the ability to close FB4 and launch FB3 and vice-versa without having error or compile issues. We use the standalone FB installs, not the Eclipse plug-ins, btw.

    Yes - to my knowledge, you can have FB3 and FB4 installed on the same machine without conflicts.
    Each version uses a separate default workspace, so provided that you don't try to share workspaces between the two versions, you should be safe.
    -Chris

  • Flex Builder for Linux will need his companion Thermo

    I’ve been developing in Flex for a long time now. My
    main work is in the design area although I do a lot of coding. The
    Flex Builder Linux testing is being quite difficult, since the
    layout design view is not enabled yet. So we need a lot of
    imagination and a little bit of experience in AS3 and MXML tag
    codding.
    As a designer (and developer  ) I would like to ask
    for a Thermo for Linux. It’s just a request, but I think
    there are a lot of guys that share my opinion.
    Thanks,

    Hi, thanks for your answer.
    It turned out the problem was related to the *standalone* flashplayer.
    This is located in linux in:
    FLEX_BUILDER_INSTALL_PREFIX/Player/linux
    when I was clicking on the "Run" button Flex Builder was looking for a flashplayer standalone app, and was failing to find it.
    What I had to do was to add the complete the flashplayer path to the PATH used by eclipse.
    Now clicking on "Run" it compiles the application and launches the standalone player with the generated swf file.
    Now I wonder if there is some way to select the flashplayer to launch, and if it is possible to configure eclipse to make it launch a  browser or a custom script rather than execute that swf with the standalone player.
    Thanks, regards.

  • Suggestions for Flex Builder for Linux

    I'm new to Flex, and I have to say that I'm enjoying it quite
    a lot. I think the thing that really helps speed up development is
    good tools. Flex Builder 3 for Linux makes a good start at
    providing a very nice development tool, but there are a couple of
    things I'd like to see different with this tool.
    First off, please give me an update site to use to install
    Flex Builder. I use Red Hat Developer Studio (soon to be JBoss
    Developer Studio, Eclipse 3.2 based), and I can't get FB 3 Alpha
    for Linux to install into it. I have been successful with base
    Eclipse Europa and FB 3, but I'd like to have my IDE tools in one
    frame. An update site would let me add FB 3 into any Eclipse flavor
    I choose, as long as it supported the appropriate components.
    Next, Design mode for FB 3 is a must. I am very functional
    with the content assist features in the source editor (and they are
    _quite_ good, I must say), but design view really helps me preview
    changes quickly and rapidly test out UI designs. Much faster than
    writing and launching over and over.
    Otherwise, great work, and please get out a new release
    soon!

    cdelashm wrote:
    > I'm new to Flex, and I have to say that I'm enjoying it
    quite a lot. I think
    > the thing that really helps speed up development is good
    tools. Flex Builder 3
    > for Linux makes a good start at providing a very nice
    development tool, but
    > there are a couple of things I'd like to see different
    with this tool.
    >
    > First off, please give me an update site to use to
    install Flex Builder. I
    > use Red Hat Developer Studio (soon to be JBoss Developer
    Studio, Eclipse 3.2
    > based), and I can't get FB 3 Alpha for Linux to install
    into it. I have been
    > successful with base Eclipse Europa and FB 3, but I'd
    like to have my IDE tools
    > in one frame. An update site would let me add FB 3 into
    any Eclipse flavor I
    > choose, as long as it supported the appropriate
    components.
    >
    > Next, Design mode for FB 3 is a must. I am very
    functional with the content
    > assist features in the source editor (and they are
    _quite_ good, I must say),
    > but design view really helps me preview changes quickly
    and rapidly test out UI
    > designs. Much faster than writing and launching over and
    over.
    >
    > Otherwise, great work, and please get out a new release
    soon!
    >
    >
    Thank you for your valuable feedback. Can you please take 2
    minutes to
    log an Enhancement Bug in the bug base so we can track your
    request and
    work on it as we proceed.
    http://bugs.adobe.com/jira
    (Choose Flex Builder Linux Project)
    Thanks
    Arun

  • Apps built with Flex Builder 2 - 3 not compatible with new Flash Players and/or new browsers, FB4 OK

    My applications built with Flex Builder 2 and 3 do not start in new versions of Flash Player and/or new browsers when run remotely. I have not been able to test all combinations of FP and browser versions but there is no problem with applications built with Flash Builder 4. Does anyone have info on this?

    Hi Dimitar,
    Did you close all the browsers (and applications which use
    Flash Player) when you install Flex Builder 3 Beta 3 or Flash
    Player? You can try manually installing it from <FB install
    location>/player/ directory. Here're some
    installation/unintallation instructions of Flash Player:
    http://labs.adobe.com/wiki/index.php/Flex_3:Release_Notes#Installing_Flex_SDK_3_Beta_3
    thanks,
    Sharon

Maybe you are looking for

  • How to keep socket alive

    Dear All Java Devotees.... I was stucked upon the following socket programming challenge in my projects first of all I have one Server and one Client what I wanted initially was client registered to server when the client abruptly terminated, it wont

  • Playlist shuffle resetting

    Hey all: For the longest time I had a 4th gen ipod and (obviously) the previous version of itunes. What I enjoyed doing was creating a regular playlist and putting all my favorite songs in there. Then I would hit shuffle and sync the playlist to my i

  • Mouse doesn't work in dropdown windows

    I can click on the menus in the command line with my mouse, but once the new window opens, I have to use my tab key, arrow keys and Enter key to navigate within that window.  The mouse simply doesn't work.  I'm running Windows 7, and working, of cour

  • Help formatting data into 3d surface

    Hi Folks, I'm struggling trying to display some data in a 3d plot. I'v studdied the example here but am getting no where! http://forums.ni.com/ni/board/message?board.id=170&message.id=433150&query.id=1242328#M433150 Basically the data I'm interested

  • How to get my OEM key?

    I have r61 8932-AEG with win xp sp2. The sticker is almost unreadable and I couldn't find out couple of signs. Could someone tell me what is the fastest way to get my OEM key? To contact Lenovo or Microsoft? R61i 8932-AEG, Windows XP Pro SP3, BIOS: 2