<?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:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Flex, AIR, Java &#38; other stuff...</title>
	<atom:link href="http://gerrymclarnon.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gerrymclarnon.wordpress.com</link>
	<description>by Gerry McLarnon</description>
	<lastBuildDate>Wed, 26 May 2010 20:26:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gerrymclarnon.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Flex, AIR, Java &#38; other stuff...</title>
		<link>http://gerrymclarnon.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gerrymclarnon.wordpress.com/osd.xml" title="Flex, AIR, Java &#38; other stuff..." />
	<atom:link rel='hub' href='http://gerrymclarnon.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Flex &amp; Ant top tips</title>
		<link>http://gerrymclarnon.wordpress.com/2010/05/26/flex-ant-top-tips/</link>
		<comments>http://gerrymclarnon.wordpress.com/2010/05/26/flex-ant-top-tips/#comments</comments>
		<pubDate>Wed, 26 May 2010 13:38:00 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[Ant]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=28</guid>
		<description><![CDATA[After a couple of days creating an ant build script for a Flex app previously only ever built from within Eclipse I thought I&#8217;d share my pain. Asset references To avoid compilation errors when the mxmlc task can&#8217;t find your assets refer to images, fonts, etc with an absolute path (relative to the flex src [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=28&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After a couple of days creating an ant build script for a Flex app previously only ever built from within Eclipse I thought I&#8217;d share my pain.</p>
<h4>Asset references</h4>
<p>To avoid compilation errors when the mxmlc task can&#8217;t find your assets refer to images, fonts, etc with an absolute path (relative to the flex src directory), e.g&#8230;</p>
<pre>&lt;mx:Image
source="@Embed(source='/../assets/an_icon_with_a_sensible_absolute_path.png')"/&gt;
</pre>
<p>This also has the happy side effect of making the paths of these assets more sensible than the alternative crazy relative path approach, e.g. the above line replaced a line similar to the following&#8230;</p>
<pre>&lt;mx:Image
source="@Embed(source='../../../../../../../assets/an_icon_with_a_crazy_relative_path.png')"/&gt;
</pre>
<h4>Eclipse environment variables</h4>
<p>Increase  the Java Heap space if you get an OutOfMemory exception during the mxmlc  task when running the ant build from within Eclipse.<br />
Select the JRE used in your Eclipse project and add this to the command  line&#8230; -Xmx512m<br />
See <a href="http://www.themorphicgroup.com/blog/2009/07/10/compiling-using-ant-in-flex-builder-error-java-heap-space/" target="_self"> http://www.themorphicgroup.com/blog/2009/07/10/compiling-using-ant-in-flex-builder-error-java-heap-space/</a> for more details.</p>
<h4>Command line environment variables</h4>
<p>export ANT_OPTS=-Xmx512m<br />
export ANT_HOME=&lt;ant 1.7 installation dir&gt;<br />
export PATH=$ANT_HOME/bin:$PATH<br />
export JAVA_HOME=&lt;jdk 1.6 installation dir&gt;<br />
export JAVACMD=${JAVA_HOME}/bin/java</p>
<h4>Flex Builder Pro license</h4>
<p>If using Data Visualization Components (charts, etc) then to avoid the trial watermark provide the mxmlc task with the Flex Builder Pro license number, e.g. ..</p>
<pre>&lt;license product="flexbuilder3" serial-number="000000000000000000000000"/&gt;</pre>
<p>Note the lowercase product name and the format of the serial-number.</p>
<p>If running the ant build on a machine with Flex Builder Pro installed be aware that the Flex Builder Pro license can be picked up from a variety of locations, see <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=configuring_environment_2.html#212596" target="_self">http://livedocs.adobe.com/flex/3/html/help.html?content=configuring_environment_2.html#212596</a> for details.</p>
<h4>Embed fonts with url not local</h4>
<p>To increase the portability of your Flex app embed Fonts using urls (preferably part of your version controlled Flex assets), e.g&#8230;</p>
<pre>@font-face {
 src: url("/../assets/fonts/FancyFont.ttf");
 fontFamily: myFancyFont;
}</pre>
<p>See <a href="http://gerrymclarnon.wordpress.com/2010/05/25/flex-on-a-mac-and-gcgetglyphdevicemetrics" target="_self">http://gerrymclarnon.wordpress.com/2010/05/25/flex-on-a-mac-and-gcgetglyphdevicemetrics</a> for more details.</p>
<h4>Roll your own index.html</h4>
<p>The html-wrapper task doesn&#8217;t handle a fancy dan index.template.html very well, so you can roll your own task, e.g&#8230;</p>
<pre>&lt;target name="fancy.dan.html-wrapper"&gt;
  &lt;copy file="${basedir}/html-template/AC_OETags.js"
        tofile="${STAGING_LOCATION}/AC_OETags.js" /&gt;
  &lt;copy file="${basedir}/html-template/playerProductInstall.swf"
        tofile="${STAGING_LOCATION}/playerProductInstall.swf" /&gt;
  &lt;copy file="${basedir}/html-template/swfMouseWheel.js"
        tofile="${STAGING_LOCATION}/swfMouseWheel.js" /&gt;
  &lt;copy file="${basedir}/html-template/index.template.html"
        tofile="${STAGING_LOCATION}/index.html" /&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${swf}" value="${APP_NAME}"/&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${application}" value="${APP_NAME}"/&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${width}" value="100%"/&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${height}" value="100%"/&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${bgcolor}" value="#000000"/&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${version_major}" value="9"/&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${version_minor}" value="0"/&gt;
    &lt;replace file="${STAGING_LOCATION}/index.html"
          token="$${version_revision}" value="28"/&gt;
&lt;/target&gt;</pre>
<h4>Don&#8217;t rely on Eclipse</h4>
<p>Just to state the obvious it&#8217;s best not to rely on any Eclipse generated class files, relocated properties files, etc. If you do rely on Eclipse then this will only lead to confusion when someone, who hasn&#8217;t first of all built the app from within Eclipse, runs your ant file from the command line and gets different results to you!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=28&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2010/05/26/flex-ant-top-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex on a Mac &amp; GCGetGlyphDeviceMetrics</title>
		<link>http://gerrymclarnon.wordpress.com/2010/05/25/flex-on-a-mac-and-gcgetglyphdevicemetrics/</link>
		<comments>http://gerrymclarnon.wordpress.com/2010/05/25/flex-on-a-mac-and-gcgetglyphdevicemetrics/#comments</comments>
		<pubDate>Tue, 25 May 2010 11:52:32 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=22</guid>
		<description><![CDATA[GCGetGlyphDeviceMetrics Flex Mac<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=22&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For a while I&#8217;d been wondering what the <em>GCGetGlyphDeviceMetrics failed</em> error  meant when I was compiling my Flex app using ant on a Mac. Well it seems to be the way I was using embedded fonts!</p>
<p>The following caused this seemingly benign error message&#8230;</p>
<pre>@font-face {
 src: local("Verdana");
 fontFamily: myVerdanaFont;
}</pre>
<p>But the following,  more portable method,  won&#8217;t&#8230;</p>
<pre>@font-face {
 src: url("/../assets/fonts/Verdana.ttf");
 fontFamily: myVerdanaFont;
}</pre>
<p>I hope that helps someone.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=22&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2010/05/25/flex-on-a-mac-and-gcgetglyphdevicemetrics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
		<item>
		<title>Interesting HTTPService Feature!</title>
		<link>http://gerrymclarnon.wordpress.com/2009/07/07/crazy-httpservice-feature/</link>
		<comments>http://gerrymclarnon.wordpress.com/2009/07/07/crazy-httpservice-feature/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 20:41:29 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=11</guid>
		<description><![CDATA[Several hours later I have finally discovered why my RESTful HTTPService call via BlazeDS was never returning a response*. Well it turns out that it actually was&#8230; Thanks to the Firebug plug-in for Firefox I could see that the HTTP GET request had nonsense  e4x style xml attributes in its &#60;amfx&#62; content. I discovered that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=11&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Several hours later I have finally discovered why my RESTful HTTPService call via BlazeDS was never returning a response*. Well it turns out that it actually was&#8230;</p>
<p>Thanks to the Firebug plug-in for Firefox I could see that the HTTP GET request had nonsense  e4x style xml attributes in its &lt;amfx&gt; content. I discovered that these xml attributes were actually the name-value pairs of the request property from the previous service call. A response, of sorts, was being returned but (unfortunately for me) not even a sniff of a FaultEvent was being generated even though the &lt;amfx&gt; response&#8217;s body was null! It turns out that the HTTPService send method helpfully(?) sets the parameters of the service call to the name-value pairs generated from the request property if the parameters object of the send method call is null! No really here it is&#8230;</p>
<pre style="text-align:left;">public function send(parameters:Object = null):AsyncToken
{
 if (parameters == null)
   parameters = request;
...
}</pre>
<p>I now reset my request object before any GET calls are issued&#8230;</p>
<pre>this.request = {};</pre>
<p>I hope this helps someone to avoid wasting as much time as I did on something so trivial.</p>
<p>*I would like to publicly apologise to the Java Web Service that I was blaming for the non-appearance of a response from the HTTPService call.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=11&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2009/07/07/crazy-httpservice-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft recommends Flex!</title>
		<link>http://gerrymclarnon.wordpress.com/2008/05/18/microsoft-recommend-flex/</link>
		<comments>http://gerrymclarnon.wordpress.com/2008/05/18/microsoft-recommend-flex/#comments</comments>
		<pubDate>Sun, 18 May 2008 19:50:18 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=9</guid>
		<description><![CDATA[I was speaking with a potential client last week about a project that requires a Rich Internet Application front end backed by Microsoft SharePoint 2007 services. Surprisingly the client had been advised by their Microsoft consultant that the two most suitable RIA technologies to choose from are AJAX and Adobe Flex! The suggestion that a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=9&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was speaking with a potential client last week about a project that requires a Rich Internet Application front end backed by Microsoft SharePoint 2007 services. Surprisingly the client had been advised by their Microsoft consultant that the two most suitable RIA technologies to choose from are AJAX and Adobe Flex! The suggestion that a Microsoft consultancy would recommend Flex with no mention of Silverlight seems ludicrous but as we all know sometimes fact is stranger than fiction!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gerrymclarnon.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gerrymclarnon.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=9&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2008/05/18/microsoft-recommend-flex/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex &amp; Volkswagen</title>
		<link>http://gerrymclarnon.wordpress.com/2008/04/04/flex-volkswagen/</link>
		<comments>http://gerrymclarnon.wordpress.com/2008/04/04/flex-volkswagen/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 09:56:34 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=8</guid>
		<description><![CDATA[The impressive new Volkswagen site is reported as being promoted with some pride by Volkswagen. You can see the ad here where it announces that &#8216;http://www.volkswagen.co.uk/, built the same way as we build our cars&#8217;. There have been some negative comments regarding the performance from some people, but who buys a car from a website [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=8&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The impressive new <a href="http://www.volkswagen.co.uk" target="_blank">Volkswagen site</a> is <a href="http://uk.sys-con.com/read/519701.htm">reported</a> as being promoted with some pride by Volkswagen. You can see the ad <a href="//www.virginmedia.com/motoring/" target="_blank">here</a> where it announces that &#8216;http://www.volkswagen.co.uk/, built the same way as we build our cars&#8217;.</p>
<p>There have been some negative comments regarding the performance from <a href="http://flexblog.faratasystems.com/?p=298" target="_blank">some people</a>, but who buys a car from a website on impulse? It works well for me but I do agree that Flex may not be the best idea for a website, a rich internet  application yes but a complete website?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gerrymclarnon.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gerrymclarnon.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=8&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2008/04/04/flex-volkswagen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
		<item>
		<title>Can you tell your ACE from your ACP?</title>
		<link>http://gerrymclarnon.wordpress.com/2008/03/25/can-you-tell-your-ace-from-your-acp/</link>
		<comments>http://gerrymclarnon.wordpress.com/2008/03/25/can-you-tell-your-ace-from-your-acp/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 21:41:04 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[Certification]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=6</guid>
		<description><![CDATA[Hurrah! I passed the Adobe Flex certification exam and can now call myself an Adobe Certified Professional Adobe Flex Developer (AFAIK that is the full title). Now its a small point but during the 5 days &#38; nights (well one or two) studying for the exam I was under the impression that if successful I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=6&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hurrah! I passed the Adobe Flex certification exam and can now call myself an Adobe Certified Professional Adobe Flex Developer (AFAIK that is the full title). Now its a small point but during the 5 days &amp; nights (well one or two) studying for the exam I was under the impression that if successful I would be an Adobe Certified Expert (ACE). Imagine my surprise when  on downloading the logo, this one&#8230;</p>
<p><a href="http://gerrymclarnon.files.wordpress.com/2008/03/acp_flex_developer.gif" title="ACP Logo"><img src="http://gerrymclarnon.files.wordpress.com/2008/03/acp_flex_developer.gif?w=450" alt="ACP Logo" /></a></p>
<p>I discover that I&#8217;m not an expert at all but a professional, an Adobe Certified Professional (ACP)! I can&#8217;t help feeling a slight tinge of disappoint. However, that and the scary Glasgow close (communal entrance) that the test centre was located up were the only downsides to taking the exam.</p>
<p>The exam was, as has been commented on elsewhere, quite wide ranging.  Taking in J2EE &amp; OO concepts, Design Patterns, UML and other stuff that you might not expect in a Flex Developer&#8217;s exam, although its all the better for it. Apart from refreshing my memory on a few things the most I got out of  it was working with LCDS, the J2EE server app previously known as FDS. I had used Red5 in the past and intend to use BlazeDS soon so rather than just reading the docs and watching the Lynda.com videos, another top tip from the blogosphere, I thought I&#8217;d write a few example apps. I would definitely recommend this approach for this section of the exam. Thanks to <a href="http://technoracle.blogspot.com/2007/10/how-to-install-and-run-adobe-livecycle.html" target="_blank">Duane&#8217;s World</a> for tips on how to install LCDS in Mac OS X.</p>
<p>Overall the biggest thanks goes to <a href="http://office.realeyesmedia.com/blogs/jun/?p=22" target="_blank">Jun</a>  who has a very handy detailed <a href="http://office.realeyesmedia.com/blogs/jun/samples/certification/Flex20Blueprint.htm">Flex Exam Specification</a> on offer. This is a very good summary of the ins and outs of the exam. Something that is strangely missing, at least I couldn&#8217;t find it, from the official Adobe blurb.</p>
<p>As seems traditional in this type of blog entry I should tell you what my score was &#8230; well if I hadn&#8217;t done OK then I probably wouldn&#8217;t be telling you but 85% isn&#8217;t too bad is it?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gerrymclarnon.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gerrymclarnon.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=6&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2008/03/25/can-you-tell-your-ace-from-your-acp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>

		<media:content url="http://gerrymclarnon.files.wordpress.com/2008/03/acp_flex_developer.gif" medium="image">
			<media:title type="html">ACP Logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Leopard ate my wireless&#8230;</title>
		<link>http://gerrymclarnon.wordpress.com/2008/03/03/leopard-ate-my-wireless/</link>
		<comments>http://gerrymclarnon.wordpress.com/2008/03/03/leopard-ate-my-wireless/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 13:23:46 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=5</guid>
		<description><![CDATA[After upgrading to Mac OS X 10.5 (Leopard) my wireless connections started slowly dying on a regular basis. The fix turned out to be an upgrade to Mac OS X 10.5.2. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=5&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After upgrading to Mac OS X 10.5 (Leopard) my wireless connections started slowly dying on a regular basis. The fix turned out to be an upgrade to Mac OS X 10.5.2. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gerrymclarnon.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gerrymclarnon.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=5&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2008/03/03/leopard-ate-my-wireless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
		<item>
		<title>It must be true&#8230;</title>
		<link>http://gerrymclarnon.wordpress.com/2008/02/26/it-must-be-true/</link>
		<comments>http://gerrymclarnon.wordpress.com/2008/02/26/it-must-be-true/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 13:02:32 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=4</guid>
		<description><![CDATA[As reported on the BBC techology website AIR is on the rise in 2008&#8230; http://news.bbc.co.uk/1/hi/technology/7147804.stm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=4&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As reported on the BBC techology website AIR is on the rise in 2008&#8230; <a href="http://news.bbc.co.uk/1/hi/technology/7147804.stm" title="Techologies on the rise in 2008">http://news.bbc.co.uk/1/hi/technology/7147804.stm</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gerrymclarnon.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gerrymclarnon.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=4&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2008/02/26/it-must-be-true/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
		<item>
		<title>My first useful blog?</title>
		<link>http://gerrymclarnon.wordpress.com/2008/02/26/my-first-useful-blog/</link>
		<comments>http://gerrymclarnon.wordpress.com/2008/02/26/my-first-useful-blog/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 00:01:39 +0000</pubDate>
		<dc:creator>gerrymclarnon</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gerrymclarnon.wordpress.com/?p=3</guid>
		<description><![CDATA[This is my second attempt at a blog. My first blog was a result of being encouraged to start one shortly after joining Adobe Consulting. In my first and only post I made rash statements about my blogging intentions. Today that single entry blog is still there for all to see. I like to think [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=3&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my second attempt at a blog. My first blog was a result of being encouraged to start one shortly after joining Adobe Consulting. In my first and only post I made rash statements about my blogging intentions. Today that single entry blog is still there for all to see. I like to think that it was my Scottish self-consciousness that stopped me from adding to it rather than a lack of (worthwhile) things to say.  You might disagree but this time I think I do have something to say on Flex, AIR, Java &amp; other stuff. Having been helped by countless  other blogs I thought I would offer my experiences of building RIAs in the hope that it will add something to someone&#8217;s understanding somewhere out there.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gerrymclarnon.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gerrymclarnon.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gerrymclarnon.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gerrymclarnon.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gerrymclarnon.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gerrymclarnon.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gerrymclarnon.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gerrymclarnon.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gerrymclarnon.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gerrymclarnon.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gerrymclarnon.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gerrymclarnon.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gerrymclarnon.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gerrymclarnon.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gerrymclarnon.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gerrymclarnon.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gerrymclarnon.wordpress.com&amp;blog=2935143&amp;post=3&amp;subd=gerrymclarnon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gerrymclarnon.wordpress.com/2008/02/26/my-first-useful-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9aebb1eb01cedbfaaf320a0532ff4e82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerrymclarnon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
