Flash Builder doesn't see my ios8 devices

My dev environment was working fine a couple months back, hadn't made any changes and came back to work on a mobile app.  Now Flash builder cannot see my ios 8 devices.  I think the problem is ios8 and related to provisioning profiles not being installed.  Which of course I can't verify because apple has conveniently removed the ability to see the installed profiles... I have regenerated the provisioning profile and know that the device I am attempting to use is listed.  Honestly this should have even been needed since it was working fine before. 
Also I can manually install the app on the device using itunes, however the device will not open, again implying that the profile is missing which is causing the issue.
If anyone has any suggestions please let me know.  This has been very frustrating-- apple always seems to be making things more difficult for those who don't follow their dotted line.
Also updated my sdk to 4.14.1.
Thank-you,
Jonathan

After I hit run the URL that is shown on Firefox is the last page that I was on, so in this case, 'this' pages url; therefore, has nothing to do with what I'm trying to run. So in this case it would be "http://forums.adobe.com/post!reply.jspa?message=3625965"
Now as for which version:
Flash Player version: MAC 10,2,153,1 debugger version
Mac OS: 10.6.7
Update: Alright, it seems to have been some Firefox bug. I upgraded to Firefox 4.x on a haunch and somehow it must of reset whatever that was causing the problem and it now works as nornal. Thanks for the help though, appreciated.

Similar Messages

  • Flash Builder doesn't rebuild the project everytime I modify the code

    Hi,
    Flash Builder doesn't rebuild the project everytime I modify the code.
    I find myself chasing ghosts when trying to debug my project. Flash Builder 4.0 doesn't rebuild my project after every change I make.
    The "Project - Build Automatically" is of course selected. To make sure the problem is real I ran "Project - Build All" several times. Nothing helped.
    For example, I am using a boolean constant to select different code in an if block. Even if I change the value of the boolean, When I debug the code, I see that the constant's value doesn't change. Only If I log out login again, FB will rebuild my code.
    This happens too many times and it is very confusing to debug, when you don't know if the result now is with or without your changes.
    It also affects the following:
    - breakpoints that are set or disabled are not taken into account and the debugger will skip them even if they are set or stop on them if they are disabled.
    - the debugger stops the debug on empty lines, if those lines previously contained code.
    - When I comment out the declaration of variables. Eclipse doesn't recognize them and doesn't show any hint on them when you hold the CTRL key and hover over, but while in debug mode, when you hover over the variable instance, its shows a value for it.
    Thanks for your help.
    Bye,
    RaamEE-IL

    The problem is with the SDK settings selected for the Compiler.
    Try going to 'Project' > 'Properties' > 'ActionScript Compiler'.
    Now, in the 'Flex SDK section', try changing the SDK. Click on 'Apply'.
    This will force FB to rebuild all settings for the project.
    You can try again. FB should now have started compiling with latest code changes again.
    Please Note: This is not a permanent fix though!
    In case the problem re-occurs, you'll need to again perform the steps mentioned above to get FB back on track.

  • Flash Builder doesn't recognize instances from Flash CS.

    I've currently started working with Flash CS 5.5 and I use Flash Builder 4.6 to work with AS3 files.
    A problem arrised when I try to access an instance of a symbol placed on the stage or inside of another symbol.
    Flash Builder doesn't recognize the existance of said instance and shows this as an error. (The code compiles fine though.)
    Is there any way of bringing instances placed using the Flash CS Editor to Flash Builder's attention?
    (I've also noticed that even the code editor of Flash CS doesn't recognize these instances.)
    Thanks in advance.

    After I hit run the URL that is shown on Firefox is the last page that I was on, so in this case, 'this' pages url; therefore, has nothing to do with what I'm trying to run. So in this case it would be "http://forums.adobe.com/post!reply.jspa?message=3625965"
    Now as for which version:
    Flash Player version: MAC 10,2,153,1 debugger version
    Mac OS: 10.6.7
    Update: Alright, it seems to have been some Firefox bug. I upgraded to Firefox 4.x on a haunch and somehow it must of reset whatever that was causing the problem and it now works as nornal. Thanks for the help though, appreciated.

  • Flash Builder Burrito - Enabled Geolocation in running device?

    Hi, I am developing a simple app that will show user's geolocation in the map.
    I use code like this:
    protected function view1_creationCompleteHandler(event:FlexEvent):void
         if( Geolocation.isSupported )
               g = new Geolocation();
               g.setRequestedUpdateInterval(100);
               if( g.muted )
                   // Don't do anything if device's sensor is muted.
                    return;
               g.addEventListener(GeolocationEvent.UPDATE,geoLocation_UpdateHandler,false,0,true);
    Then I modified application.xml in project like this (following Ryan Strewart's video in Adobe TV):
    <android>
        <manifestAdditions><![CDATA[
        <manifest android:installLocation="auto">
            <!-- See the Adobe AIR documentation for more information about setting Google Android permissions -->
            <uses-permission android:name="android.permission.INTERNET"/>
            <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
            <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
            <uses-configuration android:reqFiveWayNav="true"/>
            <supports-screens android:normalScreens="true"/>
            <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
        </manifest>
    ]]></manifestAdditions>
      </android>
    Then I use Flash Builder Burrito to install and run application into device. The Geolocation object is muted. Even I turn on all geolocation setting. An interesting thing is, Geolocation is work in Flex de tour Mobile application.
    I use Samsung Galaxy S with Froyo 2.2

    I was able to test the Geolocation object successfully on a Motorola Droid using the following code:
    GeoTest1.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:MobileApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                         xmlns:s="library://ns.adobe.com/flex/spark" firstView="views.GeoTest1Home">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
    </s:MobileApplication>
    GeoTest1Home.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark" title="Home"
            creationComplete="view1_creationCompleteHandler(event)">
        <fx:Script>
            <![CDATA[
                import flash.sensors.Geolocation;
                import mx.events.FlexEvent;
                private var g:Geolocation;
                protected function view1_creationCompleteHandler(event:FlexEvent):void
                    if( Geolocation.isSupported )
                        g = new Geolocation();
                        g.setRequestedUpdateInterval(100);
                        if( g.muted )
                            // Don't do anything if device's sensor is muted.
                            msg.text = "geo muted";
                            return;
                        msg.text = "geo active";
                        g.addEventListener(GeolocationEvent.UPDATE,geoLocation_UpdateHandler, false,0,true);
                protected function geoLocation_UpdateHandler(event:Event):void
                    msg.text += "\ngeolocation updated";
            ]]>
        </fx:Script>
        <s:Label id="msg" text="foo"/>
    </s:View>
    GeoTest1-app.xml
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
         <id>GeoTest1</id>
         <filename>GeoTest1</filename>
         <name>GeoTest1</name>
         <versionNumber>1.0.0</versionNumber>
         <initialWindow>
              <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
         </initialWindow>
         <android>
              <manifestAdditions>
              <![CDATA[
                   <manifest android:installLocation="auto">
                        <uses-permission android:name="android.permission.INTERNET"/>
                        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
                        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
                        <uses-configuration android:reqFiveWayNav="true"/>
                        <supports-screens android:normalScreens="true"/>
                        <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
                        <application android:enabled="true">
                             <activity android:excludeFromRecents="false">
                                  <intent-filter>
                                       <action android:name="android.intent.action.MAIN"/>
                                       <category android:name="android.intent.category.LAUNCHER"/>
                                  </intent-filter>
                             </activity>
                        </application>
                   </manifest>
              ]]>
              </manifestAdditions>
         </android>
    </application>
    Please try the above and see if it works.
    -- Tom
    Flex SDK engineer

  • Flash Pro Doesn't See Ipad - Debugging

    Hi. I have both Flash Pro CS6 and CC. For some reason, under the debug heading the option "on device via USB" is always greyed out, completely unselectable. This is strange because I am able to publish perfectly fine from flash builder. Do I need to do something extra to make flash pro aware that I am connecting an ipad?

    can you see your usb connected device in a file browser?
    have you ticked install application on connected ios device in the air for ios settings panel?
    with flash cc, did you click the refresh device list debug>debug movie>on device via usb?

  • Flash builder 4.7 debug via usb device iPhone 4s - device not found

    I cannot find my iphone 4s while trying to debug via usb =(
    i exported ipa and installed it via itunes - this works. but i would love to debug on device.
    im using actionscript mobile project air 3.4
    im using windows 7
    ==================offtopic====================
    also how do i add icons for iphone?
    Thank you for your time! Cheers!

    Hi ,
    Please provide more info on the above issue:
    1.What is the message shown when you try to debug the application via USB on iOS device ?
    2.Are you able to debug on other iOS devices ?
    Run this below command from commandline :
    "C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\eclipse\plugins\com.adobe.flash.compiler_4.7.0.348139\AIRSDK\lib \aot\bin\iOSBin\idb.exe" -devices
    Note:Make sure your  device is connected to the machine.
    The above command should list all the iOS devices connected to the machine. If a single device is connected,Flash Builder installs application  on device and waits for debugger connection. If multiple devices are connected, choose device dialog will be shown.
    Thanks,
    Sanjay

  • Flash builder doesn't load on flash player 11,only version 13

    Hi everyone
    I developed a swf player on flex builder 4.5, over flex sdk 4.6, using the minimum version required by the sdk(11.1)
    But for some reason, the script code only works fine on flash player 13.
    What am i missing?
    On the flash player 11 this is written by swfobject.js
    <object id="CorePlayer" name="CorePlayer" width="0" height="0" type="application/x-shockwave-flash" data="assets/CorePlayer.swf"><param name="allowscriptaccess" value="*"><param name="allowfullscreen" value="true"><param name="wmode" value="transparent"><param name="flashvars" value="endpoint=&amp;hash="></object>
    And this is the javascript code using swfobject.js way:
    var swfVersionStr = "11.1.0";
                    var xiSwfUrlStr = "playerProductInstall.swf";
                    var flashvars = {
                        endpoint: "",
                        hash: ""
                    var params = {
                        allowscriptaccess: "*",
                        allowfullscreen: true,
                        wmode: 'transparent'
                    var attributes = {
                        id: "CorePlayer",
                        name: "CorePlayer"
                    swfobject.embedSWF("assets/CorePlayer.swf", "flashContent", "0%", "0%", swfVersionStr, xiSwfUrlStr, flashvars, params, attributes);
                    swfobject.createCSS("#flashContent");
    But doesn't load corePlayer.swf on the networks resources from chrome.
    Any ideia about this issue please thanks for your attention!!
    Also some others tecnichals settings

    From: Bill Boggs
    Sent: 01/04/2014 1:13 PM
    To: [email protected]
    Subject: Re: Flash player doesn't load on PBS sites
    Hey Mike,
    Those folders do exist. I did a clean install, checked to make sure those folders were there, but still get the same results with video on PBS sites. Seems to work everywhere else though. When I right click on the player space, besides the flash player settings and “about” links, there is also an “about JW player” link, if that means anything.
    Bill

  • Flash Builder doesn't launch my app nor debugger

    Hi, very odd.
    Flash Builder all of a sudden stopped launching my app or the debugger.
    When I press run Flash Builder switches to my browser (Firefox 3.x) then nothing.
    Doesn't open a new tab, no error messages, nothing.
    Exact same thing when I try to debug, except I get an error saying it failed to connect, session timed out.
    It also says to make sure it was compiled with debugger on (huh?) and that I'm running a debugger version of Flash which I am.
    Not sure what to do now. There is no real error message, and no odd behavior other than it just not doing anything.
    Any idea?

    After I hit run the URL that is shown on Firefox is the last page that I was on, so in this case, 'this' pages url; therefore, has nothing to do with what I'm trying to run. So in this case it would be "http://forums.adobe.com/post!reply.jspa?message=3625965"
    Now as for which version:
    Flash Player version: MAC 10,2,153,1 debugger version
    Mac OS: 10.6.7
    Update: Alright, it seems to have been some Firefox bug. I upgraded to Firefox 4.x on a haunch and somehow it must of reset whatever that was causing the problem and it now works as nornal. Thanks for the help though, appreciated.

  • Flash builder doesn't start !

    Hi,
    I have a cloud version of flash builder and resently I try to start like usual and nothing append !
    I try to reinstall it burt no changes !
    any help ?
    sorry the solution is here http://forums.adobe.com/message/5202497#5202497

    Ok, problem solved.
    First I uninstalled the flash builder plugin, and eclipse galileo was still not starting.
    Then I uninstalled java (both jre/jdk, v6.20).
    Crossing my fingers, I reinstalled jdk and then jre (latest downloaded); and eclipse ran again (pheeeew!).
    Finally, I installed flash builder 4 plugin again, it works too (!), and aptana works, ... all is working back again, fine!

  • Flash Builder (4.5.1) iOS on-device debug crash

    Hi all,
    I've got a Flex app that I'm building for an iPAD and I can debug it on the simulator and on the iPad device (if I select 'fast' packaging method).
    The problem is when I want to debug on the device using the "Standard" option for packaging (which takes several minutes) or try to do an export release for the iPad, the application starts up and immidiately terminates after the splash screen.
    Any clues would be greatly appreciated.
    Cheers,
    Bashar

    Hello Season.W,
    I finally managed to resolve this issue. It was due to an xml file that wasn't included in the "package contents" in the "export release build" window.
    Imagine you have an "assets" folder in your project where you keep xml files, images, sounds etc. Sometimes the compiler doesn't actually pick up references in the code for these assets especially if you're referencing a file like:
    var configFileLocation:String = "assets/xml/config.xml";
    The compiler won't pick up the fact that it needs this file so it doesn't include it in the final release. In the release window, just check the "package contents" window to ensure all the necessary files are there. If you notice that they're there but unchecked (there's a tick box), then you can simply tick the checkbox.
    Other times you don't even see the asset/file in that window. I read a nice hack to get around this issue. You simply click "back" on the "export release build" window, then go to Windows Explorer (or Finder in Mac) and find the "bin-release-temp" directory. You can copy all the necessary files/assets in there manually. After copying, just go back to the "export release build" window and click "next", you will then be able to see all the files you added in the "package contents". This way you can ensure that your application gets packaged with all the necessary external files.
    Phew! I'm so relieved that I found the problem tho.. Thanks for your suggestions as well. I will keep those in mind.
    Cheers,
    Bashar

  • 6110 Navigator - doesn't see other BT devices

    This is really starting to give me the sh*ts.
    I cannot see any other bluetooth devices with my 6110 Navigator, even when the other device is 5cm away.
    I recently purchased a "Pilot-mini" BT hands-free (think similar to Blue Ant "Lite") and my 6110 can't see it, even if it's right next to it.
    Checked (& rechecked) that I was trying to pair the two as per the instructions, both from Nokia & Cellnet (hands-free manufacturer) but phone won't see/recognise the hands-free unit.
    Have tried pairing with a different BT hands-free - same result. I can't even pair with another mobile with BT. The other mobile has to establish connection, as mine can't/wont see it.
    Any ideas anyone? Something is really screwy with this.

    The very first thing I would do is Plug in anything you want to use and restart your machine and see if everything is there now.  Sometimes you should be able to just plug in a peripheral device and it will or should automatically show up on your desktop. Often a simple restart will solve the issue. I have found that if you have several different Applications open they will not show up on your desktop, and require a restart to get things back to normal.
    Good Luck and tell me if this works for you,
    Welcome to the Discussions
    Don

  • Flash CC can't see my iPad device

    I'm running the latest Flash CC with Air 3.9x. When I plug my 3rd gen iPad (iOS 6) in via USB, iTunes sees it immediately, but it never registers under Install Application on Connected iOS Device, no matter how many times I hit refresh.
    What's going on? How can I get my device to show up? I can't seem to find any documentation on such a situation.
    PS: I've successfully deployed to this device many times using FlashBuilder. This is my first time attempting to use Flash CC as my workflow.

    I had similar problems connecting my android tablet to cs5.5
    (This was on Windows7)
    The solution was finding an alternative (not native) driver for my tablet.
    Only then Flash would accept connection from the tablet.
    https://groups.google.com/forum/#!forum/ios-driver
    It could also be possible that with some new ios update, apple prevents developing per default.
    In newer android versions you had to explicitely allow the device to be used for dev-purposes.

  • ITunes doesn't "see" MP3 player device

    Any thoughts? My computer knows the device is plugged in. Windows Media Player knows the device is plugged in. iTunes doesn't. I'm sure it's some silly setting I haven't clicked or unclicked or something along those lines.
    Thanks

    As Meg already pointed out, you won't be able to sync the device directly with iTunes.
    However, if all you need to do for the MP3 player to find the songs is copy them to the device, find the device in "My Computer" and open it. Leave this window open.
    In iTunes, select the songs you want to copy to it, then drag the selection into the open Explorer window. The files will be copied to that location.

  • Flash player doesn't see built in iSight cam

    Using an app that I want to give access to my cam and mic.  iMac OSX10.6.3, Firefox 3.6.3., built-in iSight cam.  Dialog box asking me to allow/deny comes up, but I can't click on anything.
    Right click, click settings, can't make any changes to that dialog box either.
    Went to Adobe Flash Player site, settings manager, Global Security Settings tab, typed website into box and set for allow.  Note: on this tab there is a lock showing, but still allowed me to put site in.
    Site is also "allow"ed on Privacy Settings Panel.
    Camera Settings does not show iSight camera, but only Logitech Cam (which is not on computer).  Same for microphone tab.
    This also happens with Safari, and on my Macbook Pro, which is in a different location and a different network and ISP.  At one point, I got it to allow access tby the website, but it still didn't recognize the camera.  Reinstalled Flash Player and now back to square 1.
    Any idea what I'm missing?  Thanks.

    OK, I'm familiar with the VW. I didn't know Igor had switched to Mac.
    I get this when I try to open the bb uploader in Firefox:
    It is a static popup, meaning I can neither click allow or deny, nor can I close the window. Only option is to close the page itself. This on a MacBook Pro (late 2009 Unibody, 13" with built in iSight and Flash Player 10.0.45.2 (browser plugin).
    I'd have to say the trouble isn't with the MacBook, or with Flash, but Igor's software in the bb upload. My Vista machine with a Logitech, initializes immediately after I click Allow, which I can't even do with the Mac.
    As an aside, the VW does have the option to upload from your HD. You can simply take the pic using PhotoBooth, and upload it.
    Edit:
    I was able to initialize the bb uploader using Safari, and selecting USB Video Class Video in the advanced settings.
    Looks like it may be an issue with Firefox.
    Message was edited by: I_Know_Nothing_at_all

  • Flash Builder 4 profiler doesn't seem to work with Flash Player 10.0

    Hi,
    I've been trying to get the profiler to work with Flash Builder 4, but when trying to profile on Flash Player 10.1, 11 or 11.1, Flash Builder doesn't connect to the profiled SWF.
    Changing my Flash Player to an old, debug version of 10.0.45 works fine.
    Is this a known bug, or is it just an incompatibility that's fixed in Flash Builder 4.5?
    thanks
    Richard

    I’m profiling just fine in 4.5

Maybe you are looking for