<?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: How to update Adobe AIR applications automatically with JavaScript &#8211; AIRUpdater.js</title>
	<atom:link href="http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/feed/" rel="self" type="application/rss+xml" />
	<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/</link>
	<description>Web development and Internet trends</description>
	<lastBuildDate>Sat, 13 Mar 2010 22:37:13 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bazza</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-609814</link>
		<dc:creator>Bazza</dc:creator>
		<pubDate>Wed, 11 Nov 2009 23:43:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-609814</guid>
		<description>Just what I needed to polish off an app that I&#039;m creating. Well commented so I could easily modify it to suit my requirements. Thanks for sharing.</description>
		<content:encoded><![CDATA[<p>Just what I needed to polish off an app that I&#8217;m creating. Well commented so I could easily modify it to suit my requirements. Thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-597833</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Sun, 16 Aug 2009 21:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-597833</guid>
		<description>brothercake,

Sweet! It&#039;s an honor to help someone like you!</description>
		<content:encoded><![CDATA[<p>brothercake,</p>
<p>Sweet! It&#8217;s an honor to help someone like you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brothercake</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-595503</link>
		<dc:creator>brothercake</dc:creator>
		<pubDate>Thu, 23 Jul 2009 15:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-595503</guid>
		<description>Thanks for this mate - just what I needed :)</description>
		<content:encoded><![CDATA[<p>Thanks for this mate &#8211; just what I needed <img src='http://robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-590459</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Fri, 19 Jun 2009 09:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-590459</guid>
		<description>Greg,

Thank you!

shayne shiells,

I&#039;m sorry, I don&#039;t have any experience with how to do that with Flash in Adobe AIR. Good luck!</description>
		<content:encoded><![CDATA[<p>Greg,</p>
<p>Thank you!</p>
<p>shayne shiells,</p>
<p>I&#8217;m sorry, I don&#8217;t have any experience with how to do that with Flash in Adobe AIR. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shayne shiells</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-590427</link>
		<dc:creator>shayne shiells</dc:creator>
		<pubDate>Fri, 19 Jun 2009 01:42:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-590427</guid>
		<description>hi to all


well ive recently finished an app which i made in flash cs4 and converted to an air app....the issue iam having is the update code....iam wanting to create a seamless install and have the air app update the users app when i update mine on my server..ive tried so many options and tried to find info,i think i nearly nailed it,but the update method doesnt seem to work i get an error Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
at VisNova_fla::MainTimeline/frame1()[VisNova_fla.MainTimeline::frame1:66]

also this error Error: This method is not supported if application is launched from ADL.
at flash.desktop::Updater/update()

this is my code
import flash.desktop.*;
import flash.filesystem.*;
import flash.net.*;

var updater:Updater = new Updater();
var airFile:File = File.desktopDirectory.resolvePath(&quot;VisNova.air&quot;);
var version:String = &quot;2.01&quot;;
updater.update(airFile, version);



var urlString:String = &quot;http://visnova.biz/AIR/vis/VisNova.air&quot;;
var urlReq:URLRequest = new URLRequest(urlString);
var urlStream:URLStream = new URLStream();
var fileData:ByteArray = new ByteArray();
urlStream.addEventListener(Event.COMPLETE, loaded);
urlStream.load(urlReq);
function loaded(event:Event):void {
urlStream.readBytes(fileData, 0, urlStream.bytesAvailable);
writeAirFile();
}
function writeAirFile():void {
var file:File = File.applicationStorageDirectory.resolvePath(&quot;My App VisNova.air&quot;);
var fileStream:FileStream = new FileStream();
fileStream.open(file, FileMode.WRITE);
fileStream.writeBytes(fileData, 0, fileData.length);
fileStream.close();

}

iam not very experienced with as3 and this is my first air app,but its for my users that buy my products,so its very important to me....if someone is willing to help,i will pay for there services...you can contact me at shayne@visnova.biz

thanks....Shayne Shiells</description>
		<content:encoded><![CDATA[<p>hi to all</p>
<p>well ive recently finished an app which i made in flash cs4 and converted to an air app&#8230;.the issue iam having is the update code&#8230;.iam wanting to create a seamless install and have the air app update the users app when i update mine on my server..ive tried so many options and tried to find info,i think i nearly nailed it,but the update method doesnt seem to work i get an error Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.<br />
at VisNova_fla::MainTimeline/frame1()[VisNova_fla.MainTimeline::frame1:66]</p>
<p>also this error Error: This method is not supported if application is launched from ADL.<br />
at flash.desktop::Updater/update()</p>
<p>this is my code<br />
import flash.desktop.*;<br />
import flash.filesystem.*;<br />
import flash.net.*;</p>
<p>var updater:Updater = new Updater();<br />
var airFile:File = File.desktopDirectory.resolvePath(&#8220;VisNova.air&#8221;);<br />
var version:String = &#8220;2.01&#8243;;<br />
updater.update(airFile, version);</p>
<p>var urlString:String = &#8220;http://visnova.biz/AIR/vis/VisNova.air&#8221;;<br />
var urlReq:URLRequest = new URLRequest(urlString);<br />
var urlStream:URLStream = new URLStream();<br />
var fileData:ByteArray = new ByteArray();<br />
urlStream.addEventListener(Event.COMPLETE, loaded);<br />
urlStream.load(urlReq);<br />
function loaded(event:Event):void {<br />
urlStream.readBytes(fileData, 0, urlStream.bytesAvailable);<br />
writeAirFile();<br />
}<br />
function writeAirFile():void {<br />
var file:File = File.applicationStorageDirectory.resolvePath(&#8220;My App VisNova.air&#8221;);<br />
var fileStream:FileStream = new FileStream();<br />
fileStream.open(file, FileMode.WRITE);<br />
fileStream.writeBytes(fileData, 0, fileData.length);<br />
fileStream.close();</p>
<p>}</p>
<p>iam not very experienced with as3 and this is my first air app,but its for my users that buy my products,so its very important to me&#8230;.if someone is willing to help,i will pay for there services&#8230;you can contact me at <a href="mailto:shayne@visnova.biz">shayne@visnova.biz</a></p>
<p>thanks&#8230;.Shayne Shiells</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-556209</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sun, 29 Mar 2009 09:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-556209</guid>
		<description>Awesome, thanks for sharing! Has anyone seen anything for auto-PACKAGING AJAX AIR apps on a server? I&#039;m thinking about being able to dynamically build an AIR installer on a Linux server based on simple choices in a PHP-based UI... searching for possible deployment solutions.</description>
		<content:encoded><![CDATA[<p>Awesome, thanks for sharing! Has anyone seen anything for auto-PACKAGING AJAX AIR apps on a server? I&#8217;m thinking about being able to dynamically build an AIR installer on a Linux server based on simple choices in a PHP-based UI&#8230; searching for possible deployment solutions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-534204</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Mon, 02 Mar 2009 21:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-534204</guid>
		<description>Andy,

No, not at the moment, but if you want to give it a go, feel free! :-)</description>
		<content:encoded><![CDATA[<p>Andy,</p>
<p>No, not at the moment, but if you want to give it a go, feel free! <img src='http://robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Matthews</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-534195</link>
		<dc:creator>Andy Matthews</dc:creator>
		<pubDate>Mon, 02 Mar 2009 20:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-534195</guid>
		<description>Have you given thought to reworking this code to take advatage of the new built in updater class?</description>
		<content:encoded><![CDATA[<p>Have you given thought to reworking this code to take advatage of the new built in updater class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 19 useful articles from web on Adobe AIR</title>
		<link>http://robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-498724</link>
		<dc:creator>19 useful articles from web on Adobe AIR</dc:creator>
		<pubDate>Mon, 12 Jan 2009 19:58:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/2008/06/09/how-to-update-adobe-air-applications-automatically-with-javascript-airupdaterjs/#comment-498724</guid>
		<description>[...] How to update Adobe AIR applications automatically with JavaScript - AIRUpdater.js - robertnyman.com [...]</description>
		<content:encoded><![CDATA[<p>[...] How to update Adobe AIR applications automatically with JavaScript &#8211; AIRUpdater.js &#8211; robertnyman.com [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thank you for 2008 - Happy New Year! - Robert&#8217;s talk - Web development and Internet trends</title>
		<link>http://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://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://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&#039;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://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(&quot;Word.Application&quot;); 
	  		doc.Visible=false; 
	  		doc.Documents.Open(&quot;C:\Sam\Sam.doc&quot;); 
	  		var txt;
	  		txt = doc.Documents(&quot;C:\Sam\Sam.doc&quot;).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&#039;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 MS 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 MS 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://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(&quot;Word.Application&quot;); 
	  		doc.Visible=false; 
	  		doc.Documents.Open(&quot;C:\Sam\Sam.doc&quot;); 
	  		var txt;
	  		txt = doc.Documents(&quot;C:\Sam\Sam.doc&quot;).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&#039;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 MS 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 MS Word document. Why it is wrong?<br />
Thank any suggest!!!<br />
Hai Anh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: enlightened</title>
		<link>http://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&#039;t seem to find anything that doesn&#039;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://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://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&#039;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://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&#039;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&#039;s an update available and give the user the option to upgrade now?

I see the &quot;release-notes&quot; and &quot;update-application&quot; in the js above, but everything I&#039;ve tried on my application didn&#039;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://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://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://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&#039;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&#039;t know the difference, and (perhaps even better, depending on your viewpoint) the app wouldn&#039;t have to restart after downloading the new content.

The code to download would be very similar to initUpdateApplication above, and when it&#039;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&#039;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 xml/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 XML 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>
</channel>
</rss>
