Flash Builder 4.6 (OS X 10.8.2) doesn't see android device, adb does

Using the command line tools I can view devices and install builds, but I can't get Flash Builder to see the device.
I'm testing on a Nexus One running 2.2.

On windows I see it here:
~: find /c/Program\ Files/Adobe/Adobe\ Flash\ Builder\ 4.6/ -name adb.exe
/c/Program Files/Adobe/Adobe Flash Builder 4.6/sdks/4.6.0/lib/android/bin/adb.exe

Similar Messages

  • Is Flash Builder dead? I just found out that adobe has dropped Flash on mobile devices

    I did alot of research on software to develop apps for the mobile market. I liked Flash Builder since it will create apps for all 3 types of mobile devices at once. Downloaded the 30 day trial and have started on the 5 day training course.
    Today I saw an article from sitepoint that abobe has dropped development and support for Flash on mobile devices.
    The end result of Flash Builder gives you a .swf file in an html wrapper thus we are developing flash when adobe has dropped Flash for mobile. Am I wasting my time? Should I go to another software package?
    http://www.sitepoint.com/adobe-abandons-mobile-flash/
    Adobe Abandons Flash on Mobile Devices
    HELP

    the plugin for mobile browsers is the only thing they will not update in the future. The normal desktop browser plugin is very alive
    Everything else is active... they are still continuing to work on exporting to Android,iOS, and rim playbook via AIRapps in both flash builder and flash pro.
    The only difference going forward is mobile websites viewing flash (apps are unchanged). Basically... apple won
    Not a big deal so far, but everywhere you look people are frantic and asking -whats next?
    I like air for ios and android. Im sticking with it

  • When Flash Builder 4.6 for PHP is released will it support AIR 3.2 ???

    We've all been waiting a long time since last November's Private Beta of Flash Builder 4.6 which was released shortly thereafter, for the Flash Builder 4.6 for PHP version.
    However, Flash Builder 4.6 for PHP (The one with Zend Studio included in it) is scheduled for 2012 - Q1 release, meaning?
    I guess, at the latest March 31st.
    This is significant, because AIR 3.2 is Great, but it will Live or Die based on what happens, I believe, in the next year, the new demo with the 2 geniuses at Adobe, Lee Brimelow and Thibault Imbert, which essentially ARE the driving intellectual force behind AIR, make me feel more comfortable than the management at Adobe,
    http://tv.adobe.com/watch/adc-presents/hardware-accelerated-graphics-for-mobile-games-with -adobe-air-32/
    So, when FB 4.6 for PHP is released, will it support AIR 3.2?
    There's another thing, there are a ton of job offerings for iOS 5 or Android Java, but no AIR (very few and the damage control fromthe eff'ed up press release is still meandering).
    Adobe needs to compliment its consumer base and developer base, with a Developer Network for Corporate integration so there are contracts out there for us who live between our dream ideas and meals, by doing contracting work, and it'd be nice to do it in Flash Builder 4.6 instead of taking on an iOS 5 or Android Java or PhoneGap project.  At least for Gamers.
    REPORTS: Social Gaming will be a $5B industry by 2015. The total mobile market will be a $15B industry by 2015.
    I'm shooting for the Social Gaming, and I like what I see in the above video.
    But again, people have to pay bills, why doesn't Adobe reach our to Corporations for certified developers like Mickysoft and Apple?

    I worked it out in the end - I had to uninstall FB4.5 and reboot. Why couldn't the installation say so instead of just crashing? I found this out, by the way, by trying to run the installer created under c:\program files(x86)\adobe\adobe flash builder 4.6. That one told me at least that I had to uninstall a previous version, though even then it was coy about which one

  • Flash Builder 4 - RemoteObjects

    I'm having an issue with remoteobjects in flash builder 4. I built a simple little project to see if I could get remoteobjects working.
    I got the project working and the output folder resides on a web server on my local LAN (not the machine with flash builder installed).
    Here is the issue I am having...
    When I build the app from from flash builder 4 the project launches everything works fine. If I open the URL of the project on the web server from my machine with flash builder 4 on it the project works fine. If I open the URL from any other machine the calls to the remoteobject do not work. I've scoured the web and haven't seen anyone else run into this issue so I'm assuming its something I'm doing wrong.
    I am on a trial version of flash builder 4. I just wanted to mention that but I don't see how that could be the issue.
    I've tried both methods of defining the remoteobject endpoint (both at runtime as one of the MXML remoteobject properties, and via a services-config.xml using the compiler argument -services PathToConfigFile). In each case the project runs and works fine from the machine with flash builder 4 installed on it but just not any other machine. I've also tried defining the -context-root thinking that may have been the issue still no dice.
    Any help would be greatly apprecaited.
    I'm not sure how useful the code would be as the project does work but here it is in any event...
    APPLICATION FILE:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application 
    xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="
    library://ns.adobe.com/flex/spark" xmlns:mx="
    library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    <s:RemoteObject id="testRO"source="
    TestRO"destination="
    TestRO"endpoint="
    endPoint.php"showBusyCursor="
    true">
    <s:method name="say" result="say_resultHandler(event)"/>
    </s:RemoteObject>
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    import mx.controls.Alert; 
    import mx.rpc.events.ResultEvent; 
    protected function say_resultHandler(event:ResultEvent):void
    Alert.show(String(event.result));
    ]]>
    </fx:Script>
    <s:TextInput x="73" y="73" id="repeatEntry"/>
    <s:Button x="209" y="73" label="Say" click="testRO.say(repeatEntry.text)"/>
    </s:Application>
    PHP ENDPOINT:
    <?php
    //Define error reporting for this application.
    error_reporting(E_ALL|E_STRICT);
    //Set the display_errors in the php.ini
    ini_set("display_errors","on");
    //Path to the Zend server.php file.
    require_once 'Zend/Amf/Server.php';
    //require your php class file ('DIRECTORY/CLASS.PHP').
    require_once 'TestRO.php';
    $server = new Zend_Amf_Server();
    //Class name for the server (Same as the php file name).
    $server->setClass("TestRO");
    //Handle request
    echo ($server->handle());
    ?>
    PHP CLASS FILE:
    <?php
    class TestRO
        public function say($text)
           if($text =="")
       return "+++ Field left blank +++";
        } else {
          return "+++ ".$text." +++";

    I've resolved the issue sort of...
    I exported a release build then re-tested the application and it works fine. For some reason while the application is in debug mode the remoteobject method calls aren't working on any other machines on the network... I still have no idea why... is this a new feature to prevent folks from using the debug swf's in production?
    In flex 3 I'd give the PROJECT-debug URL to my manager so he could track my progress but I was using the httpservice class and it worked without issue. In any event if someone knows the answer or has any additional information it would be greatly appreciated.
    Thank-you.

  • Multi-module Maven and Flash Builder 4

    Sorry for cross-posting this, but I responded to:
    http://forums.adobe.com/message/3235768#3235768
    which was posted in the Flex forum, and this is more about Flash Builder. The issue is that content assist doesn't work with a multi-module maven project containing a Flex Project module. So here is my response to the above. Hopefully someone will see it here:
    <quote>
    I'm having the EXACT same problem reported by you as well as here:
    http://forums.adobe.com/message/2580402#2580402
    Steps to reproduce:
    1) Install Adobe Flash Builder 4 Standalone (I initially tried with Spring Toolsuite 2.5.0, but thought I should try with the standalone version from Adobe).
    2) Open FB4 and create a brand new workspace
    2) Add Eclipse Galileo and M2Eclipse as update sites
    3) Install m2eclipse
    4) From the command line, create a basic maven project via 'mvn archetype:create'.
    5) Remove the src folder and change packaging type to pom
    6) In FB4, import the new maven project
    7) Create a new Flex Project via File -> New -> Flex Project. Change the location so that it's in a folder under your newly created maven project
    8) Open Main.mxml -- notice that the generated file has syntax errors in it (another issue). Fix those errors and attempt the Content Assist -- no dice
    Notice that this is a vanilla FB4 standalone install. The only thing I added was the M2Eclipse plugin. Also, I am NOT using flexmojos, nor have I added a <modules/> section to the parent pom yet. As far as FB is concerned, the new flex project is just in a folder underneath another in it's workspace. Also note that this is a brand new workspace -- so a corrupted workspace shouldn't be an issue (as was apparent in the beta).
    This has been driving me nuts. We need this functionality. We have a multimodule maven project and really want to use Flex and Flash Builder. We're still in the eval period for FB, but may have to forgo buying FB and instead go with FlashDevelop, even though it's not as powerful.
    Justin
    </quote>

    Hi guy,
    its actually quite simple.
    The  "Root Folder"  "Root URL" "Context Root" define your server directory and its url.
    as the root folder you put in
    <your blazeds install dir>/tomcat/webapps/<your project dir> // you take the blazeds.war file and copy it , rename it and voila your app dir is ready
    so it should read something like : c:\blazeds\tomcat\webapps\my_project --> this then has a WEB-INF/flex directory in it. Thats why you have that error of yours  --> Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml.
    the root url is something like
    http://localhost:8400/<your context root> --> is usually your project name in lower case
    the context root is your project name, the same name as your copied blazeds.war file
    <my_project_name> --> thats what you insert to access your app in a webbrowser
    Hope that helped a bit
    I am just getting started myself, so i hope i didnt make any mistake, if so I would also be happy if anybody you knows better corrects me    
    Have fun and good luck
    einrocker

  • 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

  • New to flash. I import a flash professional project into flash builder but don't see a design mode

    in flash builder to place object onto!!!
    I can see design mode if I import a catalyst project, as well an mxml file, but not with flash professional. Any help?

    in flash builder to place object onto!!!
    I can see design mode if I import a catalyst project, as well an mxml file, but not with flash professional. Any help?

  • Flash Builder 4.7 licence activation

    Hello,
        My company bought a flash builder 4.7 premium licence, but apparently it doesn't work...
         I created a small projet to test and add that piece of code to see if it's ok :
    protected function applicationCompleteHandler(event:FlexEvent):void
                                            Many features require a Flash Builder Pro (Premium) license to function properly (i.e. automation)
                                            The LicenseUser class registers a handler (LicenseHandler) to be called if a Flash Builder Pro license is NOT present;
                                            if a Flash Builder Pro license IS present, then the compiler will remove the LicenseHandler class for the SWF
                                            if (Class(this.systemManager.getDefinitionByName("licence.LicenseHandler")))
                                                      Alert.show("This SWF was compiled WITHOUT a Flash Builder Pro license")
                                            else
                                                      Alert.show("This SWF was compiled WITH a Flash Builder Pro license")
       [RequiresLicense("mx.fbpro", handler="licence.LicenseHandler")]
        public class LicenseUser
            public function LicenseUser()
        public class LicenseHandler
            public function LicenseHandler()
    It's a piece of code we can find on some forum and works for some people.
    But the message which is displayed is always the first one => "This SWF was compiled WITHOUT a Flash Builder Pro license"
    I found that page (http://helpx.adobe.com/flash-builder/kb/flex-automation-issues-flash-builder.html) to replace the licence.jar but it still doesn't work...
    The profiler doesn't work either...
    Have you got any ideas please ?
    Thanks.

    Hi
    I am having same issue.
    Have followed the instruction at: http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html
    When go to compile my mobile flex app I get cant resolve ViewNavigationApplication and new flex mobile projects do not 'finish' when using the wizard.
    [Update]
    Have AIRSDK 3.5 with ASC 2.0 is working nicely. Also must remember, when updating SDK need to make sure there are not firewall restrictions to the new commands (adt)
    This has solved my ios deployment issue with AIR 3.4 (which was only reason invesigating AIR 3.6 in the first place)

  • Flash Builder 4 Beta Annoying - Keep imports organized - default feature - fix

    I Began using Adobe's Flash Builder 4 Beta and started coding Actionscript code; I imported classes and at time intervals, Flash Builder 4 beta deleted my unused imported classes. It was really annoying since I imported all of the classes I need in the project. I think that the Flash Builder 4 should have this option turned off by default. I searched around the internet and found this to fix it. GO TO: Window -> Preferences -> Flash Builder -> Editors -> Actionscript Code. Uncheck "keep imports organized". See the image below. Hope it helps someone.

    Hi Pat
    That is the "Mark Occurances" feature. Click into the editor window, then on your toolbar you should see the "Mark Occurances" button, looks like the tip of a yellow highlighter. Toggle it off and that goes away. Obviously something some folks like on, others hate, but since you can toggle it shouldn't be a big deal.
    Sincerely
    Mark R. Jonkman

  • Cant remove/re-install flash builder after losing secondary drive

    OS: Windows 7
    FlashBuilder: 4.5
    I recently lost my slave HDD that flash builder was installed on. When I try to reinstall flash builder on my primary drive, it seems to be picking up install information (possibly from registry) from my already installed copy on the lost drive, and wont let me change it. As you can probably imagine, the install fails when trying to install to a drive that doesn't exist anymore.
    I cant uninstall the old copy of flash builder, for the same reason that the drive doesn't exist anymore
    I've tried running the Adobe Creative Suite Cleaner Tool - but that in essence did nothing
    Any ideas?

    For what it's worth, Christopher and other posters, only the info upto and including the Exception: and the Thread that crashed is of any use AT ALL. If you pare down the post, it's easier to weed thru all that chaff.
    From your posting, it does look an awful lot like something about Quicktime is giving you the problem. It may be video card related, but remember, CPU upgrades like you are running (a 1.25gig CPU in a 6 year old computer) are notoriously flakey. Speeds (and the hardware to handle them, including faster ram) have gone up 1600% since your system was manufactured.
    I'd wager, btw, that you could take a video card newer than the Rage 128 - maybe not a brand new one, but pick up some 64MB Mac ATI affair and I bet you'd be better off...
    Patrick

  • Transform Gestures for Flash Builder and Adobe AIR Mobile Development | ADC Presents | Adobe TV

    Senior Technical Evangelist Duane Nickull illustrates using transformation gestures in Flash Builder, and discusses best practices for zoom events when developing for mobile devices.
    http://adobe.ly/wLSaNj

    How would the app zoom to a point

  • Use Flash Builder to Develop Adobe AIR Apps for Android | Flash Platform in Action | Adobe TV

    Former Adobe Technical Evangelist Ted Patrick uses Flash Builder to develop and deploy an Adobe AIR application to his Android-powered smartphone.
    http://adobe.ly/wif9U5

    autoplay can cause a tremendous amount of problems for site visitors. is it possible that adobe might turn off autoplay?

  • Failed to install Flash Builder

    Hi,
    I am using Adobe Cloud and start with some instalations I need but Flash Builder failed.
    The error is:
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW050 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 10 error(s), 0 warning(s)
    ----------- Payload: {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0 -----------
    ERROR: Error 1935.An error occurred during the installation of assembly component {937FF758-7DED-3922-B192-1CA34A6D9AC2}. HRESULT: 0x80070BC9.
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1935.An error occurred during the installation of assembly component {937FF758-7DED-3922-B192-1CA34A6D9AC2}. HRESULT: 0x80070BC9.
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Player for Embedding 3.201: Install failed
    ERROR: DW050:  - Suite Shared Configuration CS5.5: Install failed
    ERROR: DW050:  - Adobe Flash Builder 4.6: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFC_x86: Install failed
    ERROR: DW050:  - AdobeTypeSupport CS5: Install failed
    ERROR: DW050:  - AdobeHelp: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFCLOC_x86: Install failed
    ERROR: DW050:  - AdobeCMaps CS5: Install failed
    Please help as I need this app running.
    Thank you in advance.

    Hi again,
    now it is with status "installed" into Application Manager but no app is available. How to re-install the program. I'm desperate.

  • Flash builder 4.5.1 and Android

    Hello,
    Am new to flash builder 4.5.1...i want to develop an android mobile application using flash..can anyone show some references to get started?Suppose i have a login page..when i click login the page should redirect to a home page..I just created a new project ie,File..>new..>"flash mobile project".I got two files "Main.mxml" and "Mainhome view.mxml"..Now my question is where should i write the code of login page/how can i switch to a new home page when i click login??Please let me understand the wwork flow...show some references or explain the thing..please..
    Thanks

    Moving thread to mobile development and notifying our iOS team to take a look.  If you find a specific issue you consider broken, please post again in the bugs forum and we'll investigate further.
    Chris

  • BlazeDS service introspection/code gen in Flash Builder

    The data-centric development features in Flash Builder support introspection of BlazeDS/LiveCycle Data Services destinations. You can use a wizard to introspect a remoting or web service destination and generate client-side proxy objects for working with the destination. For more information on using these features, see Building model-driven applications in the developer guide for LiveCycle Data Services 3 beta 1.
    Note: To use these features, you must have Flash Builder 4 Beta 1 and BlazeDS 4 Beta 1.

    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

Maybe you are looking for

  • SQL Loader or UTL_FILE , Which is better ??

    Hello All, In my system I have to Download the data from a file each day in some table. The file is of fixed format. And the number of records (lines) in the file is not more than 1000 (say) each day. I would like to know for such scenario what will

  • IDOC: Message type:Business connector

    Hi I'm sending purchase order idocs to Business connector but it gets rolled back. Because i'm using VN as a partner function and a vendor number as partner, the sender are the purchase org and receiver is the Vendor. How can i ensure that the sender

  • How to execute BAPIs by getting the input from the user through the browser

    Hi, I have created a simple xMII transaction using BAPI. It is a simple BAPI with one input. Now i want the transaction to be executed by getting the input from the user through browser. Once the user enters the value and clicks on a button, I want t

  • Photostream does not sync when photo taking away from wifi.

    iPhone 4s take a photo connected to wifi, photo uploads to photostream. Photo taken while not on wifi, and then iPhone connects to wifi, photo does not sync. The only way photos seam to sync consistently is if you are connected to wifi while you take

  • Shape Object panel disapear in french version of MOTION3 !

    I found a bug in motion 3. It's about shapes and paintings. When you draw a shape with the paint tools and make few changes in the in the shape object panel, this panel disapears. You can't access any paramaters after that. I found a solution This bu