<?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: AIR Application ActionScript Project with Flex Builder 3</title>
	<atom:link href="http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/</link>
	<description>lulz</description>
	<lastBuildDate>Mon, 01 Mar 2010 01:42:44 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SmivaL</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-1894</link>
		<dc:creator>SmivaL</dc:creator>
		<pubDate>Tue, 27 Oct 2009 08:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-1894</guid>
		<description>When I compile a project is not a window flash player, but I can hear sounds from SWF. Other AIR project compiles fine. AIR application also does not appear on the screen, but it can be seen in the memory.</description>
		<content:encoded><![CDATA[<p>When I compile a project is not a window flash player, but I can hear sounds from SWF. Other AIR project compiles fine. AIR application also does not appear on the screen, but it can be seen in the memory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marijn</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-1752</link>
		<dc:creator>marijn</dc:creator>
		<pubDate>Mon, 22 Jun 2009 14:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-1752</guid>
		<description>Using the code Omar Fouad posted, i was able to create a Air App with flex builder, tho i had the issue when i closed my application, the debugger would still be running, so i had to manually stop de debugger with the red square (stop-button) below is a workaround for the problem.

instead of creating a new NativeWindow, i would recommend to use the stage.nativeWindow property. You should start it like this:
package {
  import flash.display.Sprite;
  import flash.display.NativeWindow;
  public class airApp extends Sprite 
  {
    private var m_NativeWindow:NativeWindow;
    public function airApp()
    {
      addEventListener(Event.ADDED_TO_STAGE, addedToStage);
    }
    private function addedToStage(e:Event):void
    {
      m_NativeWindow = stage.nativeWindow;
      m_NativeWindow.activate();
    }
  }
}

Hope this is helpfull for some people :)</description>
		<content:encoded><![CDATA[<p>Using the code Omar Fouad posted, i was able to create a Air App with flex builder, tho i had the issue when i closed my application, the debugger would still be running, so i had to manually stop de debugger with the red square (stop-button) below is a workaround for the problem.</p>
<p>instead of creating a new NativeWindow, i would recommend to use the stage.nativeWindow property. You should start it like this:<br />
package {<br />
  import flash.display.Sprite;<br />
  import flash.display.NativeWindow;<br />
  public class airApp extends Sprite<br />
  {<br />
    private var m_NativeWindow:NativeWindow;<br />
    public function airApp()<br />
    {<br />
      addEventListener(Event.ADDED_TO_STAGE, addedToStage);<br />
    }<br />
    private function addedToStage(e:Event):void<br />
    {<br />
      m_NativeWindow = stage.nativeWindow;<br />
      m_NativeWindow.activate();<br />
    }<br />
  }<br />
}</p>
<p>Hope this is helpfull for some people <img src='http://yourpalmark.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devil</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-1734</link>
		<dc:creator>devil</dc:creator>
		<pubDate>Sat, 16 May 2009 08:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-1734</guid>
		<description>helpful thanks!</description>
		<content:encoded><![CDATA[<p>helpful thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petruza</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-1731</link>
		<dc:creator>Petruza</dc:creator>
		<pubDate>Thu, 07 May 2009 22:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-1731</guid>
		<description>Hi, I&#039;m trying to do just this.
Could someone post source files that do this?
Thanks!

If you wish, you could answer or send them to petruzanautico (at) yahoo,com,ar
Thanks!</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m trying to do just this.<br />
Could someone post source files that do this?<br />
Thanks!</p>
<p>If you wish, you could answer or send them to petruzanautico (at) yahoo,com,ar<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omar Fouad</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-1536</link>
		<dc:creator>Omar Fouad</dc:creator>
		<pubDate>Mon, 20 Apr 2009 12:02:03 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-1536</guid>
		<description>The main class extending sprite is not enough to show something on the screen. You should add a native window first that would act as a main stage.

var windowOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
// create the window
var mainWindow:NativeWindow = new NativeWindow(windowOptions);
// activate the window
mainWindow.activate();
// adds &quot;this&quot; to the stage of the Window we have created
mainWindow.stage.addChild(this);</description>
		<content:encoded><![CDATA[<p>The main class extending sprite is not enough to show something on the screen. You should add a native window first that would act as a main stage.</p>
<p>var windowOptions:NativeWindowInitOptions = new NativeWindowInitOptions();<br />
// create the window<br />
var mainWindow:NativeWindow = new NativeWindow(windowOptions);<br />
// activate the window<br />
mainWindow.activate();<br />
// adds &#8220;this&#8221; to the stage of the Window we have created<br />
mainWindow.stage.addChild(this);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex programming</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-318</link>
		<dc:creator>Flex programming</dc:creator>
		<pubDate>Wed, 15 Oct 2008 20:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-318</guid>
		<description>How can you create an AIR Application in an Actionscript Project with Flex Builder 3 beta?

I found the answer in Mark Walters BlogIn a nutshell

create a Flex Project
choose AIR as the application type
click next
click next again
rename the main application file from .mxml to .as
</description>
		<content:encoded><![CDATA[<p>How can you create an AIR Application in an Actionscript Project with Flex Builder 3 beta?</p>
<p>I found the answer in Mark Walters BlogIn a nutshell</p>
<p>create a Flex Project<br />
choose AIR as the application type<br />
click next<br />
click next again<br />
rename the main application file from .mxml to .as</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-317</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 05 Sep 2008 09:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-317</guid>
		<description>seems capital letters in project name are a problem
</description>
		<content:encoded><![CDATA[<p>seems capital letters in project name are a problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard w.</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-316</link>
		<dc:creator>richard w.</dc:creator>
		<pubDate>Thu, 10 Jul 2008 20:25:50 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-316</guid>
		<description>ive just tried this twice on a mac with no cigar. when i compile the project the trace output is good but instead of launching a swf all i get is a little app that opens called &#039;adl&#039;. so i&#039;m wondering: are you compiling on windows?
</description>
		<content:encoded><![CDATA[<p>ive just tried this twice on a mac with no cigar. when i compile the project the trace output is good but instead of launching a swf all i get is a little app that opens called &#8216;adl&#8217;. so i&#8217;m wondering: are you compiling on windows?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AndyChou</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-315</link>
		<dc:creator>AndyChou</dc:creator>
		<pubDate>Mon, 21 Apr 2008 08:59:46 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-315</guid>
		<description>Need 10 Adobe Flex engineers:
1. You should have this skill set: &quot;Adobe Flex + C#/Java + SQL Database&quot;.
2. You have to be living in United States, United Kingdom, Australia or Canada.
3. Work part time (through the Internet) OR full time with us (on site at our client&#039;s office).
4. Please send us your resume, expected salary, full time or part time, etc.

Busycode Inc. is a top Adobe Flex outsourcing service provider who develops Flex/AIR applications for clients.
Visit &lt;a href=&quot;http://www.busycode.com&quot; rel=&quot;nofollow&quot;&gt;http://www.busycode.com&lt;/a&gt; , you will see we are all about Flex engineer, Flex programmer, Flex coder, Flex speciallist and Flex expert. If you are Mr. Flex or Miss Flex, join us now!

</description>
		<content:encoded><![CDATA[<p>Need 10 Adobe Flex engineers:<br />
1. You should have this skill set: &#8220;Adobe Flex + C#/Java + SQL Database&#8221;.<br />
2. You have to be living in United States, United Kingdom, Australia or Canada.<br />
3. Work part time (through the Internet) OR full time with us (on site at our client&#8217;s office).<br />
4. Please send us your resume, expected salary, full time or part time, etc.</p>
<p>Busycode Inc. is a top Adobe Flex outsourcing service provider who develops Flex/AIR applications for clients.<br />
Visit <a href="http://www.busycode.com" rel="nofollow">http://www.busycode.com</a> , you will see we are all about Flex engineer, Flex programmer, Flex coder, Flex speciallist and Flex expert. If you are Mr. Flex or Miss Flex, join us now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vic</title>
		<link>http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/comment-page-1/#comment-314</link>
		<dc:creator>Vic</dc:creator>
		<pubDate>Wed, 05 Mar 2008 03:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2007/10/08/air-application-actionscript-project-with-flex-builder-3/#comment-314</guid>
		<description>hello.
i just installed flex3 and i tried to build a AIR app like you said, but when i hit debug, nothing shows up. what am i missing ? i just started with AIR, so im trying to find out if there are anything that makes it better to build an AIR desktop application than creating a actionscript project..

i only code AS3.

</description>
		<content:encoded><![CDATA[<p>hello.<br />
i just installed flex3 and i tried to build a AIR app like you said, but when i hit debug, nothing shows up. what am i missing ? i just started with AIR, so im trying to find out if there are anything that makes it better to build an AIR desktop application than creating a actionscript project..</p>
<p>i only code AS3.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
