FlashBuilder fails to quit AIR app before launching new one

Frequently FlashBuilder fails at quitting a currently running debug application.  Is there any way this could be improved so it could consistently quit the application when launching another debug session?
Launch Failed
If the program is already running, close it before attempting to run.

These are user to user forums, so if you want Apple to see your report, best to repost it at
http://www.apple.com/feedback/macosx.html

Similar Messages

  • HT2404 I'm trying to update apps and download new ones on mi ipad, but it doesn't work... the icons say "waiting" and nothing happens for days!

    I'm trying to update apps and download new ones on mi ipad, but it doesn't work... the icons say "waiting" and nothing happens for days!Help!

    Here are a bunch of things that you can try to get the downloads to resume.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>iTunes & App Store>Sign in and then try to update again. Tap one waiting icon only if necessary to start the download stream.
    You can also try deleting the waiting icons - tap and hold down on an icon until it wiggles - the tap the X on the icon to delete it. Then try to download again.
    You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your app preferences and device settings again.
    If all else fails, download the updates or the apps in iTunes on your computer and then sync the content to your iPad.

  • I have bought an iMAC second hand but when updates to purchased (not by me) Apps I cannot download the updates as it is asking for the original owners password. How can I amend this or could I delete the Apps and download new ones in place under my email

    I have bought an iMAC second hand but when updates to purchased (not by me) Apps I cannot download the updates as it is asking for the original owners password. How can I amend this or could I delete the Apps and download new ones in place under my email

    If the machine was upgraded to Lion 10.7.x by the original owner then you bought an illegal license of Lion and also of any other applications that the seller  said came pre-installed, this assumes the seller did not include original install media. In that case you need to contact the seller for the original install DVDs that came with the machine re-install up to Snow Leopard 10.6.8 and then purchase Mountain Lion ($20) and the applications you want or need. If the seller cannot come up with the original install discs then you can buy them from a nominal cost from AppleCare..

  • HT204350 Hey, migration from an old mac late 2008 aluminium to a brand new mac book air. Only the new one has firewire. Transmissiom via wifi estimates ~50h. Is there a faster Way to sync? Tanks in advance

    Hey, migration from an old mac late 2008 aluminium to a brand new mac book air. Only the new one has firewire. Transmissiom via wifi estimates ~50h. Is there a faster Way to sync? Tanks in advance

    I'll venture that your problem here is that you're using two very different versions of Mac OS X.  The USB adapter has been useful to me when making big downloads or while using other networks, but it might not be your case. 
    Here's what I would advise, though it may be less than stellar:  Copy the files you need into folders and move them through a USB flash drive or using that external hard drive of yours. (Could the format be the reason your MBA can't see it?). Some stuff like calendars and contacts can be exported too. At least in Lion, I haven't used Tiger in a while. 
    Good luck.

  • TS1368 I can't download anything from the app store or iTunes today on my ipad2. Doesn't matter whether it is a previously purchased app or a new one. Help???

    I havent had any problems with my iPad2 until today. I cannot download anything from the app store or iTunes. Doesn't matter if it's a previously purchased app or a new one. Help???
    I just get a message--- after a long wait where the app icon says "waiting" that I can't connect to iTunes.
    Wifi signal is strong. All bars.

    Try these articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    If this will not work, best to contact phone support.
    http://support.apple.com/kb/HE57

  • Do I have to free old objects before allocating new ones  in j2me

    Hi,
    Do I have to free old objects before allocating new ones in j2me
    sri

    Usually the garbage collector does his job; but, in J2ME programming, you should not rely on this 100%, this meaning that you should call System.gc() or set object references that you don't need anymore to null. But again, this depands on the 'size' of the program you're writing.
    You should check the "Edit->Preferences->Monitor" section of the Wireless Toolkit and see just how much memory your objects consume and how the garbage collector does his job.
    Mihai

  • Passing Variable to air app when launch using Badger

    Hi all,
    I am going to desperately to develop my application. Hope someone can help me........
    I am using badger for air which I get it here http://www.adobe.com/devnet/air/articles/badger_for_air_apps.html and it launch my app correctly, but I can't pass any variable into my app when launch.
    I have read the instruction and adding some code like this :
    on index.html(show my badge installer):
        var so = new SWFObject("AIRInstallBadge.swf", "", "215", "180", "9.0.115", "#000000");
            so.addVariable("airversion", "1.5");
            so.addVariable("appname", "Secure%205");
            so.addVariable("appurl", "http://localhost/testing/source/secure5.air");
            so.addVariable("appid", "examples.html.HelloWorld");
            so.addVariable("pubid", "B71ED76ECC937067D72BB9A0CDB516D1A8F43A9E.1");
            so.addVariable("arguments", "launch from browser");// this is my code
            so.addVariable("appversion", "0.1");
            so.write("flashcontent");
    on index.html(my initial content) :
    var urlMonitor;
    var urlReq;
    var invokeEvent;
    var applicationID = "myappid";
    var publisherID = "mypubid";
    var applauncarg;
    //var admin="admin";
    function doWindow()
    var options = new air.NativeWindowInitOptions();
    options.transparent = false;
    options.systemChrome = air.NativeWindowSystemChrome.STANDARD;
    options.minimizable = false;
    options.maximizable = false;
    options.resizable=false;
    var windowBounds = new air.Rectangle(0,0,air.Capabilities.screenResolutionX,air.Capabilities.screenResolutionY);
    var urlreq="http://www.example.com";
    var newHTMLLoader = air.HTMLLoader.createRootWindow(true, options, true, windowBounds);
    newHTMLLoader.load(new air.URLRequest(applauncharg));
    newHTMLLoader.stage.nativeWindow.alwaysInFront = true;
    newHTMLLoader.stage.nativeWindow.addEventListener(air.NativeWindowBoundsEvent.MOVE,handlem ove);
    newHTMLLoader.stage.nativeWindow.addEventListener(air.Event.CLOSE,onCloseCommand);
    urlMonitor = new air.URLMonitor(new air.URLRequest("http://www.example.com"));
    urlMonitor.addEventListener(air.StatusEvent.STATUS, onStatusChange);
    urlMonitor.start();
    air.NativeApplication.nativeApplication.addEventListener(air.InvokeEvent.INVOKE, onInvoke);
    //urlReq=new air.URLRequestDefaults.manageCookies = true;
    function handlemove()
    newHTMLLoader.stage.nativeWindow.x=0;
    newHTMLLoader.stage.nativeWindow.y=0;
    function onCloseCommand(exitingEvent) {
    var winClosingEvent;
    for (var i = 0; i < air.NativeApplication.nativeApplication.openedWindows.length; i++) {
    var win = air.NativeApplication.nativeApplication.openedWindows[i];
    winClosingEvent = new air.Event(air.Event.CLOSING,false,true);
    win.dispatchEvent(winClosingEvent);
    if (!winClosingEvent.isDefaultPrevented()) {
    win.close();
    } else {
    exitingEvent.preventDefault();
    if (!exitingEvent.isDefaultPrevented()) {
    //perform cleanup
    function onInvoke(e)
    //apparg=event.applauncharg.toString();
    //alert ('oK'+apparg);
    applauncarg = event.arguments;
    air.trace("onInvoke : " + event.applauncharg);
    //air.Introspector.Console.log( applauncarg );
    alert (applauncarg);

    sory, there is mistake here......
    the question isn't finish yet.
    function onInvoke(e)
    //my code
    applauncarg = event.arguments;
    air.trace("onInvoke : " + event.applauncharg);
    alert (applauncarg);//just to make sure the variable had been sent correctly
    My application running smoothly but there is no alert that show applauncharg variable.
    then I am trying to know if invoke event run correctly or not by adding code
    alert ("OK");
    and it works, so there is no problem with the event listener.
    does any one know if I missing something or any thing wrong with my code?
    sory, there is mistake here......
    the question isn't finish yet.
    function onInvoke(e)
    //my code
    applauncarg = event.arguments;
    air.trace("onInvoke : " + event.applauncharg);
    alert (applauncarg);//just to make sure the variable had been sent correctly
    I have get the answer. If someone need the source code, just Pm me and I'll give you my Source to help you.
    The first is to make sure that your action scipt code can handle the argument that passed by javascript.
    Make attention between invoke event and browser invoke event! it is almost same but they are different.
    If you type browser invoke event, it seems browser invokeevent doesn't recognized, but it works.
    The second is my mistake on source code. onInvokeevent shold be like this :
    function onInvoke(e)
    //my code
    applauncarg = .arguments;
    alert (applauncarg);
    -closed-

  • My iMac hard drive crashed how do get my apps on the new one?

    The hard drive for my 27 inch imac crashed how do I get the iphoto and other owned apps in my new hard drive?

    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads. Recovery software usually provides trial versions that enable you to determine if the software would help before actually paying for it. Beyond this or if the drive has completely failed, then you would need to send the drive to a recovery service which is very expensive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.
    You will need to install the old drive into an external enclosure to try and access it.
    Any applications purchased from the App Store can simply be redownloaded.

  • I changed my apple id and now I can't update my apps or download new ones.  I've changed the ID in my iphone settings, but when I go in the apps store my old ID shows up.  If I change my settings back to the old ID my password doesn't work.  HELP!

    So I changed my Apple ID.  Now on my Iphone I can't update things from the apps store or download new stuff.  I went into settings and changed my ID there, but in the apps store it still shows up as my old ID.  The apps store won't let me log on with the new one, as my old still shows up, and if I go back into settings and change it back to the old ID the password I had before no longer works.  This ***** Apple.  You just ruined my Iphone!!!  My phone went from being cool to being junk since I am not unable to download or update apps...the coolest part of my phone.  Someone help???  Please tell me how I can enjoy my phone and apps again...

    Thank you for the response, but I ended up temporarily resetting my Apple ID... It was a pain, but it worked in the end.

  • TS1702 I am battling to switch from the US store to the SA to update apps or have new ones installed

    I am currently visiting the US and I was trying to install new apps and update existing ones but the system keeps bumping me out saying I need to switch to the SA store but I can't figure out how to do that

    Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region...change here.

  • HT201401 unable to update my apps or download new ones from the store (iphone4)

    unable to update  apps or download new  after entering password

    What happens when trying to download a new app or an app update via iTunes on the computer?
    Basic troubleshooting for iDevices is reset, restart, restore (first from backup then as new).  Has any of this been tried?

  • HT2728 How would I transfer my information from my old Macbook Air (2008) to the new one I purchased today?

    Today I ordered my new MacBook Air - and am looking for advice on how I might best transfer all the information off my old MacBook Air to the new one. There are not many ports available on the old MacBook Air (2008/9) and of course the new MacBook Air comes with more ports and connectivity.
    Appreciate any advice that you can give me.
    Many thanks in advance
    Ed

    Use an external drive with Time Machine or Clone your HD to the external.
    When you start the new one, setup manager will ask if you want to migrate from another disk, time machine etc.
    This will only require 1 usb port.

  • I have to turn in my old computer before receiving new one.  can I back up using time machine then restore to new computer/

    I have to turn in my old computer before receiving my new one.  Can I restore a backup from time machine to my new computer?

    Yep.

  • App wont launch on one profile on OS X Mountain Lion

    Got a odd situation, my kids have a game from the APP store, it runs fine on every profile but theres.  On their profile it just says it quit unexpectadily and needs to restart, which you cant.
    I deleted the app and re-downloaded it....same deal.
    Thoughts?
    THanks!!

    On their account, choose Go to Folder from the Finder's Go menu, provide ~/Library/Preferences/ as the path, and move everything relating to that game onto the desktop.
    (83138)

  • My mac air does not have enough memory to hold all the music I want. Can I delete songs from my library before downloading new ones and still have the old songs there when I sync my iPod?

    I have a macbook air with 60GB memory. For work, I have used up all the memory and constantly use the files, so transfering them to a different location is not a possibilty now. I have about 5GB of music on it, but would like to transfer more on my iPod classic. I would like to know wether there is a possibility for me to delete old music, get new music into its place and then sync the iPod without losing the old music from it.
    Hope I was clear enough.

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

Maybe you are looking for

  • BPM Application Link does not appear in BPM Workspace (11.1.1.7)

    I spent huge amount of time to reveal why does that happens. All that follows further is valid for BPM Suite 11.1.1.7. The scenario. You developed a simple BPM process with Initiator pattern (maybe by following the "Quote Request" tutorial). But the

  • Transition executed only once in a TableRow

    h1. SCENARIO h3. Model /* Model is a Person containing a flag active */ class Person {    private Boolean active = false;    /* more fields and methods */ h3. View /* The View is implemented in FXML */ class View extends TableView<Person> {  }----- h

  • OIM 9.1.0.1 :- Create User Operation with Approval.

    Guru/Experts, I am currently using OIM 9.1.0.1 , and i want create user functionality to be work with approval. Whenvr a user Or xelsysadm tries to create user then its should ask for approve/Rejact then only it will create or reject the operation. T

  • Hide a Column in ALV Grid Output

    Hi, I want to hide a column in ALV Grid Output through program. I am using   lwa_fieldcat-NO_OUT = 'X'. to hide the column in output but it is not working, column in not hided in the output. Kindly suggest.

  • Safari 4 not rendering GMail correctly

    Hi.. I have a problem with Safari 4 (MacOS 10.4.11) accessing Gmail (user interface 1: ui=1). The LAST message in any thread is padded with pages and pages and pages of blanks - actually a greyed-out area - between the end of the message and the "Bac