<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>awake ? web();</title>
	<link>http://www.shaneauckland.com</link>
	<description></description>
	<pubDate>Fri, 30 Oct 2009 11:23:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Loader vs URLLoader</title>
		<link>http://www.shaneauckland.com/?p=16</link>
		<comments>http://www.shaneauckland.com/?p=16#comments</comments>
		<pubDate>Fri, 30 Oct 2009 11:15:16 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Flash and Actionscript]]></category>

		<category><![CDATA[AS3 Loader URLLoader]]></category>

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=16</guid>
		<description><![CDATA[Today I tried to load an image, and I failed.  I failed because I was trying to use the URLLoader class.  As I discovered this won&#8217;t work, because although it will perform a load and happily dispatch a complete event, it doesn&#8217;t have the facility to display anything.
What you need for displaying is the Loader [...]]]></description>
			<content:encoded><![CDATA[<p>Today I tried to load an image, and I failed.  I failed because I was trying to use the URLLoader class.  As I discovered this won&#8217;t work, because although it will perform a load and happily dispatch a complete event, it doesn&#8217;t have the facility to display anything.</p>
<p>What you need for displaying is the Loader class, or more specifically it&#8217;s content property, which is a DisplayObject.  Like so:</p>
<p><code><br />
//create new Loader object<br />
var myLoader = new Loader();<br />
//set up a listener<br />
myLoader.contentLoaderInfo.addEventListener(<br />
Event.COMPLETE,loadComplete);<br />
//trigger the load<br />
myLoader.load(new URLRequest("my_image.gif"));<br />
//<br />
function loadComplete(evt:Event):void {<br />
//clean up the listener<br />
evt.target.contentLoaderInfo.removeEventListener(<br />
Event.COMPLETE,loadComplete);<br />
//add the image to the display<br />
addChild(evt.target.content);<br />
}<br />
</code></p>
<p>So basically the difference is this: Loader for display objects, URLLoader for data connections.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=16</wfw:commentRss>
		</item>
		<item>
		<title>Auto-Save for Flash</title>
		<link>http://www.shaneauckland.com/?p=15</link>
		<comments>http://www.shaneauckland.com/?p=15#comments</comments>
		<pubDate>Wed, 30 Sep 2009 16:19:58 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Flash and Actionscript]]></category>

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=15</guid>
		<description><![CDATA[My CS4 just crashed.  Again.  Although I try to be good about saving, sometimes I get focused on what I&#8217;m doing, and it&#8217;s always at these times when Flash decides that clicking that last frame was in some way offensive.  Much swearing ensues and a short break is taken, then I begin that complex string [...]]]></description>
			<content:encoded><![CDATA[<p>My CS4 just crashed.  Again.  Although I try to be good about saving, sometimes I get focused on what I&#8217;m doing, and it&#8217;s always at these times when Flash decides that clicking that last frame was in some way offensive.  Much swearing ensues and a short break is taken, then I begin that complex string of animations again.</p>
<p>This time though I thought to employ google, and turned up a neat little extension on flashguru: <a href="http://www.flashguru.co.uk/blog/auto-save" title="Flashguru - Auto-Save Flash" target="_blank">Flash Auto-Save</a>.</p>
<p>Pay no attention to the comment about it not working on CS4, I&#8217;ve installed it and it works fine.  The only thing to be aware of is that it needs to be visible at all times, and hiding it in a panel group will stop it working.</p>
<p>I hope this saves more people a bit of fury <img src='http://www.shaneauckland.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=15</wfw:commentRss>
		</item>
		<item>
		<title>Find SWF dimensions with PHP</title>
		<link>http://www.shaneauckland.com/?p=13</link>
		<comments>http://www.shaneauckland.com/?p=13#comments</comments>
		<pubDate>Tue, 14 Jul 2009 10:35:11 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Flash and Actionscript]]></category>

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=13</guid>
		<description><![CDATA[Wow, so it&#8217;s been a long time since I posted here.  It&#8217;s quite alarming to think how much has happened since March 2008!  Hopefully I&#8217;ll start posting here more often again, more as a written record of things I&#8217;ve found useful that will benefit me.  With that in mind,  here&#8217;s something that came up today.  [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, so it&#8217;s been a long time since I posted here.  It&#8217;s quite alarming to think how much has happened since March 2008!  Hopefully I&#8217;ll start posting here more often again, more as a written record of things I&#8217;ve found useful that will benefit me.  With that in mind,  here&#8217;s something that came up today.  It&#8217;s a very simple thing, but I&#8217;m going to find it very useful in developing the banner section of Biff&#8217;s portfolio site.</p>
<p>It is possible to find the dimensions of a SWF using PHP&#8217;s  getimagesize() function.  Here&#8217;s an example:</p>
<p><code><br />
print_r(getimagesize('example.swf'));</code></p>
<p>// Outputs:<br />
//<br />
// Array ( [0] =&gt; 400 [1] =&gt; 300 [2] =&gt; 13 [3] =&gt; width=&#8221;400&#8243; height=&#8221;300&#8243; [mime] =&gt; application/x-shockwave-flash )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=13</wfw:commentRss>
		</item>
		<item>
		<title>Back to basics</title>
		<link>http://www.shaneauckland.com/?p=12</link>
		<comments>http://www.shaneauckland.com/?p=12#comments</comments>
		<pubDate>Sun, 16 Mar 2008 20:45:27 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Technology]]></category>

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

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=12</guid>
		<description><![CDATA[Have you ever considering how bewildering the world would seem to a baby, with so much unexplained?  That&#8217;s how I feel right now.
Having finally got round to trying something, anything, on my Red Hat box, I decided that I should install Python.  As if learning one new thing isn&#8217;t hard enough, I wanted [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever considering how bewildering the world would seem to a baby, with so much unexplained?  That&#8217;s how I feel right now.</p>
<p>Having finally got round to trying something, anything, on my Red Hat box, I decided that I should install Python.  As if learning one new thing isn&#8217;t hard enough, I wanted to learn by doing something else I had no idea how to do.   Great idea.  I had forgotten that there was once a day that I didn&#8217;t know DOS commands until the LINUX terminal was in front of me and I had to navigate to a folder, now I know how my parents feel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=12</wfw:commentRss>
		</item>
		<item>
		<title>Free 5GB web space</title>
		<link>http://www.shaneauckland.com/?p=11</link>
		<comments>http://www.shaneauckland.com/?p=11#comments</comments>
		<pubDate>Thu, 13 Mar 2008 22:37:08 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Sites]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=11</guid>
		<description><![CDATA[Continuing their &#8216;if you can&#8217;t beat them, shamelessly copy them&#8217; policy, Microsoft have released SkyDrive, a free to use 5GB web based storage facility.  It&#8217;s actually not bad, which won&#8217;t surprise you if you get on as well with the newer version of Hotmail as I do.
So what does it do?  Well, it [...]]]></description>
			<content:encoded><![CDATA[<p>Continuing their &#8216;if you can&#8217;t beat them, shamelessly copy them&#8217; policy, Microsoft have released <a href="http://skydrive.live.com" target="_blank">SkyDrive</a>, a free to use 5GB web based storage facility.  It&#8217;s actually not bad, which won&#8217;t surprise you if you get on as well with the newer version of Hotmail as I do.</p>
<p>So what does it do?  Well, it allows you to upload data in 50MB chunks (so sharing larger files is awkward).  Your data can be stored in a variety of folder types: personal, shared and public.  I&#8217;m sure those names are fairly self explanatory, but I&#8217;m going to drone on about them anyway.</p>
<p> <a href="http://www.shaneauckland.com/?p=11#more-11" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>FireShot Firefox Extension</title>
		<link>http://www.shaneauckland.com/?p=10</link>
		<comments>http://www.shaneauckland.com/?p=10#comments</comments>
		<pubDate>Wed, 12 Mar 2008 21:05:41 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Browsers]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=10</guid>
		<description><![CDATA[Looking through Firefox extensions always causes me to install something, and often not what I was originally looking for.  That was the case with FireShot, a nifty little tool that captures your current browser viewport, or the entire page, and lets you perform various actions with the resulting image.
You can just save your grab [...]]]></description>
			<content:encoded><![CDATA[<p>Looking through Firefox extensions always causes me to install something, and often not what I was originally looking for.  That was the case with <a href="https://addons.mozilla.org/en-US/firefox/addon/5648" title="FireShot" target="_blank">FireShot</a>, a nifty little tool that captures your current browser viewport, or the entire page, and lets you perform various actions with the resulting image.</p>
<p>You can just save your grab as a jpg, png, bmp or compressed file, but before you do that you might want to edit it, adding text and graphics.   Alternatively you can copy it, upload it, mail it or open it in a pre-selected editor of your choice.</p>
<p>The built in editor seems pretty well featured at a glance, the only obvious omission being an option to resize.  I can see this getting a lot of use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>It&#8217;s late&#8230;</title>
		<link>http://www.shaneauckland.com/?p=9</link>
		<comments>http://www.shaneauckland.com/?p=9#comments</comments>
		<pubDate>Wed, 12 Mar 2008 01:09:01 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=9</guid>
		<description><![CDATA[…but victory is mine.  The ugly top bar is no more, and my portfolio is successfully integrated into the pages list on the right.
I sleep now, the rest of the design can wait.
]]></description>
			<content:encoded><![CDATA[<p class="entry">…but victory is mine.  The ugly top bar is no more, and my portfolio is successfully integrated into the pages list on the right.</p>
<p>I sleep now, the rest of the design can wait.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;ve been published!</title>
		<link>http://www.shaneauckland.com/?p=6</link>
		<comments>http://www.shaneauckland.com/?p=6#comments</comments>
		<pubDate>Tue, 11 Mar 2008 17:55:48 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Flash and Actionscript]]></category>

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=6</guid>
		<description><![CDATA[Well, kinda.
Last weekend I wrote a tutorial on an AS2 sliding tile puzzle game I wrote a little while ago.  It was my first attempt at writing coherent instructions for others to follow, so I was very pleased when it was accepted by the wonderful folks at &#60;/dream.in.code&#62;.  Thanks to Chris et al! [...]]]></description>
			<content:encoded><![CDATA[<p>Well, kinda.</p>
<p>Last weekend I wrote a tutorial on an AS2 sliding tile puzzle game I wrote a little while ago.  It was my first attempt at writing coherent instructions for others to follow, so I was very pleased when it was accepted by the wonderful folks at <a href="http://www.dreamincode.net" title="dream.in.code" target="_blank">&lt;/dream.in.code&gt;</a>.  Thanks to Chris et al!<a href="http://www.dreamincode.net" title="dream.in.code" target="_blank"> </a></p>
<p>For anyone who isn&#8217;t familiar, DIC is a large community of programmers and web developers who are very helpful and knowledgeable on a huge range of technologies.</p>
<p align="left">Here&#8217;s the direct link to the tutorial: <a href="http://www.dreamincode.net/forums/showtopic45655.htm" title="Sliding Puzzle Tutorial" target="_blank">http://www.dreamincode.net/forums/showtopic45655.htm</a></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
		<item>
		<title>CSS3 Compatibility</title>
		<link>http://www.shaneauckland.com/?p=5</link>
		<comments>http://www.shaneauckland.com/?p=5#comments</comments>
		<pubDate>Tue, 11 Mar 2008 11:12:48 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[Browsers]]></category>

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

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

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

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

		<category><![CDATA[browser support]]></category>

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=5</guid>
		<description><![CDATA[Following on from the last post, but worthy of it&#8217;s own, Daniel Glazman has created a test of CSS3 selector support.  Top marks to the latest build of Opera for passing every test!
You can read Daniel Glazman&#8217;s blog here.
]]></description>
			<content:encoded><![CDATA[<p>Following on from the last post, but worthy of it&#8217;s own, <a href="http://disruptive-innovations.com/zoo/css3tests/selectorTest.html#target" title="CSS3 selector test" target="_blank">Daniel Glazman has created a test of CSS3 selector support</a>.  Top marks to the latest build of Opera for passing every test!</p>
<p>You can read Daniel Glazman&#8217;s blog <a href="http://www.glazman.org/weblog/" title="Daniel Glazman's blog" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
		<item>
		<title>CSS3 Selectors</title>
		<link>http://www.shaneauckland.com/?p=4</link>
		<comments>http://www.shaneauckland.com/?p=4#comments</comments>
		<pubDate>Mon, 10 Mar 2008 11:02:29 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[browser support]]></category>

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

		<guid isPermaLink="false">http://www.shaneauckland.com/?p=4</guid>
		<description><![CDATA[While trying to answer a question on a forum today I found myself browsing the range of selectors available for CSS3.  I&#8217;m late to the CSS3 party, having being bogged down in projects and due to my majority of my work audience using IE, but I like what I have found and feel good [...]]]></description>
			<content:encoded><![CDATA[<p>While trying to answer a question on a forum today I found myself browsing the range of <a href="http://www.w3.org/TR/css3-selectors/#selectors" title="CCS3 selectors" target="_blank">selectors available for CSS3</a>.  I&#8217;m late to the CSS3 party, having being bogged down in projects and due to my majority of my work audience using IE, but I like what I have found and feel good about the future.<br />
 <a href="http://www.shaneauckland.com/?p=4#more-4" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaneauckland.com/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
	</channel>
</rss>
