<?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"
	>

<channel>
	<title>FlexDaddy -aka- Andrew Spaulding</title>
	<atom:link href="http://flexdaddy.info/feed" rel="self" type="application/rss+xml" />
	<link>http://www.flexdaddy.info</link>
	<description>Andrew Spaulding on Adobe Flex, AIR and other related and enabling technologies. Here you'll find the good and the bad, and hopefully something useful. Enjoy!</description>
	<pubDate>Tue, 05 Aug 2008 02:20:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
			<item>
		<title>Building desktop applications with HTML and JavaScript</title>
		<link>http://www.flexdaddy.info/2008/08/05/building-desktop-applications-with-html-and-javascript/</link>
		<comments>http://www.flexdaddy.info/2008/08/05/building-desktop-applications-with-html-and-javascript/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 02:10:12 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/?p=165</guid>
		<description><![CDATA[This session at Adobe AIR Camp introduced traditional HTML and JavaScript developers to the AIR SDK and how to use the the various binaries (ADL and ADT) to develop, test, and package desktop applications. The session included a basic introduction to the AIRAliases.js file and it&#8217;s importance when coding against the AIR runtime with JS.
What [...]]]></description>
			<content:encoded><![CDATA[<p>This session at Adobe AIR Camp introduced traditional HTML and JavaScript developers to the AIR SDK and how to use the the various binaries (ADL and ADT) to develop, test, and package desktop applications. The session included a basic introduction to the AIRAliases.js file and it&#8217;s importance when coding against the AIR runtime with JS.</p>
<p>What I find really helpful is the <a href="http://www.adobe.com/go/learn_air_html_jslr" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/go/learn_air_html_jslr?referer=');">Adobe AIR Language Reference for JavaScript developers</a>. This is a subset of the ActionScript 3.0 Language Reference and includes all the AIR specific features that you as a JavaScript developer can access within the AIR runtime.</p>
<p><span id="more-165"></span></p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="500" height="400"> <param name="movie" value="https://share.acrobat.com/adc/flex/mpt.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent"/> <param name="allowFullScreen" value="true"/> <param name="flashvars"  value="ext=pdf&docId=93c4d486-ed78-4ac3-a1c4-c8450e3464c4"/> <embed src="https://share.acrobat.com/adc/flex/mpt.swf"  quality="high"  pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"  type="application/x-shockwave-flash" width="500" height="400" wmode="transparent" allowFullScreen="true" flashvars="ext=pdf&docId=93c4d486-ed78-4ac3-a1c4-c8450e3464c4"> </embed> </object></p>
<p>For the basic application seen below you can develop using your favorite text editor and the <a href="http://www.adobe.com/products/air/tools/sdk/" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/products/air/tools/sdk/?referer=');">Adobe AIR SDK</a>, download the <a href="http://www.adobe.com/products/air/tools/ajax/" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/products/air/tools/ajax/?referer=');">Adobe AIR extension for Dreamweaver CS3</a>, or even try developing with <a href="http://www.aptana.com" onclick="pageTracker._trackPageview('/outgoing/www.aptana.com?referer=');">Aptana</a>. I really like Aptana as it can be installed as a plugin for Eclipse and sit right beside my Flex development perspective.</p>
<p>For other AIR development tools <a href="http://www.adobe.com/products/air/tools/" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/products/air/tools/?referer=');">click here</a>.</p>
<p>Download the <a href="http://www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_html_sample.zip" onclick="pageTracker._trackPageview('/outgoing/www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_html_sample.zip?referer=');">source code</a> for the application below.</p>
<p><strong>Your first desktop application with HTML and JavaScript</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
</pre></td><td class="code"><pre class="html4strict"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;html&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;head&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;title&gt;</span></span>Our first HTML AIR application<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;AIRAliases.js&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script&gt;</span></span>
   function doLoad()
   {
      alert(&quot;Simple alert to show we can include regular JS scripting&quot;);
   }
&nbsp;
   function writeFile()
   {
      var file = air.File.desktopDirectory.resolvePath(&quot;sample.txt&quot;);
	  var stream = new air.FileStream();
&nbsp;
	  stream.open( file, air.FileMode.WRITE );
	  stream.writeMultiByte( document.getElementById('textInput').value , air.File.systemCharset );
	  stream.close();   
   }
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;body</span> <span style="color: #000066;">onLoad</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;doLoad()&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;h2&gt;</span></span>AIR HTML/JavaScript Sample<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/h2&gt;</span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;p&gt;</span></span>This sample application will take a simple text input entry and write this out to the contents of a file on the users desktop<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/p&gt;</span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;textInput&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;www.flexdaddy.info&quot;</span><span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">onClick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;writeFile()&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Save to desktop&quot;</span> <span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/html&gt;</span></span></pre></td></tr></table></div>

<p><strong>And the application descriptor/manifest file</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="xml"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span> ?xml <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="font-weight: bold; color: black;">?&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;application</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://ns.adobe.com/air/application/1.0&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;id<span style="font-weight: bold; color: black;">&gt;</span></span></span>com.flexdaddy.samples.htmlair<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/id<span style="font-weight: bold; color: black;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;version<span style="font-weight: bold; color: black;">&gt;</span></span></span>v1<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/version<span style="font-weight: bold; color: black;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;filename<span style="font-weight: bold; color: black;">&gt;</span></span></span>aircamp_sample<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/filename<span style="font-weight: bold; color: black;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;initialwindow<span style="font-weight: bold; color: black;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;content<span style="font-weight: bold; color: black;">&gt;</span></span></span>airsample.html<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/content<span style="font-weight: bold; color: black;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;visible<span style="font-weight: bold; color: black;">&gt;</span></span></span>true<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/visible<span style="font-weight: bold; color: black;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;width<span style="font-weight: bold; color: black;">&gt;</span></span></span>400<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/width<span style="font-weight: bold; color: black;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;height<span style="font-weight: bold; color: black;">&gt;</span></span></span>350<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/height<span style="font-weight: bold; color: black;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/initialwindow<span style="font-weight: bold; color: black;">&gt;</span></span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/application<span style="font-weight: bold; color: black;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Download the <a href="http://www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_html_sample.zip" onclick="pageTracker._trackPageview('/outgoing/www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_html_sample.zip?referer=');">source code</a> for this application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2008/08/05/building-desktop-applications-with-html-and-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Build your first AIR application with Adobe Flex</title>
		<link>http://www.flexdaddy.info/2008/08/05/build-your-first-air-application-with-adobe-flex/</link>
		<comments>http://www.flexdaddy.info/2008/08/05/build-your-first-air-application-with-adobe-flex/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 00:53:15 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/?p=163</guid>
		<description><![CDATA[Adobe Flex really is the development tool and platform of choice for developing desktop experiences on Adobe AIR. This slide deck was presented as part of a series of topics covered at Adobe AIR Camps throughout Australia and New Zealand. Take a look, download it, and share it! If anyone is interested in the demo [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.adobe.com/go/flex" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/go/flex?referer=');">Adobe Flex</a> really is the development tool and platform of choice for developing desktop experiences on <a href="http://www.adobe.com/go/air" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/go/air?referer=');">Adobe AIR</a>. This slide deck was presented as part of a series of topics covered at Adobe AIR Camps throughout Australia and New Zealand. Take a look, download it, and share it! If anyone is interested in the demo files the Flex Builder project archive can be <a href="http://www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_flex_sample.zip" onclick="pageTracker._trackPageview('/outgoing/www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_flex_sample.zip?referer=');">downloaded here</a>.</p>
<p>The presentation introduces Flex Builder, the Flex framework and the AIR runtime by creating an application with a transparent window (thanks to <a href="http://blog.schematic.com.au" onclick="pageTracker._trackPageview('/outgoing/blog.schematic.com.au?referer=');">Matt Voerman</a> for providing the pretzel image!) that uses custom chrome and native window commands to move and close the application.<br />
<span id="more-163"></span></p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="500" height="400"> <param name="movie" value="https://share.acrobat.com/adc/flex/mpt.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent"/> <param name="allowFullScreen" value="true"/> <param name="flashvars"  value="ext=pdf&docId=f41a7811-bc34-4cb5-b50a-d1502aaaaddb"/> <embed src="https://share.acrobat.com/adc/flex/mpt.swf"  quality="high"  pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"  type="application/x-shockwave-flash" width="500" height="400" wmode="transparent" allowFullScreen="true" flashvars="ext=pdf&docId=f41a7811-bc34-4cb5-b50a-d1502aaaaddb"> </embed> </object></p>
<p>Take a look at the <a href="http://www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_flex_sample.zip" onclick="pageTracker._trackPageview('/outgoing/www.flexdaddy.info/wp-content/uploads/2008/08/aircamp_flex_sample.zip?referer=');">sample project</a>, and if you have any questions feel free to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2008/08/05/build-your-first-air-application-with-adobe-flex/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AIR Camp keynote slides</title>
		<link>http://www.flexdaddy.info/2008/08/04/air-camp-keynote-slides/</link>
		<comments>http://www.flexdaddy.info/2008/08/04/air-camp-keynote-slides/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 02:05:07 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/?p=158</guid>
		<description><![CDATA[Below are the keynote slides from the recent Adobe AIR Camps throughout Australia and New Zealand. Thanks to everyone who attended, and a special thanks to both Mark Blair and Matt Voerman who presented at the events as well, and to Mike Downey for presenting the keynote in Sydney while on his visit to WebDU [...]]]></description>
			<content:encoded><![CDATA[<p>Below are the keynote slides from the recent Adobe AIR Camps throughout Australia and New Zealand. Thanks to everyone who attended, and a special thanks to both <a href="http://www.blairsblog.com" onclick="pageTracker._trackPageview('/outgoing/www.blairsblog.com?referer=');">Mark Blair</a> and <a href="http://blog.schematic.com.au" onclick="pageTracker._trackPageview('/outgoing/blog.schematic.com.au?referer=');">Matt Voerman</a> who presented at the events as well, and to <a href="http://madowney.com/blog/" onclick="pageTracker._trackPageview('/outgoing/madowney.com/blog/?referer=');">Mike Downey</a> for presenting the keynote in Sydney while on his visit to <a href="http://www.webdu.com.au" onclick="pageTracker._trackPageview('/outgoing/www.webdu.com.au?referer=');">WebDU</a> 2008.</p>
<p>Over the next few days I&#8217;ll post slides and references to the rest of the content we covered at the AIR Camps.</p>
<ul>
<li><a href="http://www.flexdaddy.info/2008/08/05/build-your-first-air-application-with-adobe-flex/" onclick="pageTracker._trackPageview('/outgoing/www.flexdaddy.info/2008/08/05/build-your-first-air-application-with-adobe-flex/?referer=');">Building desktop applications with Adobe Flex</a></li>
<li><a href="http://www.flexdaddy.info/2008/08/05/building-desktop-applications-with-html-and-javascript/" onclick="pageTracker._trackPageview('/outgoing/www.flexdaddy.info/2008/08/05/building-desktop-applications-with-html-and-javascript/?referer=');">Building desktop applications with HTML/JavaScript</a></li>
<li>Deploying and updating your AIR applications</li>
<li>Data intensive AIR applications</li>
</ul>
<p>Be sure to take a look at the following links to some great applications. A real nice showcase of what&#8217;s possible!</p>
<p><a href="http://www.adobe.com/go/airshowcase" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/go/airshowcase?referer=');">Adobe AIR Showcase</a><br />
<a href="http://www.adobe.com/go/marketplace" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/go/marketplace?referer=');">Adobe AIR Marketplace</a></p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="500" height="400"> <param name="movie" value="https://share.acrobat.com/adc/flex/mpt.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent"/> <param name="allowFullScreen" value="true"/> <param name="flashvars"  value="ext=pdf&docId=83b3a288-44af-4e5c-bbec-e29c71a73245"/> <embed src="https://share.acrobat.com/adc/flex/mpt.swf"  quality="high"  pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"  type="application/x-shockwave-flash" width="500" height="400" wmode="transparent" allowFullScreen="true" flashvars="ext=pdf&docId=83b3a288-44af-4e5c-bbec-e29c71a73245"> </embed> </object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2008/08/04/air-camp-keynote-slides/feed/</wfw:commentRss>
		</item>
		<item>
		<title>webDU 2008 presentations now available</title>
		<link>http://www.flexdaddy.info/2008/07/16/webdu-2008-presentations-now-available/</link>
		<comments>http://www.flexdaddy.info/2008/07/16/webdu-2008-presentations-now-available/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 00:17:23 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[Flash]]></category>

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/?p=148</guid>
		<description><![CDATA[It&#8217;s take some time, but finally here it is! I&#8217;ve made my presentations available via Share on Acrobat.com for everyone to view or download for their own use.

Flex in Acrobat 9&#8230; It&#8217;s PDF meets Web 2.0
This session covered the latest integration between Flash and PDF given that with both Acrobat 9 and Reader 9 the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s take some time, but finally here it is! I&#8217;ve made my presentations available via Share on <a href="http://www.acrobat.com" onclick="pageTracker._trackPageview('/outgoing/www.acrobat.com?referer=');">Acrobat.com</a> for everyone to view or download for their own use.<br />
<span id="more-148"></span><br />
<strong>Flex in Acrobat 9&#8230; It&#8217;s PDF meets Web 2.0</strong><br />
This session covered the latest integration between Flash and PDF given that with both Acrobat 9 and Reader 9 the Flash Player runtime is now embedded within both environments. What does this mean?! Well you can now render Flash content directly within a PDF, but also add interactions between the PDF and the Flash objects themselves. I&#8217;ll post a separate follow up on this with some examples files. This really does open the door for some cool integration.</p>
<p><em>A special thanks to <a href="http://blogs.adobe.com/pdfdevjunkie/" onclick="pageTracker._trackPageview('/outgoing/blogs.adobe.com/pdfdevjunkie/?referer=');">Joel Geraci</a> for his help on this one!</em></p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="500" height="400"> <param name="movie" value="https://share.acrobat.com/adc/flex/mpt.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent"/> <param name="allowFullScreen" value="true"/> <param name="flashvars"  value="ext=pdf&docId=f5392561-450a-43a7-8ca2-693207e3fefe"/> <embed src="https://share.acrobat.com/adc/flex/mpt.swf"  quality="high"  pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"  type="application/x-shockwave-flash" width="500" height="400" wmode="transparent" allowFullScreen="true" flashvars="ext=pdf&docId=f5392561-450a-43a7-8ca2-693207e3fefe"> </embed> </object></p>
<p><strong>Build multi-user real time collaboration applications with Flex and AIR</strong><br />
This session touched on basic data integration all the way from XML with HTTPServices, Java and ColdFusion connectivity with RemoteObjects, moving on to collaboration and messaging with BlazeDS and LiveCycle Data Services. From building a chat application to enterprise data management this session should provide a basic introduction to collaborative apps. </p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="500" height="400"> <param name="movie" value="https://share.acrobat.com/adc/flex/mpt.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent"/> <param name="allowFullScreen" value="true"/> <param name="flashvars"  value="ext=pdf&docId=ba044324-8477-4ecd-9ae9-fb767cc6fdc8"/> <embed src="https://share.acrobat.com/adc/flex/mpt.swf"  quality="high"  pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"  type="application/x-shockwave-flash" width="500" height="400" wmode="transparent" allowFullScreen="true" flashvars="ext=pdf&docId=ba044324-8477-4ecd-9ae9-fb767cc6fdc8"> </embed> </object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2008/07/16/webdu-2008-presentations-now-available/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Begun, the code wars have</title>
		<link>http://www.flexdaddy.info/2008/06/03/begun-the-code-wars-have/</link>
		<comments>http://www.flexdaddy.info/2008/06/03/begun-the-code-wars-have/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 23:58:41 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/?p=147</guid>
		<description><![CDATA[The inaugural Australia / New Zealand Code War is set to begin at WebDU Day 0 on June 11 2008. I&#8217;ve been invited by Mark Mandel and Toby Tremayne to join their team the &#8220;KILLER CODING NINJA MONKEYS OF DOOM!&#8221; Be afraid, be very afraid, as you dare to face the team from Melbourne as [...]]]></description>
			<content:encoded><![CDATA[<p>The inaugural Australia / New Zealand Code War is set to begin at WebDU Day 0 on June 11 2008. I&#8217;ve been invited by <a href="http://www.compoundtheory.com/" onclick="pageTracker._trackPageview('/outgoing/www.compoundtheory.com/?referer=');">Mark Mandel</a> and <a href="http://www.tobytremayne.com/index.cfm" onclick="pageTracker._trackPageview('/outgoing/www.tobytremayne.com/index.cfm?referer=');">Toby Tremayne</a> to join their team the &#8220;KILLER CODING NINJA MONKEYS OF DOOM!&#8221; Be afraid, be very afraid, as you dare to face the team from Melbourne as we take on 7 other team in a series of sudden death head-to-head coding competitions developing solutions in either Flex, Flash, ColdFusion, Director or anything else we deem fit for purpose.</p>
<p>Don&#8217;t forget to <a href="http://www.webdu.com.au/go/registration" onclick="pageTracker._trackPageview('/outgoing/www.webdu.com.au/go/registration?referer=');">register for WebDU</a> and come and see my sessions on Flex/AIR, LiveCycle Data Services, BlazeDS, CoCoMo, and even using some of the new Flash widget features in Acrobat 9!</p>
<p>More information on the Code War can be found here <a href="http://www.webdu.com.au/go/session/adobe-user-group-code-war--and-early-registration" onclick="pageTracker._trackPageview('/outgoing/www.webdu.com.au/go/session/adobe-user-group-code-war--and-early-registration?referer=');">webdu:Adobe User Group Code War! </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2008/06/03/begun-the-code-wars-have/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe removes all restrictions on SWF and FLV specs</title>
		<link>http://www.flexdaddy.info/2008/05/01/adobe-removes-all-restrictions-on-swf-and-flv-specs/</link>
		<comments>http://www.flexdaddy.info/2008/05/01/adobe-removes-all-restrictions-on-swf-and-flv-specs/#comments</comments>
		<pubDate>Thu, 01 May 2008 04:16:38 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/2008/05/01/adobe-removes-all-restrictions-on-swf-and-flv-specs/</guid>
		<description><![CDATA[Adobe has announced the Open Screen Project http://www.openscreenproject.org/, an initiative dedicated to driving consistent experiences across all devices including mobile phones, personal computers, consumer devices and more 
Specifically, this work will include:

Removing restrictions on use of the SWF and FLV/F4V specifications
Publishing the device porting layer APIs for Adobe Flash Player
Publishing the Adobe FlashÂ® Castâ„¢ protocol [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe has announced the Open Screen Project <a href="http://www.openscreenproject.org/" onclick="pageTracker._trackPageview('/outgoing/www.openscreenproject.org/?referer=');">http://www.openscreenproject.org/</a>, an initiative dedicated to driving consistent experiences across all devices including mobile phones, personal computers, consumer devices and more </p>
<p>Specifically, this work will include:</p>
<ul>
<li>Removing restrictions on use of the SWF and FLV/F4V specifications</li>
<li>Publishing the device porting layer APIs for Adobe Flash Player</li>
<li>Publishing the Adobe FlashÂ® Castâ„¢ protocol and the AMF protocol for robust data services</li>
<li>Removing licensing fees â€“ making next major releases of Adobe Flash Player and Adobe AIR for devices free</li>
</ul>
<p>I wonder how long it will take to see various open source flash players?!</p>
<p>More info here <a href="http://www.adobe.com/openscreenproject/" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/openscreenproject/?referer=');">http://www.adobe.com/openscreenproject/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2008/05/01/adobe-removes-all-restrictions-on-swf-and-flv-specs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Raising money for charity with Adobe AIR!</title>
		<link>http://www.flexdaddy.info/2008/04/11/raising-money-for-charity-with-adobe-air/</link>
		<comments>http://www.flexdaddy.info/2008/04/11/raising-money-for-charity-with-adobe-air/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 13:42:25 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/2008/04/11/raising-money-for-charity-with-adobe-air/</guid>
		<description><![CDATA[Visit www.visionair.info
I hope you can help me out and also help a good cause.
We are having a competition to raise the most $$$ for the â€œFred Hollows Foundationâ€? which gives the gift of sight to those in the developing world who could not otherwise afford a simple cataract operation.
It only takes $25 to bring the [...]]]></description>
			<content:encoded><![CDATA[<p>Visit <a href="http://www.visionair.info" onclick="pageTracker._trackPageview('/outgoing/www.visionair.info?referer=');">www.visionair.info</a></p>
<p>I hope you can help me out and also help a good cause.</p>
<p>We are having a competition to raise the most $$$ for the â€œFred Hollows Foundationâ€? which gives the gift of sight to those in the developing world who could not otherwise afford a simple cataract operation.</p>
<p>It only takes <strong>$25 to bring the operation to one person</strong> or just $250 for ten people. </p>
<p>Please help this very worthy cause and help me and my team &#8220;<strong><a href="http://www.visionair.info" onclick="pageTracker._trackPageview('/outgoing/www.visionair.info?referer=');">visionAIR</a></strong>&#8221; win this competition.</p>
<p>To donate, please visit http://www.visionair.info between 4.30 pm Thursday 10 April and midday Friday 11 April. </p>
<p>This is tax deductible (depending on your location) and you will be issued with a receipt for tax purposes so please dig deep.</p>
<p>If you can encourage your friends, family and work mates to do the same. If you are able to encourage the company you work for to pledge/donate as well, that would be fantastic!</p>
<p>We&#8217;ve also written an <a href="http://www.visionair.info/download" onclick="pageTracker._trackPageview('/outgoing/www.visionair.info/download?referer=');">AIR application</a> as a widget so you can track the progress of the team! I&#8217;ll provide source code after the event.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2008/04/11/raising-money-for-charity-with-adobe-air/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Slides and demos from my presentations</title>
		<link>http://www.flexdaddy.info/2007/11/27/slides-and-demos-from-my-presentations/</link>
		<comments>http://www.flexdaddy.info/2007/11/27/slides-and-demos-from-my-presentations/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 05:51:28 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/2007/11/27/slides-and-demos-from-my-presentations/</guid>
		<description><![CDATA[Slowly but surely I&#8217;ll release a series of posts covering content from presentations I&#8217;ve given online and at Adobe events during the past few months.
Some of the content includes:

Using Flex with PHP
Branded applications with AIR
Showcasing local industry applications (customer presentations)
Using ColdFusion messaging gateways with Flex
Integrating MS Exchange with ColdFusion and Flex

We&#8217;ve also just finished a [...]]]></description>
			<content:encoded><![CDATA[<p>Slowly but surely I&#8217;ll release a series of posts covering content from presentations I&#8217;ve given online and at Adobe events during the past few months.</p>
<p>Some of the content includes:</p>
<ul>
<li>Using Flex with PHP</li>
<li>Branded applications with AIR</li>
<li>Showcasing local industry applications (customer presentations)</li>
<li>Using ColdFusion messaging gateways with Flex</li>
<li>Integrating MS Exchange with ColdFusion and Flex</li>
</ul>
<p>We&#8217;ve also just finished a 4 city tour around Australia with CFCAMP where I introduced Microsoft Exchange server integration and how to bring this into Flex and AIR.</p>
<p>Slides and demo files for everything over the past month and more will come shortly.</p>
<p>Enjoy!<br />
<strong><br />
EDIT (12/12/07) - I&#8217;m currently traveling in the US so there&#8217;s been some delays in tidying up the demos&#8230; but they&#8217;ll be ready in time for Christmas!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2007/11/27/slides-and-demos-from-my-presentations/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CFCAMP Australia is more than just ColdFusion</title>
		<link>http://www.flexdaddy.info/2007/11/11/cfcamp-australia-is-more-than-just-coldfusion/</link>
		<comments>http://www.flexdaddy.info/2007/11/11/cfcamp-australia-is-more-than-just-coldfusion/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 11:17:24 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

		<category><![CDATA[Creative Suite]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/2007/11/11/cfcamp-australia-is-more-than-just-coldfusion/</guid>
		<description><![CDATA[In the coming weeks get set for a FREE mini-conference for ColdFusion developers by ColdFusion developers. And better yet we&#8217;ll have renowned ColdFusion expert Ben Forta joining us along side long time CF&#8217;ers Mark Blair, Nick Watson (UK) and the many community experts here in Oz.

Here you&#8217;ll see more than just ColdFusion. How about powering [...]]]></description>
			<content:encoded><![CDATA[<p>In the coming weeks get set for a <a href="http://cfcamp.pbwiki.com/" onclick="pageTracker._trackPageview('/outgoing/cfcamp.pbwiki.com/?referer=');">FREE mini-conference</a> for ColdFusion developers by ColdFusion developers. And better yet we&#8217;ll have renowned ColdFusion expert <a href="http://www.forta.com/blog/index.cfm/2007/10/25/Australia-Here-We-Come" onclick="pageTracker._trackPageview('/outgoing/www.forta.com/blog/index.cfm/2007/10/25/Australia-Here-We-Come?referer=');">Ben Forta</a> joining us along side long time CF&#8217;ers <a href="http://www.blairsblog.com/2007/08/cfcamp-australi.html" onclick="pageTracker._trackPageview('/outgoing/www.blairsblog.com/2007/08/cfcamp-australi.html?referer=');">Mark Blair</a>, <a href="http://weblogs.macromedia.com/nwatson/" onclick="pageTracker._trackPageview('/outgoing/weblogs.macromedia.com/nwatson/?referer=');">Nick Watson</a> (UK) and the many community experts here in Oz.</p>
<p><a href="http://cfcamp.pbwiki.com" border="0" onclick="pageTracker._trackPageview('/outgoing/cfcamp.pbwiki.com?referer=');"><img src="http://cfcamp.pbwiki.org/f/cf-origami-banner.gif" alt="CFCAMP Australia" width="425" /></a></p>
<p>Here you&#8217;ll see more than just <a href="http://www.adobe.com/go/coldfusion" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/go/coldfusion?referer=');">ColdFusion</a>. How about powering your <a href="http://www.adobe.com/go/flex" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com/go/flex?referer=');">Flex</a> applications and targeting desktop applications with ColdFusion? I think it&#8217;s sounds like a winning combination! And that&#8217;s exactly what i&#8217;ll be presenting on.</p>
<p>Interested in learning more? You&#8217;ll want to be there - <a href="http://cfcamp.eventbrite.com/" onclick="pageTracker._trackPageview('/outgoing/cfcamp.eventbrite.com/?referer=');">REGISTER NOW!</a></p>
<p>Event dates:</p>
<ul>
<li>November 20th: <a href="http://cfcamp.pbwiki.com/Agenda:+Sydney" onclick="pageTracker._trackPageview('/outgoing/cfcamp.pbwiki.com/Agenda_+Sydney?referer=');">Sydney</a></li>
<li>November 21st: <a href="http://cfcamp.pbwiki.com/Agenda:+Brisbane" onclick="pageTracker._trackPageview('/outgoing/cfcamp.pbwiki.com/Agenda_+Brisbane?referer=');">Brisbane</a></li>
<li>November 22nd: <a href="http://cfcamp.pbwiki.com/Agenda:+Melbourne" onclick="pageTracker._trackPageview('/outgoing/cfcamp.pbwiki.com/Agenda_+Melbourne?referer=');">Melbourne</a></li>
<li>November 27th: <a href="http://cfcamp.pbwiki.com/Agenda:+Perth" onclick="pageTracker._trackPageview('/outgoing/cfcamp.pbwiki.com/Agenda_+Perth?referer=');">Perth</a></li>
</ul>
<p>Check out the <a href="http://cfcamp.pbwiki.com" onclick="pageTracker._trackPageview('/outgoing/cfcamp.pbwiki.com?referer=');">wiki</a>, vote for the community driven sessions, and come along and network with other developers interested in the latest for the Web, RIAs and desktop apps with AIR.</p>
<p>Hope to see you there (whether that&#8217;s in Sydney, Brisbane, Melbourne or Perth)!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2007/11/11/cfcamp-australia-is-more-than-just-coldfusion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Refresh Australia, learn about MAX 2007</title>
		<link>http://www.flexdaddy.info/2007/10/11/adobe-refresh-australia-learn-about-max-2007/</link>
		<comments>http://www.flexdaddy.info/2007/10/11/adobe-refresh-australia-learn-about-max-2007/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 12:24:35 +0000</pubDate>
		<dc:creator>Andrew Spaulding</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.flexdaddy.info/2007/10/11/adobe-refresh-australia-learn-about-max-2007/</guid>
		<description><![CDATA[
Adobe Australia are holding a &#8220;Refresh&#8221; event for the local developer communities. This is your chance to hear first hand the latest news and announcements surrounding Adobe&#8217;s developer technologies! I promise you will not be disappointed! So come and spend an afternoon with your local Adobe crew including myself, Matt Voerman, Mark Blair, Mark Szulc [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://events.adobe.co.uk/events/cgi/event.cgi?country=pa&#038;eventid=5999" onclick="pageTracker._trackPageview('/outgoing/events.adobe.co.uk/events/cgi/event.cgi?country=pa_038_eventid=5999&referer=');"><img src="http://www.flexdaddy.info/images/adobe_refresh.png" alt="Adobe Refresh 2007" width="420" /></a></p>
<p><a href="http://www.adobe.com.au" onclick="pageTracker._trackPageview('/outgoing/www.adobe.com.au?referer=');">Adobe Australia</a> are holding a &#8220;<a href="http://events.adobe.co.uk/events/cgi/event.cgi?country=pa&#038;eventid=5999" onclick="pageTracker._trackPageview('/outgoing/events.adobe.co.uk/events/cgi/event.cgi?country=pa_038_eventid=5999&referer=');">Refresh</a>&#8221; event for the local developer communities. This is your chance to hear first hand the latest news and announcements surrounding Adobe&#8217;s developer technologies! I promise you will not be disappointed! So come and spend an afternoon with your local Adobe crew including myself, <a href="http://blog.schematic.com.au/" onclick="pageTracker._trackPageview('/outgoing/blog.schematic.com.au/?referer=');">Matt Voerman</a>, <a href="http://www.blairsblog.com/" onclick="pageTracker._trackPageview('/outgoing/www.blairsblog.com/?referer=');">Mark Blair</a>, <a href="http://www.markszulc.com/" onclick="pageTracker._trackPageview('/outgoing/www.markszulc.com/?referer=');">Mark Szulc</a> and many others.</p>
<p><a href="http://events.adobe.co.uk/events/cgi/event.cgi?country=pa&#038;eventid=5999" onclick="pageTracker._trackPageview('/outgoing/events.adobe.co.uk/events/cgi/event.cgi?country=pa_038_eventid=5999&referer=');">Click here to register.</a></p>
<p><strong>Details:</strong></p>
<p><em>Join us for an opportunity to connect with the local developer community, whilst refreshing your knowledge on the latest from Adobe at Adobe Refresh 2007.</p>
<p>Over the course of an afternoon, you will hear from the local Adobe team as they present on whatâ€™s new and whatâ€™s happening in AIR, Flash Professional, Flex, Dreamweaver, Fireworks and ColdFusion.</p>
<p>Thereâ€™ll be summaries from the Keynote Presentations at Adobe Max 2007, as well as Community Expert Tables and plenty of time to socialise.</em></p>
<p><strong>When:</strong></p>
<p><strong>Tue 30 Oct 07</strong><br />
Sydney Convention &#038; Exhibition Centre, Darling Harbour<br />
13:30 - 17:00</p>
<p><strong>Wed 31 Oct 07</strong><br />
Telstra Dome, Melbourne<br />
13:30 - 17:00</p>
<p>Hope to see you there! <img src='http://www.flexdaddy.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexdaddy.info/2007/10/11/adobe-refresh-australia-learn-about-max-2007/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
