<?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"
	>
<channel>
	<title>Comments on: How to update Adobe AIR applications automatically with JavaScript - AIRUpdater.js</title>
	<atom:link href="http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/</link>
	<description>Web development and Internet trends</description>
	<pubDate>Tue, 06 Jan 2009 11:41:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Thank you for 2008 - Happy New Year! - Robert&#8217;s talk - Web development and Internet trends</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-493001</link>
		<dc:creator>Thank you for 2008 - Happy New Year! - Robert&#8217;s talk - Web development and Internet trends</dc:creator>
		<pubDate>Tue, 30 Dec 2008 21:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-493001</guid>
		<description>[...] AIRUpdater [...]</description>
		<content:encoded><![CDATA[<p>[...] AIRUpdater [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492908</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Tue, 30 Dec 2008 12:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492908</guid>
		<description>enlightened,

Sorry, no ideas there.

hai anh,

Sorry, I have no idea how to solve that.</description>
		<content:encoded><![CDATA[<p>enlightened,</p>
<p>Sorry, no ideas there.</p>
<p>hai anh,</p>
<p>Sorry, I have no idea how to solve that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hai anh</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492886</link>
		<dc:creator>hai anh</dc:creator>
		<pubDate>Tue, 30 Dec 2008 09:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492886</guid>
		<description>Sorry because I try to fix my comment format but it's not ok. You can read my full question in http://www.actionscript.org/forums/showthread.php3?t=192460</description>
		<content:encoded><![CDATA[<p>Sorry because I try to fix my comment format but it&#8217;s not ok. You can read my full question in <a href="http://www.actionscript.org/forums/showthread.php3?t=192460" rel="nofollow">http://www.actionscript.org/forums/showthread.php3?t=192460</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hai anh</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492884</link>
		<dc:creator>hai anh</dc:creator>
		<pubDate>Tue, 30 Dec 2008 09:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492884</guid>
		<description>Hi Robert Nyman! I have problem with javascript. Can you help me? I try to use Javascript inside Actionscript which call MS word to read document. But it error when I initial ActiveXObject. 

Here is my code
test.mxml

&lt;code&gt;


    
        
        
    
    

&lt;/code&gt;

htmlwithJS.html
&lt;code&gt;

	
		function loadworddoc(){
	  		var doc = new ActiveXObject("Word.Application"); 
	  		doc.Visible=false; 
	  		doc.Documents.Open("C:\Sam\Sam.doc"); 
	  		var txt;
	  		txt = doc.Documents("C:\Sam\Sam.doc").Content; 
	  		document.all.myarea.value = txt;
	  		doc.quit(0); 
		}
	
	
		
		
		test now
	

&lt;/code&gt;

If I run AIR app the error message is : ReferenceError: Can't find variable: ActiveXObject but if I run each htmlwithJS.html I can see it load MS Word document. Why it is wrong? 
Thank any suggest!!!
Hai Anh</description>
		<content:encoded><![CDATA[<p>Hi Robert Nyman! I have problem with javascript. Can you help me? I try to use Javascript inside Actionscript which call <acronym title="Microsoft">MS</acronym> word to read document. But it error when I initial ActiveXObject. </p>
<p>Here is my code<br />
test.mxml</p>
<p><code></p>
<p></code></p>
<p>htmlwithJS.html<br />
<code></p>
<p>		function loadworddoc(){<br />
	  		var doc = new ActiveXObject("Word.Application");<br />
	  		doc.Visible=false;<br />
	  		doc.Documents.Open("C:\Sam\Sam.doc");<br />
	  		var txt;<br />
	  		txt = doc.Documents("C:\Sam\Sam.doc").Content;<br />
	  		document.all.myarea.value = txt;<br />
	  		doc.quit(0);<br />
		}</p>
<p>		test now</p>
<p></code></p>
<p>If I run AIR app the error message is : ReferenceError: Can&#8217;t find variable: ActiveXObject but if I run each htmlwithJS.html I can see it load <acronym title="Microsoft">MS</acronym> Word document. Why it is wrong?<br />
Thank any suggest!!!<br />
Hai Anh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hai anh</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492883</link>
		<dc:creator>hai anh</dc:creator>
		<pubDate>Tue, 30 Dec 2008 09:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-492883</guid>
		<description>Hi Robert Nyman! I have problem with javascript. Can you help me? I try to use Javascript inside Actionscript which call MS word to read document. But it error when I initial ActiveXObject. 

Here is my code
test.mxml

&lt;code&gt;


    
        
        
    
    

&lt;/code&gt;

htmlwithJS.html
&lt;code&gt;

	
		function loadworddoc(){
	  		var doc = new ActiveXObject("Word.Application"); 
	  		doc.Visible=false; 
	  		doc.Documents.Open("C:\Sam\Sam.doc"); 
	  		var txt;
	  		txt = doc.Documents("C:\Sam\Sam.doc").Content; 
	  		document.all.myarea.value = txt;
	  		doc.quit(0); 
		}
	
	
		
		
		test now
	

&lt;/code&gt;
If I run AIR app the error message is : ReferenceError: Can't find variable: ActiveXObject but if I run each htmlwithJS.html I can see it load MS Word document. Why it is wrong? 
Thank any suggest!!!
Hai Anh</description>
		<content:encoded><![CDATA[<p>Hi Robert Nyman! I have problem with javascript. Can you help me? I try to use Javascript inside Actionscript which call <acronym title="Microsoft">MS</acronym> word to read document. But it error when I initial ActiveXObject. </p>
<p>Here is my code<br />
test.mxml</p>
<p><code></p>
<p></code></p>
<p>htmlwithJS.html<br />
<code></p>
<p>		function loadworddoc(){<br />
	  		var doc = new ActiveXObject("Word.Application");<br />
	  		doc.Visible=false;<br />
	  		doc.Documents.Open("C:\Sam\Sam.doc");<br />
	  		var txt;<br />
	  		txt = doc.Documents("C:\Sam\Sam.doc").Content;<br />
	  		document.all.myarea.value = txt;<br />
	  		doc.quit(0);<br />
		}</p>
<p>		test now</p>
<p></code><br />
If I run AIR app the error message is : ReferenceError: Can&#8217;t find variable: ActiveXObject but if I run each htmlwithJS.html I can see it load <acronym title="Microsoft">MS</acronym> Word document. Why it is wrong?<br />
Thank any suggest!!!<br />
Hai Anh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: enlightened</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-483323</link>
		<dc:creator>enlightened</dc:creator>
		<pubDate>Tue, 09 Dec 2008 03:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-483323</guid>
		<description>Great script. I knew nothing, now I know a bit more :)

Anyone seen a packaged script like this that handles docking and undocking an air application to the system tray. I can't seem to find anything that doesn't rely on Flash, Flex or AS3.</description>
		<content:encoded><![CDATA[<p>Great script. I knew nothing, now I know a bit more <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyone seen a packaged script like this that handles docking and undocking an air application to the system tray. I can&#8217;t seem to find anything that doesn&#8217;t rely on Flash, Flex or AS3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-468958</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Sun, 02 Nov 2008 08:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-468958</guid>
		<description>Shannon,

There's also an element named cancel-update expected, if you look closer in the &lt;code&gt;compareVersions&lt;/code&gt; method. Just make sure to have an element named that, and a click on it will hide the update dialog.</description>
		<content:encoded><![CDATA[<p>Shannon,</p>
<p>There&#8217;s also an element named cancel-update expected, if you look closer in the <code>compareVersions</code> method. Just make sure to have an element named that, and a click on it will hide the update dialog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shannon</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-468883</link>
		<dc:creator>Shannon</dc:creator>
		<pubDate>Sun, 02 Nov 2008 03:05:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-468883</guid>
		<description>I feel like a complete idiot asking this because it should be such a simple question....

but I've been trying to figure it out all day.

How do I provide an ok/cancel (or yes/no) confirmation window within the application when it loads to state there's an update available and give the user the option to upgrade now?

I see the "release-notes" and "update-application" in the js above, but everything I've tried on my application didn't seem to do anything.

I have the above code in a js file and imported in the header.

Many thanks,
Shannon</description>
		<content:encoded><![CDATA[<p>I feel like a complete idiot asking this because it should be such a simple question&#8230;.</p>
<p>but I&#8217;ve been trying to figure it out all day.</p>
<p>How do I provide an ok/cancel (or yes/no) confirmation window within the application when it loads to state there&#8217;s an update available and give the user the option to upgrade now?</p>
<p>I see the &#8220;release-notes&#8221; and &#8220;update-application&#8221; in the js above, but everything I&#8217;ve tried on my application didn&#8217;t seem to do anything.</p>
<p>I have the above code in a js file and imported in the header.</p>
<p>Many thanks,<br />
Shannon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Auto Update Air Applications &#124; Adobe AIR Tutorials</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-468169</link>
		<dc:creator>Auto Update Air Applications &#124; Adobe AIR Tutorials</dc:creator>
		<pubDate>Thu, 30 Oct 2008 10:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-468169</guid>
		<description>[...] Learn more on how to push application updates to the end users @  AIRUpdater [...]</description>
		<content:encoded><![CDATA[<p>[...] Learn more on how to push application updates to the end users @  AIRUpdater [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-467576</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Sun, 26 Oct 2008 20:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-467576</guid>
		<description>HB,

Absolutely, that could be an interesting option!</description>
		<content:encoded><![CDATA[<p>HB,</p>
<p>Absolutely, that could be an interesting option!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HB</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-467135</link>
		<dc:creator>HB</dc:creator>
		<pubDate>Fri, 24 Oct 2008 06:35:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-467135</guid>
		<description>Even though you can't update only parts of an AIR app using the AIR Updater framework, you could certainly incorporate your own code to download and overwrite specific xml/swf files. So your sales guys wouldn't know the difference, and (perhaps even better, depending on your viewpoint) the app wouldn't have to restart after downloading the new content.

The code to download would be very similar to initUpdateApplication above, and when it's done the app could display its own message if you want, or it could just start using the updated files seamlessly.

At work we have a digital sign app which gets new XML playlists and data feeds, FLV / SWF video ads and static image ads, and they automatically update those assets without AIR's update framework, and when the app itself needs a fix, it uses the update framework.</description>
		<content:encoded><![CDATA[<p>Even though you can&#8217;t update only parts of an AIR app using the AIR Updater framework, you could certainly incorporate your own code to download and overwrite specific <acronym title="eXtensible Markup Language">XML</acronym>/swf files. So your sales guys wouldn&#8217;t know the difference, and (perhaps even better, depending on your viewpoint) the app wouldn&#8217;t have to restart after downloading the new content.</p>
<p>The code to download would be very similar to initUpdateApplication above, and when it&#8217;s done the app could display its own message if you want, or it could just start using the updated files seamlessly.</p>
<p>At work we have a digital sign app which gets new <acronym title="eXtensible Markup Language">XML</acronym> playlists and data feeds, FLV / SWF video ads and static image ads, and they automatically update those assets without AIR&#8217;s update framework, and when the app itself needs a fix, it uses the update framework.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-458769</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Sat, 11 Oct 2008 18:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-458769</guid>
		<description>Hemagiri,

As far as I know, it's not possible.</description>
		<content:encoded><![CDATA[<p>Hemagiri,</p>
<p>As far as I know, it&#8217;s not possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hemagiri</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-458376</link>
		<dc:creator>Hemagiri</dc:creator>
		<pubDate>Sat, 11 Oct 2008 09:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-458376</guid>
		<description>We need to develop one sales presentation in flash with Adobe AIR capabilities. The idea is once developed and deployed, sales guys will get updated content using Adobe AIR Update Frame work. As the intial application will be around 10 mb and it will have many seperate SWFs. We intend to update only few swf or few XML files in further release of applicaiton. Otherwise updating entire APP will be of Huge size. Does AIR have this kind of support /  capabilities.</description>
		<content:encoded><![CDATA[<p>We need to develop one sales presentation in flash with Adobe AIR capabilities. The idea is once developed and deployed, sales guys will get updated content using Adobe AIR Update Frame work. As the intial application will be around 10 <acronym title="Megabyte">MB</acronym> and it will have many seperate SWFs. We intend to update only few swf or few <acronym title="eXtensible Markup Language">XML</acronym> files in further release of applicaiton. Otherwise updating entire APP will be of Huge size. Does AIR have this kind of support /  capabilities.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-412585</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Tue, 09 Sep 2008 10:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-412585</guid>
		<description>seme,

Interesting questions. But no, this only checks version number of the application. If you want to make extra calls when it is done, you need to tweak the script.</description>
		<content:encoded><![CDATA[<p>seme,</p>
<p>Interesting questions. But no, this only checks version number of the application. If you want to make extra calls when it is done, you need to tweak the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seme</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-411708</link>
		<dc:creator>seme</dc:creator>
		<pubDate>Mon, 08 Sep 2008 22:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-411708</guid>
		<description>Is there a way to have a series of commands executed right after the update is completed only once ? 

The idea here is to update the old database with new fields based on the old version number.</description>
		<content:encoded><![CDATA[<p>Is there a way to have a series of commands executed right after the update is completed only once ? </p>
<p>The idea here is to update the old database with new fields based on the old version number.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seme</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-410843</link>
		<dc:creator>seme</dc:creator>
		<pubDate>Mon, 08 Sep 2008 10:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-410843</guid>
		<description>What about updating the database ? If changes were made to the SQLite database in the new version, is there a smooth and easy way to detect the changes (fields/tables added/removed) and apply it to the old database ?</description>
		<content:encoded><![CDATA[<p>What about updating the database ? If changes were made to the SQLite database in the new version, is there a smooth and easy way to detect the changes (fields/tables added/removed) and apply it to the old database ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-379772</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Mon, 18 Aug 2008 21:51:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-379772</guid>
		<description>johnbillion,

Thanks for the tip!

Mark,

You're welcome!</description>
		<content:encoded><![CDATA[<p>johnbillion,</p>
<p>Thanks for the tip!</p>
<p>Mark,</p>
<p>You&#8217;re welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-360033</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 31 Jul 2008 20:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-360033</guid>
		<description>Thank you so much for this!

I'm going to be integrating it into my AIR application that's still in development.</description>
		<content:encoded><![CDATA[<p>Thank you so much for this!</p>
<p>I&#8217;m going to be integrating it into my AIR application that&#8217;s still in development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johnbillion</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-344679</link>
		<dc:creator>johnbillion</dc:creator>
		<pubDate>Sun, 20 Jul 2008 01:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-344679</guid>
		<description>If your application has problems downloading the .air installer file from your server, you may need to explicitly set the mime type on your server so it handles the file correctly.

Check out &lt;a href="http://www.rogue-development.com/blog2/2007/10/air-mime-type/" rel="nofollow"&gt;www.rogue-development.com/blog2/2007/10/air-mime-type/&lt;/a&gt; for details.

I had to do this as my server was trying to preprocess the .air file before sending it, instead of just sending it as an application file.</description>
		<content:encoded><![CDATA[<p>If your application has problems downloading the .air installer file from your server, you may need to explicitly set the mime type on your server so it handles the file correctly.</p>
<p>Check out <a href="http://www.rogue-development.com/blog2/2007/10/air-mime-type/" rel="nofollow">http://www.rogue-development.com/blog2/2007/10/air-mime-type/</a> for details.</p>
<p>I had to do this as my server was trying to preprocess the .air file before sending it, instead of just sending it as an application file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-302511</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Fri, 13 Jun 2008 18:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-302511</guid>
		<description>Kevin,

Thank you! It's my bad, I didn't put in the source file...

It is released as open source, under a MIT license (this is mentioned and there's a link to the terms for that license at the &lt;a href="http://code.google.com/p/airupdater/" rel="nofollow"&gt;AIRUpdater project start page&lt;/a&gt;).</description>
		<content:encoded><![CDATA[<p>Kevin,</p>
<p>Thank you! It&#8217;s my bad, I didn&#8217;t put in the source file&#8230;</p>
<p>It is released as open source, under a MIT license (this is mentioned and there&#8217;s a link to the terms for that license at the <a href="http://code.google.com/p/airupdater/" rel="nofollow">AIRUpdater project start page</a>).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
