<?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>FLASHCROBAT</title>
	<atom:link href="http://flashcrobat.noesi.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://flashcrobat.noesi.co.uk</link>
	<description>Actionscript code dump</description>
	<pubDate>Mon, 05 Oct 2009 16:27:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Very Complete list of AS3 classes</title>
		<link>http://flashcrobat.noesi.co.uk/?p=63</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=63#comments</comments>
		<pubDate>Mon, 05 Oct 2009 16:27:49 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/?p=63</guid>
		<description><![CDATA[Thanks to Adrian Parr , here is a very nice and up to date list of almost all available Action script classes, frameworks and engines out there.
http://www.adrianparr.com/?tag=as3
]]></description>
			<content:encoded><![CDATA[<p>Thanks to Adrian Parr , here is a very nice and up to date list of almost all available Action script classes, frameworks and engines out there.</p>
<p><a href="http://www.adrianparr.com/?tag=as3">http://www.adrianparr.com/?tag=as3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=63</wfw:commentRss>
		</item>
		<item>
		<title>check if swf is a local or online file</title>
		<link>http://flashcrobat.noesi.co.uk/?p=62</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=62#comments</comments>
		<pubDate>Mon, 05 Oct 2009 14:05:03 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[AS3]]></category>

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

		<category><![CDATA[local file]]></category>

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/?p=62</guid>
		<description><![CDATA[Often, when projects become bigger and more complicated, it often is necessary gto let the application behave different when exported within the IDE and the actual LIVE project. I use this snippet, right at the beginning of my baseclass, to define in which environment the flash client is running:
PLAIN TEXT
Actionscript:




if&#40;stage.loaderInfo.url.indexOf&#40;"file:"&#41; != -1&#41;&#123;


&#160; &#160; _configXmlPath = [...]]]></description>
			<content:encoded><![CDATA[<p>Often, when projects become bigger and more complicated, it often is necessary gto let the application behave different when exported within the IDE and the actual LIVE project. I use this snippet, right at the beginning of my baseclass, to define in which environment the flash client is running:</p>
<div class="igBar"><span id="lactionscript-2"><a href="#" onclick="javascript:showPlainTxt('actionscript-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-2">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">stage</span>.<span style="color: #006600;">loaderInfo</span>.<span style="color: #0066CC;">url</span>.<span style="color: #0066CC;">indexOf</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"file:"</span><span style="color: #66cc66;">&#41;</span> != -<span style="color: #cc66cc;color:#800000;">1</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; _configXmlPath = <span style="color: #ff0000;">"config.xml"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"local file"</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span><span style="color: #b1b100;">else</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"Server"</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">domain</span> = URLUtils.<span style="color: #006600;">getDomain</span><span style="color: #66cc66;">&#40;</span> <span style="color: #0066CC;">stage</span>.<span style="color: #006600;">loaderInfo</span>.<span style="color: #0066CC;">url</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>I hope this is seflexpainatory.</p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=62</wfw:commentRss>
		</item>
		<item>
		<title>colormatrix filter change the Hue</title>
		<link>http://flashcrobat.noesi.co.uk/?p=59</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=59#comments</comments>
		<pubDate>Tue, 21 Jul 2009 21:43:59 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[AS3]]></category>

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

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

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

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

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/uncategorized/colormatrix-filter-change-the-hue/</guid>
		<description><![CDATA[Or you could just randomize the “hue” color parameter which is handily a 0-360 scale in TweenFilterLite:
theHue = (Math.round(Math.random() * 360)) ;
TweenFilterLite.to(my_mc, 2, {colorMatrixFilter:{amount:1, hue:theHue}});
]]></description>
			<content:encoded><![CDATA[<p>Or you could just randomize the “hue” color parameter which is handily a 0-360 scale in TweenFilterLite:
<p>theHue = (Math.round(Math.random() * 360)) ;<br />
TweenFilterLite.to(my_mc, 2, {colorMatrixFilter:{amount:1, hue:theHue}});</p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=59</wfw:commentRss>
		</item>
		<item>
		<title>disabling the yellow tab Borders in Flash</title>
		<link>http://flashcrobat.noesi.co.uk/?p=58</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=58#comments</comments>
		<pubDate>Mon, 29 Jun 2009 15:50:47 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[AS3]]></category>

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

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

		<category><![CDATA[yellow borders]]></category>

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/uncategorized/disabling-the-yellow-tab-borders-in-flash/</guid>
		<description><![CDATA[Flash has these bright yellow borders around buttons and other MovieClips, when the user uses his tab keys. I haven't found a way to change the look of these borders yet, so in the meantime, to have them disabled, I use following short code snippet:
Button.prototype.tabEnabled=false;for(var obj in _root){&#160;&#160; _root[obj].tabEnabled = false;&#160;&#160; _root[obj]._focusrect=false;}

]]></description>
			<content:encoded><![CDATA[<blockquote cite="http://www.scottking.com.au/blog/category/actionscript/"><p>Flash has these bright yellow borders around buttons and other MovieClips, when the user uses his tab keys. I haven't found a way to change the look of these borders yet, so in the meantime, to have them disabled, I use following short code snippet:</p>
<p><br style="font-family: Courier;" /><span style="font-family: Courier;">Button.prototype.tabEnabled=false;</span><br style="font-family: Courier;" /><span style="font-family: Courier;">for(var obj in _root){</span><br style="font-family: Courier;" /><span style="font-family: Courier;">&nbsp;&nbsp; _root[obj].tabEnabled = false;</span><br style="font-family: Courier;" /><span style="font-family: Courier;">&nbsp;&nbsp; _root[obj]._focusrect=false;</span><br style="font-family: Courier;" /><span style="font-family: Courier;">}</span></p></blockquote>
<p><cite cite="http://www.scottking.com.au/blog/category/actionscript/"></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=58</wfw:commentRss>
		</item>
		<item>
		<title>mashertest</title>
		<link>http://flashcrobat.noesi.co.uk/?p=57</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=57#comments</comments>
		<pubDate>Tue, 23 Jun 2009 01:19:23 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/?p=57</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://masher.com/static/flash/mashPlayerView.swf?userId=46cde12c-a42f-476a-b6b7-33bc20bf6162&#038;mashid=78a5f7db-2c08-0559-36f4-0000758146e0" width="360" height="300" id="flashMashPlayer"><param name="movie" value="http://masher.com/static/flash/mashPlayerView.swf?userId=46cde12c-a42f-476a-b6b7-33bc20bf6162&#038;mashid=78a5f7db-2c08-0559-36f4-0000758146e0"/><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="flashvars" value="configPath=http://masher.com/flashConfig.jsp" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=57</wfw:commentRss>
		</item>
		<item>
		<title>ActionScript 3: Using URLLoader to send and load server variables « Tushar Wadekar</title>
		<link>http://flashcrobat.noesi.co.uk/?p=56</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=56#comments</comments>
		<pubDate>Mon, 22 Jun 2009 16:31:58 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[AS3]]></category>

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

		<category><![CDATA[send vars]]></category>

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

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/uncategorized/actionscript-3-using-urlloader-to-send-and-load-server-variables-%c2%ab-tushar-wadekar/</guid>
		<description><![CDATA[ActionScript 3: Using URLLoader to send and load server variables « Tushar Wadekar 
here is the most accurate description on how to send vars to a server script from flash, without opening anew browser window
]]></description>
			<content:encoded><![CDATA[<p><a href="http://tush.wordpress.com/2007/07/20/actionscript-3-using-urlloader-to-send-and-load-server-variables/">ActionScript 3: Using URLLoader to send and load server variables « Tushar Wadekar</a> </p>
<p>here is the most accurate description on how to send vars to a server script from flash, without opening anew browser window</p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=56</wfw:commentRss>
		</item>
		<item>
		<title>aborting a loading</title>
		<link>http://flashcrobat.noesi.co.uk/?p=55</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=55#comments</comments>
		<pubDate>Fri, 12 Jun 2009 08:33:41 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[code snippet]]></category>

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

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

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/uncategorized/aborting-a-loading/</guid>
		<description><![CDATA[In AS3 only, you can now abort a loading operation, before it has completed.
Senocular has written a post about it here.
in summary:


var loader:Loader = new Loader();
var request:URLRequest = new URLRequest("image.jpg");
loader.load(request);
addChild(loader);

// abort loading if not done in 3 seconds
var abortID:uint = setTimeout(abortLoader, 3000);

// abort the abort when loaded
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, abortAbort);

function abortLoader(){
&#160; &#160; try {
&#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>In AS3 only, you can now abort a loading operation, before it has completed.<br />
Senocular has written a post about it <a href="http://www.kirupa.com/forum/showthread.php?p=1964168">here</a>.</p>
<p>in summary:</p>
<pre class="alt2" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 500px; height: 340px;">
<div dir="ltr" style="text-align: left;">
<div class="actionscript"><span style="color: rgb(0, 0, 0); font-weight: bold;">var</span> loader:Loader = <span style="color: rgb(0, 0, 0); font-weight: bold;">new</span> Loader<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 0);">)</span>;
<span style="color: rgb(0, 0, 0); font-weight: bold;">var</span> request:URLRequest = <span style="color: rgb(0, 0, 0); font-weight: bold;">new</span> URLRequest<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(255, 0, 0);">"image.jpg"</span><span style="color: rgb(0, 0, 0);">)</span>;
loader.<span style="color: rgb(0, 0, 255);">load</span><span style="color: rgb(0, 0, 0);">(</span>request<span style="color: rgb(0, 0, 0);">)</span>;
addChild<span style="color: rgb(0, 0, 0);">(</span>loader<span style="color: rgb(0, 0, 0);">)</span>;

<span style="color: rgb(128, 128, 128); font-style: italic;">// abort loading if not done in 3 seconds</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">var</span> abortID:uint = setTimeout<span style="color: rgb(0, 0, 0);">(</span>abortLoader, <span style="color: rgb(0, 0, 128);">3000</span><span style="color: rgb(0, 0, 0);">)</span>;

<span style="color: rgb(128, 128, 128); font-style: italic;">// abort the abort when loaded</span>
loader.<span style="color: rgb(0, 0, 128);">contentLoaderInfo</span>.<span style="color: rgb(0, 0, 128);">addEventListener</span><span style="color: rgb(0, 0, 0);">(</span>Event.<span style="color: rgb(0, 0, 128);">COMPLETE</span>, abortAbort<span style="color: rgb(0, 0, 0);">)</span>;

<span style="color: rgb(0, 0, 0); font-weight: bold;">function</span> abortLoader<span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 0);">)</span><span style="color: rgb(0, 0, 0);">{</span>
&nbsp; &nbsp; <span style="color: rgb(0, 0, 255);">try</span> <span style="color: rgb(0, 0, 0);">{</span>
&nbsp; &nbsp; &nbsp; &nbsp; loader.<span style="color: rgb(0, 0, 255);">close</span><span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 0);">)</span>;
&nbsp; &nbsp; <span style="color: rgb(0, 0, 0);">}</span><span style="color: rgb(0, 0, 255);">catch</span><span style="color: rgb(0, 0, 0);">(</span><span style="color: rgb(0, 0, 255);">error</span>:Error<span style="color: rgb(0, 0, 0);">)</span> <span style="color: rgb(0, 0, 0);">{</span><span style="color: rgb(0, 0, 0);">}</span>
<span style="color: rgb(0, 0, 0);">}</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">function</span> abortAbort<span style="color: rgb(0, 0, 0);">(</span>event:Event<span style="color: rgb(0, 0, 0);">)</span><span style="color: rgb(0, 0, 0);">{</span>
&nbsp; &nbsp; clearTimeout<span style="color: rgb(0, 0, 0);">(</span>abortID<span style="color: rgb(0, 0, 0);">)</span>;
<span style="color: rgb(0, 0, 0);">}</span></div>
</div>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=55</wfw:commentRss>
		</item>
		<item>
		<title>Nasty Yellow Highlight on Buttons When “Tabbing” « Gena’s Blurb</title>
		<link>http://flashcrobat.noesi.co.uk/?p=54</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=54#comments</comments>
		<pubDate>Mon, 08 Jun 2009 22:41:41 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

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

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/uncategorized/nasty-yellow-highlight-on-buttons-when-%e2%80%9ctabbing%e2%80%9d-%c2%ab-gena%e2%80%99s-blurb/</guid>
		<description><![CDATA[Nasty Yellow Highlight on Buttons When “Tabbing”When you’re in a flash movie and you hit the “tab” button to go from button to button flash likes to put a bright bold yellow highlight around the button that is awfully ugly and annoying. This is how you get rid of that awful yellow highlight that flash [...]]]></description>
			<content:encoded><![CDATA[<blockquote cite="http://genaboo.wordpress.com/2009/03/16/nasty-yellow-highlight-on-buttons-when-tabbing/"><p>Nasty Yellow Highlight on Buttons When “Tabbing”When you’re in a flash movie and you hit the “tab” button to go from button to button flash likes to put a bright bold yellow highlight around the button that is awfully ugly and annoying. This is how you get rid of that awful yellow highlight that flash produces by default.<br />
   <span style="font-family: Courier;"><br />
movieClipName.tabEnabled = false;</span></p>
<p>Note: this code will also make the button not “tabbable”. Now when you hit the tab button on the keyboard it will ignore that button all together. You can still utilize it with ‘getfoucus’.</p>
<p>if you have nested moveclips then use this code too:    <span style="font-family: Courier;"><br />
parentMovieClipName.tabChildren = false;</span></p>
<p>No more nasty default yellow highlights around anything that is tabbable in your flash movies.</p></blockquote>
<p><cite cite="http://genaboo.wordpress.com/2009/03/16/nasty-yellow-highlight-on-buttons-when-tabbing/"><a href="http://genaboo.wordpress.com/2009/03/16/nasty-yellow-highlight-on-buttons-when-tabbing/">Nasty Yellow Highlight on Buttons When “Tabbing” « Gena’s Blurb</a></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=54</wfw:commentRss>
		</item>
		<item>
		<title>Tweensy, a new slick AS3 animation package goes public`</title>
		<link>http://flashcrobat.noesi.co.uk/?p=53</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=53#comments</comments>
		<pubDate>Wed, 27 May 2009 20:35:18 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[AS3]]></category>

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

		<category><![CDATA[animation package]]></category>

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

		<category><![CDATA[path animation]]></category>

		<category><![CDATA[tweening engine]]></category>

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

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/uncategorized/tweensy-a-new-slick-as3-animation-package-goes-public/</guid>
		<description><![CDATA[Tweensy, developed by the notorious "Lost in Actionscript" blog owner Shane McCartney. I am personally a fan of Greensock's Tweenlite package, and there aren't any AS3 projects I haven't used it, but I must say Tweeny is the first one that actually woke my attention. It seems slick,&#160;fast, (very fast), and best of all are [...]]]></description>
			<content:encoded><![CDATA[<p>Tweensy, developed by the notorious "Lost in Actionscript" blog owner Shane McCartney. I am personally a fan of Greensock's Tweenlite package, and there aren't any AS3 projects I haven't used it, but I must say Tweeny is the first one that actually woke my attention. It seems slick,&nbsp;fast, (very fast), and best of all are the effect packages it can be extended with. I also tried out the abilities to tween along complicated motion guides, and must say, I was really waiting for that one!<br />
I will keep a few of my experiments with it posted here, but hey, flash community, there is movement!!</p>
<p><a href="http://www.lostinactionscript.com/blog/index.php/2009/01/05/tweensy-goes-public/">http://www.lostinactionscript.com/blog/index.php/2009/01/05/tweensy-goes-public/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=53</wfw:commentRss>
		</item>
		<item>
		<title>HAPPY 2009, may this year be flash-properous</title>
		<link>http://flashcrobat.noesi.co.uk/?p=51</link>
		<comments>http://flashcrobat.noesi.co.uk/?p=51#comments</comments>
		<pubDate>Sun, 04 Jan 2009 21:14:28 +0000</pubDate>
		<dc:creator>sortofme</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://flashcrobat.noesi.co.uk/?p=51</guid>
		<description><![CDATA[There we are, 2009 came around quicker than thought. The end of 2008 turned out quite turbulent, let's see what 2009 brings for surprises, but my feeling tells me it will be an event rich year. It has just started, so let's not waste any time, the end of the decade will be around the [...]]]></description>
			<content:encoded><![CDATA[<p>There we are, 2009 came around quicker than thought. The end of 2008 turned out quite turbulent, let's see what 2009 brings for surprises, but my feeling tells me it will be an event rich year. It has just started, so let's not waste any time, the end of the decade will be around the corner faster than we expect it again.</p>
<p>One of my ambitions I want to accomplish before Februar starts, is a revamp of this Blog. It is in the meantime getting quite a bit of attention, and it is slowly growing from a personal codeDump to a online actionscript and flash related Code reference for a wider community of  online users. </p>
<p>This is great news, but this also means I have a bit more responsability in making it clearer, more usable, and qualitatively better, to get more interaction from the community, and encourage more discussions and exchange of Knowledge.</p>
<p>Big words for a small Blog.</p>
<p>greetings,</p>
<p>Simon</p>
]]></content:encoded>
			<wfw:commentRss>http://flashcrobat.noesi.co.uk/?feed=rss2&amp;p=51</wfw:commentRss>
		</item>
	</channel>
</rss>
