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

<channel>
	<title>Notepad Web Development &#187; AS3</title>
	<atom:link href="http://notepadwebdevelopment.com/archives/tag/as3/feed" rel="self" type="application/rss+xml" />
	<link>http://notepadwebdevelopment.com</link>
	<description>Project portfolio</description>
	<lastBuildDate>Sat, 04 Feb 2012 22:30:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AS3 Singleton workaround example</title>
		<link>http://notepadwebdevelopment.com/archives/606</link>
		<comments>http://notepadwebdevelopment.com/archives/606#comments</comments>
		<pubDate>Tue, 13 Jul 2010 09:11:36 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=606</guid>
		<description><![CDATA[
package
{
	public class YourSingletonClass
	{
		private static var _instance : YourSingletonClass;

		public function YourSingletonClass(pvt:PrivateClass) { }

		public static function getInstance():YourSingletonClass
		{
			if (YourSingletonClass._instance == null) {
				YourSingletonClass._instance = new YourSingletonClass(new PrivateClass());
			} else {
				trace(&#34;No can do - already gots me an instance of this class&#34;);
			}
			return YourSingletonClass._instance;
		}
	}
}
// Workaround to enable Singleton pattern, because private
// class declarations are unsupported within AS3
class PrivateClass
{
	public function PrivateClass() { }
}

]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/606/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personality types mini-app</title>
		<link>http://notepadwebdevelopment.com/archives/591</link>
		<comments>http://notepadwebdevelopment.com/archives/591#comments</comments>
		<pubDate>Wed, 16 Jun 2010 16:15:24 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Sense Internet]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=591</guid>
		<description><![CDATA[
Launch the application
Created for Imperial Tobacco whilst working at Sense Internet.
]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/591/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A basic AS3 custom event template</title>
		<link>http://notepadwebdevelopment.com/archives/588</link>
		<comments>http://notepadwebdevelopment.com/archives/588#comments</comments>
		<pubDate>Tue, 15 Jun 2010 10:37:57 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=588</guid>
		<description><![CDATA[
package  {
	import flash.events.Event;
	import YourClass;

	public class YourClassEvent extends Event
	{
		public static const SOMETHING:String = &#34;something&#34;;
		private var _object:YourClass;

		public function YourClassEvent (type:String, object:YourClass)
		{
			super(type);
			_object	= object;
		}

		public function get object():YourClass
		{
           return _object;
		}

		override public function clone():Event
		{
           return new YourClassEvent(type, _object);
		}
	}
}

]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/588/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lamppost Gallery</title>
		<link>http://notepadwebdevelopment.com/archives/342</link>
		<comments>http://notepadwebdevelopment.com/archives/342#comments</comments>
		<pubDate>Tue, 01 Jun 2010 14:46:48 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flickr API]]></category>
		<category><![CDATA[Greensock]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=342</guid>
		<description><![CDATA[A application to present the 200 photos featured as part of West Leeds Arts Festival's Lamppost Gallery. All content on the site comes via the Flickr API.]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/342/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 Flashing EQs</title>
		<link>http://notepadwebdevelopment.com/archives/369</link>
		<comments>http://notepadwebdevelopment.com/archives/369#comments</comments>
		<pubDate>Sun, 16 May 2010 14:15:10 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Sense Internet]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=369</guid>
		<description><![CDATA[
  Flash loading&#8230;

Created as part of Rizla UK&#8217;s 2010 Invisible Players pages.

The code for this flashing banner was fairly concise, amounting to a hundred or so lines, across 2 classes.
The document class creates 45 EqBar objects, and every 1/300 seconds will generate a random number and call setVolume() for a group of bars. Bars [...]]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/369/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save The DJ</title>
		<link>http://notepadwebdevelopment.com/archives/390</link>
		<comments>http://notepadwebdevelopment.com/archives/390#comments</comments>
		<pubDate>Sat, 15 May 2010 15:21:27 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Sense Internet]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=390</guid>
		<description><![CDATA[A flash game, used to promote competition entries for the Rizla Invisible Players tour 2010. Players get 30 seconds to connect as many wires as possible.]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/390/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr Faves</title>
		<link>http://notepadwebdevelopment.com/archives/359</link>
		<comments>http://notepadwebdevelopment.com/archives/359#comments</comments>
		<pubDate>Sat, 10 Apr 2010 16:39:50 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Featured Projects]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flickr API]]></category>
		<category><![CDATA[Greensock]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Social networking]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=359</guid>
		<description><![CDATA[A graphical interface for browsing people's favourite photos on Flickr. Clicking on a photographer's icon loads their faves, <em>not</em> their photos.]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/359/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Punk My Peg</title>
		<link>http://notepadwebdevelopment.com/archives/313</link>
		<comments>http://notepadwebdevelopment.com/archives/313#comments</comments>
		<pubDate>Sun, 28 Mar 2010 20:55:03 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Greensock]]></category>
		<category><![CDATA[Sense Internet]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=313</guid>
		<description><![CDATA[A Facebook application created for Leeds City Council's Follow Alex brand. Aimed at young teens, who get to customise a peg by adding features and accessories.]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/313/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Analogue timezone clocks</title>
		<link>http://notepadwebdevelopment.com/archives/493</link>
		<comments>http://notepadwebdevelopment.com/archives/493#comments</comments>
		<pubDate>Thu, 25 Mar 2010 10:32:30 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Sense Internet]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=493</guid>
		<description><![CDATA[
Loading flash content&#8230;

Created for the dashboard as part of the Rizla International website.
The AS3 code for these clocks consists of 2 classes, the document class which holds an array of countries and associated timezones, and an AnalogueClock class. The document class creates five AnalogueClock objects (or as many items that exist in the countries array), [...]]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/493/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic resizing full bleed background image</title>
		<link>http://notepadwebdevelopment.com/archives/572</link>
		<comments>http://notepadwebdevelopment.com/archives/572#comments</comments>
		<pubDate>Thu, 04 Mar 2010 11:32:13 +0000</pubDate>
		<dc:creator>Stephen Griffin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Sense Internet]]></category>

		<guid isPermaLink="false">http://notepadwebdevelopment.com/?p=572</guid>
		<description><![CDATA[
Loading flash content&#8230;

This was a quick mock-up done in Flash CS3 for a pitch for a new site for Harrogate Ladies college. The background images rotate thorugh a slideshow and will dynamically resize as you change the size of your browser window. In order to see this working you will need to view the swf [...]]]></description>
		<wfw:commentRss>http://notepadwebdevelopment.com/archives/572/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

