<?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>FlashChemist: Flash Libraries</title>
	<atom:link href="http://libs.flashchemist.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://libs.flashchemist.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 16 Sep 2010 09:43:40 +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>CASA Lib &#8211; An Open Source Code Library for Actionscript 2.0 &amp; 3.0</title>
		<link>http://libs.flashchemist.com/casa-lib-an-open-source-code-library-for-actionscript-2-0-3-0/</link>
		<comments>http://libs.flashchemist.com/casa-lib-an-open-source-code-library-for-actionscript-2-0-3-0/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 09:43:40 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[utility Classes]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[cabalib]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[utils]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=58</guid>
		<description><![CDATA[Another cool AS 3.0 library which solves your common needs. It gives a core set of classes, interfaces and utilities to get your common tasks done in a fast and reliable way. Doesn’t have any framework dependency (read Flex) so can be used with Flex and Flash projects.]]></description>
			<content:encoded><![CDATA[<p>Another cool AS 3.0 library which solves your common needs. It gives a core set  of classes, interfaces and utilities to get your common tasks done in a  fast and reliable way. Doesn’t have any framework dependency (read  Flex) so can be used with Flex and Flash projects.</p>
<p><a href="http://casalib.org/" target="_blank">Home Page</a></p>
<p>Below are some of the cool stuff in the library.</p>
<p><em>org.casalib.time </em>package has some very useful classes.</p>
<p>EnterFrame &#8211; creates a centralized EnterFrame event, even if your class is not a Display Object.</p>
<p>FrameDelay  &#8211; registers a callback method after specified number of frame  executions (Read as advanced callLater() method of Flex)</p>
<p>Inactivity &#8211; Determine user inactivity based on Mouse movement and key press. Detects inactivity and ‘back to active’ events.</p>
<p>Interval &#8211; Simplified Timer() class.</p>
<p>Sequence &#8211; Registers functions and executes them in sequence.</p>
<p><em>org.casalib.load</em> &#8211; has a list of load classes for various file types.</p>
<p><em>org.casalib.collection</em> has two List data structure implementations. List is similar to any  Java List class. There is another UniqueList class which will only allow  unique values to be stored in it; which will be quite handy.</p>
<p><em>org.casalib.utils</em> package has a collection of very good utility classes which will difintely help you.</p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/casa-lib-an-open-source-code-library-for-actionscript-2-0-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Short &#8211; Simplifying Actionscript for Designers</title>
		<link>http://libs.flashchemist.com/short-simplifying-actionscript-for-designers/</link>
		<comments>http://libs.flashchemist.com/short-simplifying-actionscript-for-designers/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 05:38:59 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[short]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=47</guid>
		<description><![CDATA[Here is a nice library from Arul, which is made to remove the verboseness of Action Script 3.0.
Short
When Action Script 3.0 was introduced with Adobe Flash CS3, it was a game changer and it definitely changed the way applications are coded in Flash. We moved to true Object Oriented Programming and the complexities and beauties [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a nice library from <a href="http://twitter.com/_arul" target="_blank">Arul</a>, which is made to remove the verboseness of Action Script 3.0.</p>
<p><a href="http://code.google.com/p/short/" target="_blank">Short</a></p>
<p>When Action Script 3.0 was introduced with Adobe Flash CS3, it was a game changer and it definitely changed the way applications are coded in Flash. We moved to true Object Oriented Programming and the complexities and beauties of Software Engineering.</p>
<p>That&#8217;s the developer part of the story. Designers? This change left the designers in a complex web of codes which was too verbose and I have seen people getting lost, or they didn&#8217;t want to add those simple scripts (or actions) they used to add to the movies.</p>
<p>For adding an action to a button you could do below prior to CS3 release.</p>
<p>On the button itself:</p>
<pre class="brush: as3;">

onClick{

}
</pre>
<p>or on the frame</p>
<pre class="brush: as3;">

buttonInstance.onClick(){

}
</pre>
<p>But see what is required to do the same in CS3 or later releases of Flash:</p>
<p>on the frame (and only on the frame. No script is allowed on the button or movie clip):</p>
<pre class="brush: as3;">

buttonInstance.addEventListener(MouseEvent.CLICK,buttonClickHandler);

function buttonClickHandler(e:Event)

{

//Code here...

}
</pre>
<p>Here is what you should do to add an enterFrame event and animate an object.</p>
<pre class="brush: as3;">

this.addEventListener(Event.ENTER_FRAME, eventHandler);

function eventHandler(e:Event):void

{

//Code here...

}
</pre>
<p>Here is where Short comes in as a great help. Short tries to simplify things again and put that smile back on Designer&#8217;s face, to some extend.</p>
<p>The above tasks simplifies to:</p>
<p>on the frame:</p>
<pre class="brush: as3;">

_.to = this;

_.button.onClick=function(){

//

}
</pre>
<p>or even simpler, as you used to do before:</p>
<pre class="brush: as3;">

$(instance).onClick=function() { }

//For enterFrame checks
$(stage).onEnterFrame=function(){ }

//Roll over
$(instance).onRollOver=function(){}
</pre>
<p>Only additional thing you are adding is just the $(..), which way easier than the &#8216;Flash&#8217;&#8217;s native coding.</p>
<p>Now, on to how to configure the Flash IDE for using Short. Head to the <a href="http://code.google.com/p/short/" target="_blank">Google Code page of Short</a> and grab the latest SWC (Short.swc) from the download page.</p>
<p>If you are a designer and needs to use this in all the work you are doing, it make sense to add the library permanently. Follow below steps.</p>
<p>1. Download the SWC<br />
2. Go to the folder &lt;installation Directory&gt;\Common\Configuration\ActionScript 3.0\libs\ and copy the SWC here. The path looked like below on my Windows XP machine with Flash CS5</p>
<p>C:\Program Files\Adobe\Adobe Flash CS5\Common\Configuration\ActionScript 3.0\libs</p>
<p>Now open up Flash IDE and start writing &#8216;Short&#8217; codes.</p>
<p>If you want to add the SWC on a project basis, follow below steps.</p>
<ul>
<li>Select &#8216;File&#8217; from menu.</li>
<li> Choose Publish Settings</li>
<li> Click the Flash tab</li>
<li> Select Flash Player 10 and ActionScript 3.0</li>
<li>Click Settings</li>
<li>Select the Library path tab</li>
<li> Add Short.swc</li>
</ul>
<p>Good to go.</p>
<p>If you are using Short with Flex/Flash Builder(I dont know one will use this with Flex/Flash Builder), you can copy the SWC to the &#8216;libs&#8217; folder or add using property panel of the project.</p>
<p>More details in the Google Code home page for Short. Short was demoed at the Adobe Flash Platform Summit 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/short-simplifying-actionscript-for-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS 3.0 Dropbox API</title>
		<link>http://libs.flashchemist.com/as-3-0-dropbox-api/</link>
		<comments>http://libs.flashchemist.com/as-3-0-dropbox-api/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 05:00:24 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=43</guid>
		<description><![CDATA[Here is the Actionscript 3.0 API for the Drop box service. The library works only with AIR, as there is no crossdomain.xml file in the Drop box servers and Flash Player will not allow the communication due to cross domain security policy (That would have been cool).
Haven&#8217;t seen any implementation of the library (what the [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the Actionscript 3.0 API for the Drop box service. The library works only with AIR, as there is no crossdomain.xml file in the Drop box servers and Flash Player will not allow the communication due to cross domain security policy (That would have been cool).</p>
<p>Haven&#8217;t seen any implementation of the library (what the official app cannot do) so far.</p>
<p><a href="http://code.google.com/p/dropbox-as3/" target="_blank">Google Code Home Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/as-3-0-dropbox-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AudioPhile &#8211; AS3 Sound Generation and Visualization</title>
		<link>http://libs.flashchemist.com/audiophile-as3-sound-generation-and-visualization/</link>
		<comments>http://libs.flashchemist.com/audiophile-as3-sound-generation-and-visualization/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 14:19:57 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=39</guid>
		<description><![CDATA[AudioPhile is a collection of projects for audio generation and visualization. There are two projects under it.
Audiophile &#8211; An AS3 library for generating dynamic audio in Flash Player 10
Audiovision &#8211; An AS3 library for visualizing audio in Flash Player 10
Here is a link to an example
Google Code Home Page
Worth noting that its a FP 10 [...]]]></description>
			<content:encoded><![CDATA[<p>AudioPhile is a collection of projects for audio generation and visualization. There are two projects under it.</p>
<p>Audiophile &#8211; An AS3 library for generating dynamic audio in Flash Player 10</p>
<p>Audiovision &#8211; An AS3 library for visualizing audio in Flash Player 10</p>
<p>Here is a link to <a href="http://audiophile.googlecode.com/svn/examples/AudioExamples/bin-release/AudioExamples.swf" target="_blank">an example</a></p>
<p><a href="http://code.google.com/p/audiophile/" target="_blank">Google Code Home Page</a></p>
<p>Worth noting that its a FP 10 only library.</p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/audiophile-as3-sound-generation-and-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AsWing &#8211; ActionScript Application Development Framework</title>
		<link>http://libs.flashchemist.com/aswing-actionscript-application-development-framework/</link>
		<comments>http://libs.flashchemist.com/aswing-actionscript-application-development-framework/#comments</comments>
		<pubDate>Tue, 25 May 2010 07:04:56 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[gui]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=36</guid>
		<description><![CDATA[AsWing is an Open Source ActionScript 2.0/ActionScript 3.0  GUI framework and library. Its a UI centric library, and is similar to Java Swing in implementation. You can either use this library to build your application, or get only what you need.]]></description>
			<content:encoded><![CDATA[<p>AsWing is an Open Source ActionScript 2.0/ActionScript 3.0  GUI framework and library. Its a UI centric library, and is similar to Java Swing in implementation. You can either use this library to build your application, or get only what you need.</p>
<p>Here is the link: <a href="http://www.aswing.org/" target="_blank">AsWing</a></p>
<p><a href="http://www.aswing.org/?page_id=7" target="_blank">Here are some applications</a> built using AsWing of which the <a href="http://www.victordramba.com/?p=31" target="_blank">Flash Mini Builder</a> is an interesting project.</p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/aswing-actionscript-application-development-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 Game Gears &#8211; Libraries for game development</title>
		<link>http://libs.flashchemist.com/as3-game-gears-libraries-for-game-development/</link>
		<comments>http://libs.flashchemist.com/as3-game-gears-libraries-for-game-development/#comments</comments>
		<pubDate>Fri, 07 May 2010 19:26:55 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=33</guid>
		<description><![CDATA[Here is a collection few open source libraries targeted at Game Development.
AS3.0 Gears
]]></description>
			<content:encoded><![CDATA[<p>Here is a collection few open source libraries targeted at Game Development.</p>
<p><a href="http://www.as3gamegears.com/" target="_blank">AS3.0 Gears</a></p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/as3-game-gears-libraries-for-game-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 Utils &#8211; Collection of reusable package-level functions that solve common problems</title>
		<link>http://libs.flashchemist.com/as3-utils-collection-of-reusable-package-level-functions-that-solve-common-problems/</link>
		<comments>http://libs.flashchemist.com/as3-utils-collection-of-reusable-package-level-functions-that-solve-common-problems/#comments</comments>
		<pubDate>Wed, 05 May 2010 08:37:28 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=30</guid>
		<description><![CDATA[a collection of utilities provided as package level functions by John Lindquist. ]]></description>
			<content:encoded><![CDATA[<p>Here  is a collection of utilities provided as package level functions by <a href="http://github.com/johnlindquist" target="_blank">John Lindquist</a>.  Here is a list of utility packages:</p>
<ul>
<li>array</li>
<li>color</li>
<li>conversions</li>
<li>date</li>
<li>event</li>
<li>garbage collection</li>
<li>html</li>
<li>number</li>
<li>string</li>
<li>validation</li>
<li>and more&#8230;</li>
</ul>
<p>There are many more like bringToFront(), sendBackward() for display objects, Array shuffle (using the <a href="http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle" target="_blank">Fisher Yates algorithm</a> etc)</p>
<p><a href="http://github.com/as3/as3-utils" target="_blank">Visit the GitHub Page here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/as3-utils-collection-of-reusable-package-level-functions-that-solve-common-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 Dotted Line Class</title>
		<link>http://libs.flashchemist.com/as3-dotted-line-class/</link>
		<comments>http://libs.flashchemist.com/as3-dotted-line-class/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 09:10:03 +0000</pubDate>
		<dc:creator>sahana</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[as3.0]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=26</guid>
		<description><![CDATA[Here is an ActionScript 3 class I use all the time to draw pixel perfect dotted lines in Flash. Free for any use other than reselling. It uses the good old bitmap filling.
Download
]]></description>
			<content:encoded><![CDATA[<p>Here is an ActionScript 3 class I use all the time to draw pixel perfect dotted lines in Flash. Free for any use other than reselling. It uses the good old bitmap filling.</p>
<p><a href="http://active.tutsplus.com/freebies/actionscript-30-classes/as3-dotted-line-class/" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/as3-dotted-line-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActionScript Mouse Gesture Library</title>
		<link>http://libs.flashchemist.com/actionscript-mouse-gesture-library/</link>
		<comments>http://libs.flashchemist.com/actionscript-mouse-gesture-library/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 11:00:37 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[as3.0]]></category>
		<category><![CDATA[mousegesture]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=18</guid>
		<description><![CDATA[A very easy to use Mouse Gesture class for AS 3.0 projects. The gesture is based on the mouse movements as shown below:

Then you go on defining your gestures as a progression of these numbers. On to code:
Instantiate it. Pass the stage reference, or wherever you want it to work.
mg  = new MouseGesture(this.stage);
Add a gesture. [...]]]></description>
			<content:encoded><![CDATA[<p>A very easy to use Mouse Gesture class for AS 3.0 projects. The gesture is based on the mouse movements as shown below:</p>
<p><a href="http://libs.flashchemist.com/wp-content/uploads/2010/03/gestures.png"><img class="alignnone size-full wp-image-19" title="Mouse Gestures" src="http://libs.flashchemist.com/wp-content/uploads/2010/03/gestures.png" alt="Mouse Gestures" width="124" height="128" /></a></p>
<p>Then you go on defining your gestures as a progression of these numbers. On to code:</p>
<p>Instantiate it. Pass the stage reference, or wherever you want it to work.</p>
<pre class="brush: as3;">mg  = new MouseGesture(this.stage);</pre>
<p>Add a gesture. Param 1: A string constant as an identifier. Param 2: The gesture number itself (above numbers) Here it is just a single action which will be &#8216;click and drag to right&#8217; (see image)</p>
<pre class="brush: as3;">mg.addGesture(PLAY,&quot;0&quot;); </pre>
<p>Add a complex gesture as a progression of above numbers. (Guess what it is)</p>
<pre class="brush: as3;">mg.addGesture(STEP_BACKWARD,&quot;65432&quot;); </pre>
<p>Now add the listener.</p>
<pre class="brush: as3;">mg.addEventListener(GestureEvent.GESTURE_MATCH,matchHandler);  </pre>
<p>Now your listener.</p>
<pre class="brush: as3;">private function matchHandler(event:GestureEvent):void

{

switch(event.datas)

{

case PLAY:

// DO whatever you want

break;

case GESTURE_MATCH:

// DO whatever you want. Yes again...

break;

}

}
</pre>
<p>Bingo! Easy, isn&#8217;t it?</p>
<p><a href="http://www.brighthub.com/hubfolio/matthew-casperson/media/p/50540.aspx" target="_blank">Home Page</a></p>
<p><a href="http://www.brighthub.com/hubfolio/matthew-casperson/media/p/50540/download.aspx" target="_blank">Download</a></p>
<p><strong>Samples:</strong></p>
<p><a href="http://www.bytearray.org/?p=91" target="_blank">At ByteArray.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/actionscript-mouse-gesture-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RobotLegs AS3.0 Application Development Framework</title>
		<link>http://libs.flashchemist.com/robotlegs-as3-0-application-development-framework/</link>
		<comments>http://libs.flashchemist.com/robotlegs-as3-0-application-development-framework/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 09:53:00 +0000</pubDate>
		<dc:creator>Vipin</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[as3.0]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://libs.flashchemist.com/?p=15</guid>
		<description><![CDATA[Robotlegs is an AS 3.0 micro-architecture (or call it framework) to use with your AS 3.0 or Flex Projects. Its just an extension of PureMVC and adds Dependency Injection to it. Didnt try it personally but says it reduces the amount of boilerplate code to be written to setup a PureMVC application. It also avoids [...]]]></description>
			<content:encoded><![CDATA[<p>Robotlegs is an AS 3.0 micro-architecture (or call it framework) to use with your AS 3.0 or Flex Projects. Its just an extension of <a href="http://libs.flashchemist.com/pure-mvc/" target="_blank">PureMVC</a> and adds Dependency Injection to it. Didnt try it personally but says it reduces the amount of boilerplate code to be written to setup a PureMVC application. It also avoids Singletons and static constants from your projects. It supports Modules (It has to, as PureMVC does it).</p>
<p><a href="http://www.robotlegs.org/" target="_blank">Home Page</a></p>
<p><a href="http://downloads.robotlegs.org/robotlegs-framework-v1.0.3.zip">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://libs.flashchemist.com/robotlegs-as3-0-application-development-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

