<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Gerton's Corner</title>
	<atom:link href="http://gertonscorner.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gertonscorner.wordpress.com</link>
	<description>Just some thoughts, nothing else…</description>
	<pubDate>Fri, 07 Mar 2008 03:48:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Badge installing AIR application with SWFObject</title>
		<link>http://gertonscorner.wordpress.com/2008/02/29/badge-installing-air-application-with-swfobject/</link>
		<comments>http://gertonscorner.wordpress.com/2008/02/29/badge-installing-air-application-with-swfobject/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 20:39:30 +0000</pubDate>
		<dc:creator>Gerton</dc:creator>
		
		<category><![CDATA[Adobe Flex/AIR]]></category>

		<category><![CDATA[Adobe]]></category>

		<category><![CDATA[AIR]]></category>

		<category><![CDATA[badge]]></category>

		<category><![CDATA[SWFObject]]></category>

		<guid isPermaLink="false">http://gertonscorner.wordpress.com/?p=4</guid>
		<description><![CDATA[Adobe finally released it&#8217;s 1.0 version of AIR, so let&#8217;s go to work and create great looking applications. But how on earth do we deploy these applications to the public?
When downloading the AIR SDK a sample is provided for installing and deploying air applications using the badge installer. This badge installer consist of a badge.swf [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Adobe finally released it&#8217;s 1.0 version of AIR, so let&#8217;s go to work and create great looking applications. But how on earth do we deploy these applications to the public?</p>
<p>When downloading the <a href="http://www.adobe.com/products/air/tools/sdk/" title="Adobe AIR SDK download" target="_blank">AIR SDK</a> a sample is provided for installing and deploying air applications using the badge installer. This badge installer consist of a badge.swf file and some javascript which can be used within html and automatically installs the right version of the Adobe AIR runtime followed by your application.</p>
<p>When using flash within (x)html i personally prefer to use the <a href="http://blog.deconcept.com/swfobject/" title="SWFObject for for embedding Adobe Flash content" target="_blank">SWFObject</a> javascript file so here are the steps involved of deploying AIR applications using the badge installer and SWFObject.</p>
<p>First of all you need to change your webserver configuration to add support for the AIR mime type by adding the following line to your, for example, Apache configuration file:</p>
<p><code>AddType application/vnd.adobe.air-application-installer-package+zip air</code></p>
<p>Now it is time to use SWFObject. Simply include the <code>swfobject.js</code> Javascript file in the head section of your html, then use a small amount of Javascript on your page to embed your Flash movie. In our case this will be the badge.swf file from the AIR SDK. A complete example with the necessary variables for installing the AIR 1.0 runtime and an example &#8220;hello world&#8221; AIR application is shown below.<br />
<code><br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Deploy Hello World&lt;/title&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;swfobject.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;flashcontent&#8221;&gt;<br />
This will hold the flash content<br />
&lt;/div&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
// &lt;![CDATA[<br />
var so = new SWFObject("your/path/to/badge.swf", "badge", "217", "180", "9.0.115", "#FFFFFF");<br />
so.addVariable( "appname", "Hello World" );<br />
so.addVariable( "appurl",   "http://your-host/HelloWorld.air" );<br />
so.addVariable( "imageurl", "test.jpg" );<br />
so.addVariable( "airversion", "1.0" );<br />
so.write("flashcontent");<br />
// ]]&gt;<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gertonscorner.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gertonscorner.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gertonscorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gertonscorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gertonscorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gertonscorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gertonscorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gertonscorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gertonscorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gertonscorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gertonscorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gertonscorner.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gertonscorner.wordpress.com&blog=1218571&post=4&subd=gertonscorner&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gertonscorner.wordpress.com/2008/02/29/badge-installing-air-application-with-swfobject/feed/</wfw:commentRss>
		</item>
		<item>
		<title>On the blog train</title>
		<link>http://gertonscorner.wordpress.com/2007/06/10/on-the-blog-train/</link>
		<comments>http://gertonscorner.wordpress.com/2007/06/10/on-the-blog-train/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 14:51:09 +0000</pubDate>
		<dc:creator>Gerton</dc:creator>
		
		<category><![CDATA[All about nothing]]></category>

		<guid isPermaLink="false">http://gertonscorner.wordpress.com/2007/06/10/on-the-blog-train/</guid>
		<description><![CDATA[Never thought that this would happen, but i have just started a weblog.
Hopefully it will last for a long time, but hey nobody knows where this blog train will lead us.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Never thought that this would happen, but i have just started a weblog.</p>
<p>Hopefully it will last for a long time, but hey nobody knows where this blog train will lead us.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gertonscorner.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gertonscorner.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gertonscorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gertonscorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gertonscorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gertonscorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gertonscorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gertonscorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gertonscorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gertonscorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gertonscorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gertonscorner.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gertonscorner.wordpress.com&blog=1218571&post=3&subd=gertonscorner&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://gertonscorner.wordpress.com/2007/06/10/on-the-blog-train/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>