<?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>Steve Roberts &#187; flash</title>
	<atom:link href="http://mbudm.com/category/tech/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://mbudm.com</link>
	<description>Web and mobile strategy, design and development</description>
	<lastBuildDate>Mon, 28 Nov 2011 01:19:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Updating from AS2 to AS3 with Find and replace</title>
		<link>http://mbudm.com/2011/01/updating-from-as2-to-as3-with-find-and-replace/</link>
		<comments>http://mbudm.com/2011/01/updating-from-as2-to-as3-with-find-and-replace/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 02:50:58 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ActionScript 2]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[as3]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=63</guid>
		<description><![CDATA[I&#8217;m kidding really &#8211; there is no way you could find and replace your AS2 code into AS3 Actionscript 3 is hugely different from Actionscript 2, but that doesn&#8217;t meant that you can&#8217;t do a lot of the grunt work using a simple find and replace on these like for like items: Find this in [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2011/01/updating-from-as2-to-as3-with-find-and-replace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash site templates that work on iPhone (&amp; iPad)</title>
		<link>http://mbudm.com/2010/05/flash-site-templates-that-work-on-iphone-ipad/</link>
		<comments>http://mbudm.com/2010/05/flash-site-templates-that-work-on-iphone-ipad/#comments</comments>
		<pubDate>Sun, 23 May 2010 00:48:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=81</guid>
		<description><![CDATA[There has been a lot of discussion on the web in recent weeks because Apple&#8217;s offerings iPhone and iPad do not (and probably will not) run the Adobe Flash Player on their in-built Safari web browser. To some this is great news &#8211; who needs those annoying Flash Ads anyway? But to others, who recognise [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2010/05/flash-site-templates-that-work-on-iphone-ipad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finding a specific node in an AS3 XML object</title>
		<link>http://mbudm.com/2010/03/finding-a-specific-node-in-an-as3-xml-object/</link>
		<comments>http://mbudm.com/2010/03/finding-a-specific-node-in-an-as3-xml-object/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 06:25:15 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ActionScript 2]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[as3]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=56</guid>
		<description><![CDATA[Continuing with my updating an Actionscript 2 project to Actionscript 3 I&#8217;m really enjoying the optimisation possibilities that AS3 provides. For example, In my as2 code I had a recursive method for finding a node. // recursive node search private function findNode(n:XMLNode,name:String,attname:String,attdata:String):XMLNode{ var xNode:XMLNode; if(n.hasChildNodes()){ for(var i = 0; i < n.childNodes.length; i++){ if(n.childNodes[i].nodeName == [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2010/03/finding-a-specific-node-in-an-as3-xml-object/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Actionscript 3: Inheritance Subclass and private vars</title>
		<link>http://mbudm.com/2010/03/actionscript-3-inheritance-subclass-and-private-vars/</link>
		<comments>http://mbudm.com/2010/03/actionscript-3-inheritance-subclass-and-private-vars/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 07:05:10 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[extends]]></category>
		<category><![CDATA[inheritance]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[public]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=51</guid>
		<description><![CDATA[I&#8217;m currently updating some as2 projects to as3 and I had a series of 1120 compiler errors this afternoon. I&#8217;m a fan of using the &#8216;extends&#8217; keyword to create customised versions of base classes. In Actionscript 2 the subclass can access all the variables and methods of the original class. It appears that in ActionScript [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2010/03/actionscript-3-inheritance-subclass-and-private-vars/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flash mp3 music player</title>
		<link>http://mbudm.com/2009/10/mp3-music-player-released-on-activeden/</link>
		<comments>http://mbudm.com/2009/10/mp3-music-player-released-on-activeden/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 03:15:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[2009]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[activeden]]></category>
		<category><![CDATA[flashden]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://mbudm.com/2009/10/mp3-music-player-released-on-flashden/</guid>
		<description><![CDATA[Today my newest Flash file was released on ActiveDen.net. It is an mp3 player with an attached album and artist library. It is designed to be added to full flash web sites (like those built using my templates) and can handle a lot of music with an accordion style interface for collapsing and expanding artist [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2009/10/mp3-music-player-released-on-activeden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful code for debugging MovieClip.localToGlobal() headaches</title>
		<link>http://mbudm.com/2009/10/useful-code-for-debugging-loacltoglobal-headaches/</link>
		<comments>http://mbudm.com/2009/10/useful-code-for-debugging-loacltoglobal-headaches/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 03:06:12 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[ActionScript 2]]></category>
		<category><![CDATA[localToGlobal]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=28</guid>
		<description><![CDATA[I hate localToGlobal. There I&#8217;ve said it. It seems that there are some things in Actionscript that always seem to throw me off &#8211; this is my main one. Today I had another issue while adding a generic tooltip to buttons that in an assortment of sub clips and components &#8211; the tooltip needs to [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2009/10/useful-code-for-debugging-loacltoglobal-headaches/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SEO friendly Flash templates</title>
		<link>http://mbudm.com/2009/08/seo-friendly-flash-templates/</link>
		<comments>http://mbudm.com/2009/08/seo-friendly-flash-templates/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 08:54:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=24</guid>
		<description><![CDATA[This weekend I have updated my existing FlashDen template and added a new one to the queue which should be available early next week. I have been doing some research over the past few months into making my Flash Templates more SEO friendly. Initially I avoided the SWFAddress solution as this involves editing a .htaccess [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2009/08/seo-friendly-flash-templates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Guide to adding an image gallery (or other actionscript 2 component) to the mbudm#001 template</title>
		<link>http://mbudm.com/2009/06/16guide-to-adding-image-gallery/</link>
		<comments>http://mbudm.com/2009/06/16guide-to-adding-image-gallery/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 05:28:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=16</guid>
		<description><![CDATA[A few buyers and potential buyers have been asking me about adding an external SWF to my &#8220;Minimalist, versatile, corporate site template&#8221; on FlashDen.net. This is something I expected as the template is purposefully a &#8216;lite&#8217; version &#8211; it has an inbuilt text module and support for external SWFs only. Other site templates on FlashDen [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2009/06/16guide-to-adding-image-gallery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SEO, small business and Flash</title>
		<link>http://mbudm.com/2009/06/seo-small-business-and-flash/</link>
		<comments>http://mbudm.com/2009/06/seo-small-business-and-flash/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 03:29:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[DIY web development]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[SWFaddress]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=7</guid>
		<description><![CDATA[Whilst waiting for Google to discover my basic attempt at SEO for Flash I have been scouring the web and getting a better idea of progress down this road. What I&#8217;ve discovered is: There are already some great solutions out there (isn&#8217;t it always the way), but these are relatively recent &#8211; mid 2007 is [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2009/06/seo-small-business-and-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where in the world is Sonia Kruschev?</title>
		<link>http://mbudm.com/2009/06/where-in-the-world-is-sonia-kruschev/</link>
		<comments>http://mbudm.com/2009/06/where-in-the-world-is-sonia-kruschev/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:33:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[flashden]]></category>
		<category><![CDATA[site template]]></category>

		<guid isPermaLink="false">http://mbudm.com/?p=3</guid>
		<description><![CDATA[I recently added a flash site template to my Flashden.net folio and it seems to be selling quite well which is great. However I can&#8217;t ignore the fact that like most Flash sites it probably won&#8217;t be easily discovered by Google. With SEO being forefront in peoples minds nowadays when creating even the most simple [...]]]></description>
		<wfw:commentRss>http://mbudm.com/2009/06/where-in-the-world-is-sonia-kruschev/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

