<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Open an AIR application from a 2nd AIR application</title>
	<atom:link href="http://blog.everythingflex.com/2009/06/08/open-an-air-application-from-a-2nd-air-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.everythingflex.com/2009/06/08/open-an-air-application-from-a-2nd-air-application/</link>
	<description>News and Information about Adobe Flex &#38; Adobe AIR by Rich Tretola</description>
	<lastBuildDate>Wed, 28 Dec 2011 05:30:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Flashsoap &#187; Blog Archive &#187; AIR &#124; AS3 &#124; Open a AIR application from another AIR application via the ProductManager class</title>
		<link>http://blog.everythingflex.com/2009/06/08/open-an-air-application-from-a-2nd-air-application/comment-page-1/#comment-90981</link>
		<dc:creator>Flashsoap &#187; Blog Archive &#187; AIR &#124; AS3 &#124; Open a AIR application from another AIR application via the ProductManager class</dc:creator>
		<pubDate>Thu, 24 Feb 2011 11:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1258#comment-90981</guid>
		<description>[...] found this on http://blog.everythingflex.com. His post is quite old now (a year), the AIR version was 1.5 I think, now you don&#8217;t need to [...]</description>
		<content:encoded><![CDATA[<p>[...] found this on <a href="http://blog.everythingflex.com" rel="nofollow">http://blog.everythingflex.com</a>. His post is quite old now (a year), the AIR version was 1.5 I think, now you don&#8217;t need to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ain</title>
		<link>http://blog.everythingflex.com/2009/06/08/open-an-air-application-from-a-2nd-air-application/comment-page-1/#comment-90874</link>
		<dc:creator>Ain</dc:creator>
		<pubDate>Wed, 23 Feb 2011 15:58:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1258#comment-90874</guid>
		<description>So what&#039;s the procedure to open an AIR 2 application from another AIR 2 app? 

Adobe claims that publisher ID should no more be used and is deprecated.</description>
		<content:encoded><![CDATA[<p>So what&#8217;s the procedure to open an AIR 2 application from another AIR 2 app? </p>
<p>Adobe claims that publisher ID should no more be used and is deprecated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ain</title>
		<link>http://blog.everythingflex.com/2009/06/08/open-an-air-application-from-a-2nd-air-application/comment-page-1/#comment-90873</link>
		<dc:creator>Ain</dc:creator>
		<pubDate>Wed, 23 Feb 2011 15:47:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1258#comment-90873</guid>
		<description>For AIR 2.5, it looks as following:

&lt;code&gt;

// Generated from  frameworks/libs/air/airglobal.swc
package adobe.utils
{
	import flash.events.EventDispatcher;

	[native(cls=&quot;ProductManagerClass&quot;, instance=&quot;ProductManagerObject&quot;, methods=&quot;auto&quot;)]
	[ExcludeClass]
	[Event(name=&quot;error&quot;, type=&quot;flash.events.ErrorEvent&quot;)]
	[Event(name=&quot;verifyError&quot;, type=&quot;flash.events.IOErrorEvent&quot;)]
	[Event(name=&quot;diskError&quot;, type=&quot;flash.events.IOErrorEvent&quot;)]
	[Event(name=&quot;networkError&quot;, type=&quot;flash.events.IOErrorEvent&quot;)]
	[Event(name=&quot;complete&quot;, type=&quot;flash.events.Event&quot;)]
	[Event(name=&quot;cancel&quot;, type=&quot;flash.events.Event&quot;)]
	public final class ProductManager extends EventDispatcher
	{
		function ProductManager(name : String = null, shared : Boolean = false) : void;

		public function doSelfUpgrade(os : String) : Boolean;

		public function download(caption : String = null, fileName : String = null, pathElements : Array = null) : Boolean;

		public function get installed() : Boolean;

		public function get installedVersion() : String;

		public function launch(parameters : String = null) : Boolean;

		public function get running() : Boolean;
	}
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>For AIR 2.5, it looks as following:</p>
<div class="codecolorer-container text dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">// Generated from &nbsp;frameworks/libs/air/airglobal.swc<br />
package adobe.utils<br />
{<br />
&nbsp; &nbsp; import flash.events.EventDispatcher;<br />
<br />
&nbsp; &nbsp; [native(cls=&quot;ProductManagerClass&quot;, instance=&quot;ProductManagerObject&quot;, methods=&quot;auto&quot;)]<br />
&nbsp; &nbsp; [ExcludeClass]<br />
&nbsp; &nbsp; [Event(name=&quot;error&quot;, type=&quot;flash.events.ErrorEvent&quot;)]<br />
&nbsp; &nbsp; [Event(name=&quot;verifyError&quot;, type=&quot;flash.events.IOErrorEvent&quot;)]<br />
&nbsp; &nbsp; [Event(name=&quot;diskError&quot;, type=&quot;flash.events.IOErrorEvent&quot;)]<br />
&nbsp; &nbsp; [Event(name=&quot;networkError&quot;, type=&quot;flash.events.IOErrorEvent&quot;)]<br />
&nbsp; &nbsp; [Event(name=&quot;complete&quot;, type=&quot;flash.events.Event&quot;)]<br />
&nbsp; &nbsp; [Event(name=&quot;cancel&quot;, type=&quot;flash.events.Event&quot;)]<br />
&nbsp; &nbsp; public final class ProductManager extends EventDispatcher<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; function ProductManager(name : String = null, shared : Boolean = false) : void;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public function doSelfUpgrade(os : String) : Boolean;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public function download(caption : String = null, fileName : String = null, pathElements : Array = null) : Boolean;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public function get installed() : Boolean;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public function get installedVersion() : String;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public function launch(parameters : String = null) : Boolean;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public function get running() : Boolean;<br />
&nbsp; &nbsp; }<br />
}</div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ain</title>
		<link>http://blog.everythingflex.com/2009/06/08/open-an-air-application-from-a-2nd-air-application/comment-page-1/#comment-89805</link>
		<dc:creator>Ain</dc:creator>
		<pubDate>Mon, 14 Feb 2011 14:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1258#comment-89805</guid>
		<description>Although, already a rather old post, still most useful.
Thanks for sharing the hidden Flash Platform goodness!</description>
		<content:encoded><![CDATA[<p>Although, already a rather old post, still most useful.<br />
Thanks for sharing the hidden Flash Platform goodness!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhu panisetty</title>
		<link>http://blog.everythingflex.com/2009/06/08/open-an-air-application-from-a-2nd-air-application/comment-page-1/#comment-58716</link>
		<dc:creator>madhu panisetty</dc:creator>
		<pubDate>Fri, 22 Jan 2010 13:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=1258#comment-58716</guid>
		<description>@Jonathan 

you have to use - - (2 hypens side by side) to pass arguments

@Rich Tretola
For some reason when I type - - without space in comments it is being converted to single hypen.</description>
		<content:encoded><![CDATA[<p>@Jonathan </p>
<p>you have to use &#8211; - (2 hypens side by side) to pass arguments</p>
<p>@Rich Tretola<br />
For some reason when I type &#8211; - without space in comments it is being converted to single hypen.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

