Flash Builder 4.7 closing emulator when clicking outside

Starting today I now have my Flash Builder 4.7 closing the android emulator if I click anywhere outside the emulator screen. Which makes it really hard to debug, only started today, and I have no idea what has caused it.
Also, launching it on a device (Motorolla XOOM), it's closing pretty much as soon as it loads.
My main issue is that I have idea at all why it's doing this, and there's no error message or anything, it just closes and the console goes dead.
Anyone else had this issue, or know where to look for error log info?

AAAAAAAAAAAhhh!
Found the issue.
My co-worker had overridden a handler thusly:
override protected function deactivateHandler(event:Event):void
                                        super.deactivateHandler(event);
                                        NativeApplication.nativeApplication.exit();
This was for some reason or other... but it wasn't affecting him as he was only testing on a nexus 10, which for some reason that event doesn't get fired unless you are actually trying to exit the app.
But on the Galaxy Xoom, and the air emulator it gets called just whenever the app is told to go to sleep or lose focus I guess.
Wow, that wasted a LOT of time!

Similar Messages

  • Af:popUp close when click outside popup area, Jdev 12c

    Hi! I had a similar post a long time ago and it became archived due to lack of time from my part, it was never answered
    the problem is:
    1)Popup without dialog tag: closes when a click is made outside the popup area.
    2)Popup with a dialog tag:  doesn't close when clicked outside the popup area
    I'd like to be able to let the user close the popup(with dialog) when he/she clicks outside the popup area.
    Thanks!

    User, which jdev version do you use?
    Why don't you use the popup without the dialog then?
    Can't be too hard to put some buttons ontp the popup.
    Timo

  • Adobe AIR.dll_unloaded When Flash Builder 4.6 closed.

    I found nothing about Adobe AIR.dll_unloaded by Google.

    I've been seeing what sounds like a similar problem (Windows application "BEX" error when attempting to close Flash Builder via its [X] icon).
    (Win 7 Enterprise, SP1, 64-bit, i5 + 8GB RAM), Flash Builder 4.6, Java 1.7.0_07)
    I tried the following:
    -- Launching Tour de Flex (from the task bar icon), and then updating AIR to the latest version
    -- Right-clicking on the Flash Builder task bar icon and then selecting "Run as Administrator"
    -- Right-clicking on the Flash Builder task bar icon and then selecting "Troubleshoot compatability", then applying the compatability fixes it suggested.
    Somewhere along the way, the problem went away. I then ran the compatability troubleshooter again and (I think) removed the compatability changes (since windows security was asking me whether I want to let the application update my computer every time I launched FlashBuilder--annoying!).
    The problem still appears to be fixed--but only with a whole ten minutes testing. I'll just have to see if the above is really a fix/work-around.

  • Flash Builder 4.5.1 Error when trying to run

    Hi,
    Since I installed 4.5.1 of Flash Builder (OS/X 10.6.7) I get the following error when I try to run anything:
    An internal error occurred during: "Launching New_configuration".
    java.lang.NullPointerException
    I created a new project to make sure it wasn't any bad code causing the issue, but it still has the same error with just a blank project.
    Any thoughts on what might be causing this?
    Thanks!

    Can you please post the contents of workspacedir/.metadata/.log?
    Are you on the same workspace as 4.5? Can you try with a new workspace?
    -Anirudh

  • Flash Builder 4.7 becomes unresponsive when trying to add 5-6 source folder under Flex build Path

    Hi,
    I am facing issue with Flash Builder 4.7.
    Whenever I am trying to open any mxml or .as file after project setup, flash Builder 4.7 becomes unresponsive without showing any error message or popup.
    At the initial project setup, I am able to open file but when I try adding 5-6 source folder under Flex build path->source path, it’s become unresponsive.
    Everything works fine in Flash builder 4.6, but I have license key only for flash builder 4.7 and want to use Flash Builder 4.7.
    Please help me to solve this issue.

    Fixed: In Project prefs: Flex Build path: added the similar swc folder called "local" from FB 4.6 eclipse/plugins directory and removed the 4.7 one.
    For some reason the 4.7  eclipse/plugins/com.adobe.flexbuilder.project_4.7.0.345990/dcradS wcs/4.5/locale folder has localisation folders in it and not swc's like in FB 4.6..

  • Opening a prompt window before closing window when click on the x box

    I was wondering if there was a way to have a prompt box asking the user if they're sure they want to close the window before closing it when the x button is clicked. Is this possible? Does anyone know how?

    Or simply override:
        /** Overridde method in JFrame */
        protected void processWindowEvent(WindowEvent e)
            if(e.getID()==WindowEvent.WINDOW_CLOSING)
                int choice = JOptionPane.showConfirmDialog( null, "Are you e?" );     
                if( choice == JOptionPane.OK_OPTION )
                    System.exit(0);
            super.processWindowEvent(e);
        }

  • Flash Application crashes the IE browser when click on permission window

    Hi!
    I use a free script to make calls with freeswitch. In test environment it works perfect: http://flex.ibrizz.com . But when I change it for working environment http://iBrizz.com it crashes IE8-10 when I click to any place on microphone permission form. In Chrome, FF 2X and IE11 works normally.
    To login and test please use Login: [email protected] , Password: test12 or register by yourself.
    Any advices would be appreciated.

    Spent 12 hours and finally I got the solution.
    The problem was with jQuery Dialog message. It does not want to work with modal dialogs: http://api.jqueryui.com/dialog/#option-modal

  • Any way to make DM select the closing tag when clicking the opening tag?

    Visual Studio allows you to for example select an opening
    <p> tag... and then bolds the closing </p>. Same with
    <div> and so on. I realize DM has a breadcrumb view near the
    properties window but that's comparatively weak. Any way to make
    this happen with DM9?
    That would be really handy - I'm amazed it's not default.
    Thanks!

    Have you explored the features available in the Coding
    Toolbar? e.g. Select
    Parent Tag
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7bca.html
    Regards
    John Waller

  • How to update JTable when clicking outside the table?

    Hi
    (Sorry if this has been asked before but I can't seem to see exactly how to do this from previous posts.)
    I have a JTable which sits on a jPanel which itself is part of a frame.
    When I click anywhere outside the table when I'm editing a cell in the table, how do I end the edit mode of the table (so that the cell is updated with the new contents).Currently I can only update a cell's contents during edit when hitting 'enter' or by clicking on another cell within the table.
    It seems that the following code is used in the process but I'm sure that I'm still missing something:
    if(table1.getCellEditor()!=null)
    table1.getCellEditor().stopCellEditing();
    If anyone out there knows how to do this,I'd really appreciate hearing how.
    Thanks a lot
    LGS

    Thanks for your comments but I'm still having problems.
    When I add the following code:
    table1.addFocusListener(new java.awt.event.FocusAdapter()
    public void focusLost(java.awt.event.FocusEvent evt)
    if (table1.getCellEditor() != null)
    table1.getCellEditor().stopCellEditing();
    and then try to edit my table,as soon as I double click on any cell in the table,my setValueAt method in my Table Model is being called before I even edit the cells contents. The above code is in the same method in which I actaully create table1 i.e.createTable().
    Can anyone help?

  • Final Cut Pro 7: Audio Stops when clicking outside the program.

    Just something that annoyed me and was wondering if their is a way to correct it.  Whenever I am listening to a song within final cut in  a video or in the viewer, it will stop playing if I click out of the program.  For example i might be listening to a song and want to go do a google search or open another program and as soon as i do the audio stops.  It will begin playing once i click back into final cut and everything works fine but its just bothersome.  If anyone knows a way to change this please help me out!
    Thanks
    Josh

    well, I think if I remember correctly that might be a normal state, because FCP wants to "take over" completely. My systems are on MacPros with Kona Cards and I/Os setup for 5.1 output. I think I lose audio because the Kona wants only one app controlling it at a time. I'd have to be sitting in front of the box to figure it out. But oddly enough I'm actually home.

  • Where is the "done" button in Flash CS4 when using Flash Builder 4's new flash component or container?

    The documentation for Flash Builder 4 beta says that after opening flash from flash builder, I should click a "done" button in flash and flash should close and what I created in flash should be included as a component or container in Flash Builder.  Using the Flash Builder 4 beta on Windows, when I click on the "create in flash" button on the properties panel for either the new flash component or container, Flash CS4 opens, I create something in Flash and no "done" button is present.  Nor is anything present in the menus resembling a "done" option.  Where is it?

    Hi Jeffrey:
    Still no done button.  Now under commands in Flash I can convert symbols to flex components and containers and these show up in the Flash library.
    Thanks:
    Jim
    Date: Wed, 30 Sep 2009 09:58:10 -0600
    From: [email protected]
    To: [email protected]
    Subject: Where is the "done" button in Flash CS4 when using Flash Builder 4's new flash component or container?
    Hi,
    You may need to install FlexComponentKit.mxp to your Flash CS4 beforehand.
    Jeffrey
    Date: Tue, 29 Sep 2009 17:04:36 -0600
    From: mailto:[email protected]
    To: mailto:[email protected]
    Subject: Flex Where is the "done" button in Flash CS4 when using Flash Builder 4's new flash component or container?
    I apparently didn't get one.  I've looked under various workspace configurations.  Another thing that seems odd is that when Flash opens I get the opening panel that allows me to select the type of file and version of AS I want to use.  I select new file with AS3.  Any ideas on why the "done" button wouldn't be present and if the opening panel is what I should expect on opening Flash after clicking the "create in Flash" button?
    >
    >

  • Changes from Flash Builder 4 Beta 2 to Flash Builder 4 Premium

    I have a Flex app that started in Flash Builder 4 Beta 2 and when the beta expired, we bought Flash Builder 4 Premium.
    Before, when programmatically changing the selected index of a Spark DropDownList, the change handler was called, so in cases where I didn't want that to happen, I had to remove the event listener and add it again after a small setTimeout.
    In the new version, it seems that when I change the selected index programmatically, the change handler is not called, so if I want it to be called, I have to call it manually, which is also fine. I just want to confirm that this different behavior was an actual change that was made and isn't caused by some kind of other change I made to my code.
    Is there a list of feature changes from the beta to the release version? Thanks!
    -Travis

    If you right-click the toolbar you can get to the 'Customize perspective' dialog.
    From there make sure commands >> flash run/debug option is checked.
    Oddly, there is no "Flash run/debug" option to check.
    Please see the attached picture.
    Note that I am running Flash Builder Beta 2 (build 253292) on Eclipse 3.4.2 (build M20090211-1700) on Max OS X (version 10.5.8).
    Thanks! 
    --- Jim

  • Music for Flash Builder 4.6

    Hi
    I would appreciate a little help on this.  I would like to add a text or button link to my Flash Builder 4.6 project that when the user clicks on it, a song will start playing and when the user clicks on another text or button link, the song stops. 
    Example:
    Name of Song       Play / Stop
    I am looking for the simplest way to accomplish this.
    Thank you
    Adrian

    When I run the tool I dont see flash builder as an option?

  • New to programming. Should I use Flash Builder 4.6 to create CRUD interface to MySQL?

    Having just acquired Creative Cloud subscription, I see that I have access to Flash Builder 4.6 Premium. I haven't figured out yet if I will eventually have access to Flash Builder 4.6 for PHP when / if it is released.
    I am relatively new to programming. I want to create a desktop application, perhaps a web application, to manage a MySQL database. I am not, at this time, concerned with mobile applications. I'm primarily interested in just managing the MySQL data -- CRUD (create, read, update, delete) operations.
    Hopefully I've provided enough context. My question concerns whether learning Flash Builder 4.6 and Flex programming is an appropriate choice. Alternatively, I could just focus on learning basic PHP programming or perhaps learning to use one of the PHP frameworks (CakePHP, CodeIgniter, or Zend). It seems like learning these frameworks will take time as well, so I don't know where I should begin.
    I would really value your perspective. Are the Flash Builder related technologies here to stay? Is Flash Builder primarily suitable for mobile applications (rather than desktop or web)? Would it be more or less difficult to learn Flash Builder and Flex than PHP and one of the PHP frameworks with a view to building a MySQL CRUD application?
    Thank you, so very much -- for your time and expertise.
    Kevin

    Kevin,
    I am a big fan of Flash Builder.  You can build great desktop web applications as well desktop applications that run on AIR (installs locally to the desktop).
    I found it easier to pick up Flex (now Flash Builder) primarily due to the resources (Learn Flex in a week video tutorials http://www.adobe.com/devnet/flex/videotraining.html ) as well as a big developer community that posts a lot of how to's and walk throughs.  In my personal opinion, I think the power of Flash Builder/Flex framework is the ability to create what traditionally was seen as desktop apps within your web browser.  If you're looking to create a basic crud interface, skipping Flash Builder and just doing it in PHP may be the way to go.  If you're looking to add visualizations (ie graphs, charts) or highly interactive user interface to it then Flash Builder would be a good way to go (though keep in mind that you will still need PHP (or some other server side application layer like coldfusion) to interface with your mysql database  but Flash Builder's dataservices creates some sample php classes for you to handle CRUD using Zend).    There's lots of amazing things you can do with Flash Builder.  I'd recommend checking out some of the samples from Tour de Flex to get a sense of what can be done with Flash Builder.
    A couple of notes though - You can build and package native mobile apps with Flash Builder but if you're looking to create web apps for devices like iphone and ipads, Flash Builder isn't the solution since it compiles web based apps to Flash and we all know how idevices don't play nicely with Flash.

  • ASC2.0 & flash builder 4.7 inconsistencies

    I am trying to upgrade my Ant build script to build my project.
    First I managed to get the project to build and run fine within flash builder 4.7, fixing the errors that come up.
    But now when I installed the AIR 3.4 SDK with ASC2.0 and use the ant script, I get a new code error. This could possibly be that the ant script is building more things than flash builder but I don't think so.
    Anyways the error is in this file:
    http://code.google.com/p/as3yaml/source/browse/tags/0.4.1/org/as3yaml/Emitter.as line 134
      [mxmlc] Error: 'var' is not allowed here
        [mxmlc]         private static var defInit0 : Map = new HashMap();
        [mxmlc]         ^
    This code looks a bit strange, but any input would be good, I find it at least strange that this does not happen in flash builder 4.7 but happens when I use Air SDK 3.4 with ASC2.0
    UPDATE:
    Managed to fix it just by putting these static variables outside of the static scope. However now When I am trying to package the app (IOS packager) I get Initial window content is invalid.
    what is there now is the name of the SWF file, that I was building.
    Any ideas what maybe causing that?
    Are the parameter and compatability issues listed somewhere for the new command line tools (in this case adt packager)?

    Hi ,
    Were you able to build ipa successfully using AIR 3.1 in FB 4.6 ?
    Is the issue reproducible for a particular project or on all the projects ?
    Please share the build.xml , debug and release swf, app.xml file .
    You can also mail me at [email protected]
    Than

Maybe you are looking for

  • How can I issue a warning if user exits without saving data first?

    One of our clients has his users fill the LC Designer PDFs on their web site. They request that the users get a "Do you really want to exit?" warning,  if they navigate away from the form, after having made changes to it. I was able to simulate the A

  • Simple Transformation - ABAP 2 XML

    Dear all, Finally I was able to transform an internal table to xml using ST. The question is: Can I create different structured XML-files using the same (structured) internal table. Or is there some kind of a 1:1 relationship (between an ITAB structu

  • IMac won't boot from install disc

    My iMac has been running a little slow the past two days and so I ran Disk Utility. DU reported that I had the incorrect number of thread records and an invalid volume count. It instructed me to repair the disk by booting from the install disc. The p

  • Byte array in JSON reply

    Hi guys, I'm exchanging some data between .net webservice and flex with JSON. This is a JSON reply: <string> {"uid":"23","photos":[[255,216,255,224,0,16,74,70,73,70,0,1,1,1,0,72,0,72,0,0,255,219,0,67 ,0,8,6,6,7,6,5,8,7,7,7,9,9,8,10,12,20 </string> It

  • What affects the default character set environment of JVM?

    For Example, String.getBytes(); since not specify the characterset, so will use the system default characterset. what is this system default characterset affected by? I have tried in Linux Platform, which is LANG environment variable. Is this right?