Existing AIR Applications Won't Run in Flex 3? Quick Fix.
Posted on Feb 26, 2008
This is a quick post on a simple problem in case anyone runs into this issue and can't determine the reason. I had existing AIR applications set up in my beta install of Flex 3. As recommended by the installer, I removed the beta before installing the final version of Flex 3 released yesterday. ObviouslyI open Flex 3 for the first time, my pre-existing projects are missing. To import them with the prior settings, you simply go to File > Import > Flex Project, choose the "Project Folder" option and browse to the project folder location.
The catch is that since I also updated my install of AIR to the final version I was finding that hitting "Run" had no result...nothing happened. Well, what I needed to do was open the AIR application's XML descriptor file and change the line that read:
<application xmlns="http://ns.adobe.com/air/application/1.0.M6">
...(for the last public AIR beta) to:
<application xmlns="http://ns.adobe.com/air/application/1.0">
...for the current 1.0 final release.
Comments
Hi,
i have newly installed flex developer 3 and imported a flex project. It compiles without error and produced like Main.swf. I then right click the main mxml file and run as Adobe Air Aplication but it the application response no output. Anyone have encounter and how was it resolve?
Posted By tawe / Posted on 03/07/2008 at 1:37 AM
@tawe - I am confused. Is this an AIR app or a Flex app?
Posted By Brian Rinaldi / Posted on 03/11/2008 at 4:17 AM
Sorry for confusing.I'm just a newbie.I'm trying to do with an AIR application simple hello world., fortunately i just able to resolve problem. I fix it by ending/kill existing process (adl.exe) in windows task manager then rerun the AIR app again.
Posted By tawe / Posted on 03/11/2008 at 6:36 AM
Thanks for this posting. It fixed my problem.
Posted By Rich D / Posted on 03/15/2008 at 7:30 AM
I've been having the same error on Flex Builder 3.0.2. The only difference is Air 1.5 is installed, and my app is set to 1.5 and it still happens. Any ideas?
Posted By Jonathan Dumaine / Posted on 12/21/2008 at 2:31 PM
Posted By Ash / Posted on 02/12/2009 at 9:08 AM
Change <application xmlns="http://ns.adobe.com/air/application/1.0">
to
<application xmlns="http://ns.adobe.com/air/application/1.5">
to get the air application started from Flex Builder with the Air 1.5.
Posted By Alex / Posted on 04/04/2009 at 4:30 PM
i'm on mac, i launch the app but nothing happen.
I see the icon of the AIR app in the dock bar but there is nothing on screen.
i have Flex Builder 3.0.2 and AIR 1.5.1 with :
<application xmlns="http://ns.adobe.com/air/application/1.5">
any idea ?
Posted By labasse / Posted on 06/09/2009 at 3:45 AM
I had this problem with Flex Builder 3.0.2 and AIR 1.5.
I've just changed the app descritor with the new name space :
<application xmlns="http://ns.adobe.com/air/application/1.5">;
than clead the project and so my application appeared on the screen
Posted By Paolo / Posted on 09/09/2009 at 6:50 AM
here is the solution
http://madhupanisetty.blogspot.com/2008/11/process-terminated-without-connecting.html
Posted By sl / Posted on 10/13/2009 at 3:23 PM