<?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: Installing the Adobe AIR 2 Beta SDK on OS X</title>
	<atom:link href="http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/</link>
	<description>Participating in Life.</description>
	<lastBuildDate>Thu, 24 Jun 2010 18:27:34 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: claire</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1523</link>
		<dc:creator>claire</dc:creator>
		<pubDate>Sun, 11 Apr 2010 16:19:47 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1523</guid>
		<description>Hi,&lt;br&gt;As far as I can tell I overlayed the files correctly.&lt;br&gt;I have Flex 4.0.0.14159 and Air2Beta2&lt;br&gt;&lt;br&gt;My app builds but when I try to launch it in the IDE I get this:&lt;br&gt;&lt;br&gt;[SWF] myapp.swf - 5,842,270 bytes after decompression&lt;br&gt;myapp v 0.1&lt;br&gt;NativeProcess supported.&lt;br&gt;ERROR: Unable to startup application&lt;br&gt;[Unload SWF] myapp.swf&lt;br&gt;&lt;br&gt;Any ideas? Are my SDK files not right or could it be something else?&lt;br&gt;&lt;br&gt;Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />As far as I can tell I overlayed the files correctly.<br />I have Flex 4.0.0.14159 and Air2Beta2</p>
<p>My app builds but when I try to launch it in the IDE I get this:</p>
<p>[SWF] myapp.swf &#8211; 5,842,270 bytes after decompression<br />myapp v 0.1<br />NativeProcess supported.<br />ERROR: Unable to startup application<br />[Unload SWF] myapp.swf</p>
<p>Any ideas? Are my SDK files not right or could it be something else?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thetaytay</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1522</link>
		<dc:creator>thetaytay</dc:creator>
		<pubDate>Thu, 25 Mar 2010 23:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1522</guid>
		<description>Thanks! This was a big help.  I have been looking for the ditto command for a long time, but didn&#039;t know what I was looking for!  Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks! This was a big help.  I have been looking for the ditto command for a long time, but didn&#39;t know what I was looking for!  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cjw65</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1519</link>
		<dc:creator>cjw65</dc:creator>
		<pubDate>Tue, 16 Mar 2010 17:04:39 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1519</guid>
		<description>Hi NativeProcess is a funny one .. if you declare &lt;br&gt;private var process:NativeProcess and then with in your function you use&lt;br&gt;&lt;br&gt;process = new NativeProcess();&lt;br&gt;then process.start(what ever nativeProcessStartupInfo);&lt;br&gt;if you do not declare the private var .. it is unable find any other attribute than NativeProcess.IsSupported&lt;br&gt;&lt;br&gt;	&lt;mx:Script&gt;&lt;br&gt;		&lt;![CDATA[&lt;br&gt;			import mx.controls.Alert;&lt;br&gt;		&lt;br&gt;			import flash.desktop.NativeProcess;&lt;br&gt;			&lt;br&gt;			private var process:NativeProcess;&lt;br&gt;			&lt;br&gt;			public function init():void&lt;br&gt;			{&lt;br&gt;				if (NativeProcess.isSupported) &lt;br&gt;				{&lt;br&gt;					Alert.show(&quot;Native Process is there &quot;);&lt;br&gt;				&lt;br&gt; 					var file:File = File.applicationDirectory;&lt;br&gt;					file = file.resolvePath(&quot;NativeApps&quot;);&lt;br&gt;				&lt;br&gt;					if ( Capabilities.os.toLowerCase().indexOf(&quot;win&quot;) &gt; -1 )&lt;br&gt;					{&lt;br&gt;						file = file.resolvePath(&quot;C:\testapp\note.cmd&quot;);&lt;br&gt;					}&lt;br&gt;				&lt;br&gt;					var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();&lt;br&gt;					nativeProcessStartupInfo.executable =file;&lt;br&gt;&lt;br&gt;					process = new NativeProcess;&lt;br&gt;					process.start(nativeProcessStartupInfo);&lt;br&gt; 				} else {&lt;br&gt;					Alert.show(&quot;Native Process not avaiable &quot;);&lt;br&gt;				}&lt;br&gt;			}&lt;br&gt;&lt;br&gt;		]]&gt;&lt;br&gt;	&lt;/mx:Script&gt;&lt;br&gt;&lt;br&gt;this works with air 2.0 beta 2 and flex 3.5</description>
		<content:encoded><![CDATA[<p>Hi NativeProcess is a funny one .. if you declare <br />private var process:NativeProcess and then with in your function you use</p>
<p>process = new NativeProcess();<br />then process.start(what ever nativeProcessStartupInfo);<br />if you do not declare the private var .. it is unable find any other attribute than NativeProcess.IsSupported</p>
<p>	&lt;mx:Script&gt;<br />		&lt;![CDATA[<br />			import mx.controls.Alert;</p>
<p>			import flash.desktop.NativeProcess;</p>
<p>			private var process:NativeProcess;</p>
<p>			public function init():void<br />			{<br />				if (NativeProcess.isSupported) <br />				{<br />					Alert.show("Native Process is there ");</p>
<p> 					var file:File = File.applicationDirectory;<br />					file = file.resolvePath("NativeApps");</p>
<p>					if ( Capabilities.os.toLowerCase().indexOf("win") &gt; -1 )<br />					{<br />						file = file.resolvePath("C:\testapp\note.cmd");<br />					}</p>
<p>					var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();<br />					nativeProcessStartupInfo.executable =file;</p>
<p>					process = new NativeProcess;<br />					process.start(nativeProcessStartupInfo);<br /> 				} else {<br />					Alert.show("Native Process not avaiable ");<br />				}<br />			}</p>
<p>		]]&gt;<br />	&lt;/mx:Script&gt;</p>
<p>this works with air 2.0 beta 2 and flex 3.5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yelloCub</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1518</link>
		<dc:creator>yelloCub</dc:creator>
		<pubDate>Wed, 03 Mar 2010 21:33:08 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1518</guid>
		<description>np.  I still cannot get the SDK to work properly, however.  For example, if I want to use the SecureSocket class, eclipse doesn&#039;t know where the class exists, so I have an error and I cannot code hint SecureSocket objects.  If anyone has some ideas, pass them along.  It might just be that the overlay only works for the Flex standalone (not the eclipse plugin).</description>
		<content:encoded><![CDATA[<p>np.  I still cannot get the SDK to work properly, however.  For example, if I want to use the SecureSocket class, eclipse doesn&#39;t know where the class exists, so I have an error and I cannot code hint SecureSocket objects.  If anyone has some ideas, pass them along.  It might just be that the overlay only works for the Flex standalone (not the eclipse plugin).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christoff</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1517</link>
		<dc:creator>christoff</dc:creator>
		<pubDate>Wed, 03 Mar 2010 20:15:15 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1517</guid>
		<description>thanks for the tips :)</description>
		<content:encoded><![CDATA[<p>thanks for the tips <img src='http://mchristoff.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yelloCub</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1516</link>
		<dc:creator>yelloCub</dc:creator>
		<pubDate>Wed, 03 Mar 2010 13:30:26 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1516</guid>
		<description>Update: showing how new I am to AIR.  For others that don&#039;t know... the application.xml is generated when you render your AIR app.  I love empty forums... it&#039;s like playing racket ball by yourself sometimes, but at least you get the ball back.</description>
		<content:encoded><![CDATA[<p>Update: showing how new I am to AIR.  For others that don&#39;t know&#8230; the application.xml is generated when you render your AIR app.  I love empty forums&#8230; it&#39;s like playing racket ball by yourself sometimes, but at least you get the ball back.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yelloCub</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1515</link>
		<dc:creator>yelloCub</dc:creator>
		<pubDate>Wed, 03 Mar 2010 01:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1515</guid>
		<description>Looks like I was able to use ditto in the terminal (as you describe above) to get eclipse to at least agree that my new sdk folder a flex sdk.  ActionScript projects, unlike Flex Projects in eclipse don&#039;t have an Application.xml descriptor file.  I am assuming I need to do something similar here since I still cannot import the new AIR2 classes. If someone else has any ideas, pass them along.  Still pluggin away here.</description>
		<content:encoded><![CDATA[<p>Looks like I was able to use ditto in the terminal (as you describe above) to get eclipse to at least agree that my new sdk folder a flex sdk.  ActionScript projects, unlike Flex Projects in eclipse don&#39;t have an Application.xml descriptor file.  I am assuming I need to do something similar here since I still cannot import the new AIR2 classes. If someone else has any ideas, pass them along.  Still pluggin away here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yelloCub</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1514</link>
		<dc:creator>yelloCub</dc:creator>
		<pubDate>Wed, 03 Mar 2010 00:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1514</guid>
		<description>Is this possible to do with Eclipse using Flex Plugin? I tried to follow the steps on the adobe site and also tried to manually copy the files from &#039;air2_b2_sdk_mac_020210&#039; to my sdk copy (no luck).  I keep getting a message when I tell eclipse to use the SDK that it&#039;s not a Flex SDK.  Anyone else? Maybe you just have to use Flex/Flash Builder standalone?</description>
		<content:encoded><![CDATA[<p>Is this possible to do with Eclipse using Flex Plugin? I tried to follow the steps on the adobe site and also tried to manually copy the files from &#39;air2_b2_sdk_mac_020210&#39; to my sdk copy (no luck).  I keep getting a message when I tell eclipse to use the SDK that it&#39;s not a Flex SDK.  Anyone else? Maybe you just have to use Flex/Flash Builder standalone?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: geekreef</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1512</link>
		<dc:creator>geekreef</dc:creator>
		<pubDate>Sun, 21 Feb 2010 05:21:44 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1512</guid>
		<description>I wish I would have found your post earlier. Eventually I stumbled upon this same process with FB4.  Nice post.  When I attempt to export my application I lose my NativeProcesses support.  Any ideas?</description>
		<content:encoded><![CDATA[<p>I wish I would have found your post earlier. Eventually I stumbled upon this same process with FB4.  Nice post.  When I attempt to export my application I lose my NativeProcesses support.  Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: geekreef</title>
		<link>http://mchristoff.com/2009/12/installing-the-adobe-air-2-beta-sdk-on-os-x/comment-page-1/#comment-1511</link>
		<dc:creator>geekreef</dc:creator>
		<pubDate>Sun, 21 Feb 2010 05:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://mchristoff.com/?p=114#comment-1511</guid>
		<description>I am able to get the application to export using your suggestion however when running the exported application I now lose the NativeProcess support. Any suggestions would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>I am able to get the application to export using your suggestion however when running the exported application I now lose the NativeProcess support. Any suggestions would be greatly appreciated.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
