<?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>Actionscript Classes &#187; Array</title>
	<atom:link href="http://www.actionscriptclasses.com/category/array/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.actionscriptclasses.com</link>
	<description>Actionscript Class File Repository</description>
	<lastBuildDate>Sat, 19 Jun 2010 18:02:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ArrayBinder for Flash CS3</title>
		<link>http://www.actionscriptclasses.com/2008/arraybinder-for-flash-cs3/</link>
		<comments>http://www.actionscriptclasses.com/2008/arraybinder-for-flash-cs3/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 20:05:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 3]]></category>
		<category><![CDATA[Array]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2008/arraybinder-for-flash-cs3/</guid>
		<description><![CDATA[From the site: I&#8217;ve written a class that can help separate the view from the model in Flash projects. It is by no means equivilent to data binding available in Flex (and far from it!) but I&#8217;ve used bind in the title because it does effectively bind the values held in an ArrayBinder instance to [...]]]></description>
			<content:encoded><![CDATA[<p>From the site:<br />
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote">I&#8217;ve written a class that can help separate the view from the model in Flash projects.  It is by no means equivilent to data binding available in Flex (and far from it!) but I&#8217;ve used bind in the title because it does effectively bind the values held in an ArrayBinder instance to object properties that have subscribed to refer to those values.   The specific use that I have in mind for ArrayBinder is in assisting with localising interfaces for applications that are developed in Flash CS3.  </p></blockquote>
<blockquote style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px" class="webkit-indent-blockquote"><p> </p></blockquote>
<p><a href="http://fboyle.com/blog/?p=10" title="ArrayBinder for Flash CS3">http://fboyle.com/blog/?p=10 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2008/arraybinder-for-flash-cs3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combinator</title>
		<link>http://www.actionscriptclasses.com/2006/119/</link>
		<comments>http://www.actionscriptclasses.com/2006/119/#comments</comments>
		<pubDate>Sat, 16 Dec 2006 05:12:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/119/</guid>
		<description><![CDATA[From the site: The usage of Combinator class is very simple. It takes the input array of items and defined size (combination number) of combination arrays that can be produced in a loop. Suppose we need to generate all three-number combinations from numbers 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. We put [...]]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>The usage of Combinator class is very simple. It takes the input array of items and defined size (combination number) of combination arrays that can be produced in a loop.<br />
Suppose we need to generate all three-number combinations from numbers 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. We put them in array, instantiate the Combinator and call its next() method in a loop until there are no combinations left.</p></blockquote>
<p><a href="http://lharp.net/post/array-combinator/" title="Combinator">http://lharp.net/post/array-combinator/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/119/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permutator</title>
		<link>http://www.actionscriptclasses.com/2006/permutator/</link>
		<comments>http://www.actionscriptclasses.com/2006/permutator/#comments</comments>
		<pubDate>Sat, 16 Dec 2006 05:11:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/permutator/</guid>
		<description><![CDATA[From the site: A time ago I wrote about the Array Combinator ActionScript class for generating all combinations of items from an input array. Now I have revisited the API with the abstract Generator class and also added a new class for generating permutations of items from the input array &#8211; Permutator. http://lharp.net/?p=16]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>A time ago I wrote about the Array Combinator ActionScript class for generating all combinations of items from an input array. Now I have revisited the API with the abstract Generator class and also added a new class for generating permutations of items from the input array &#8211; Permutator.</p></blockquote>
<p><a href="http://lharp.net/?p=16" title="Permutator">http://lharp.net/?p=16</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/permutator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PriorityQueue</title>
		<link>http://www.actionscriptclasses.com/2006/priorityqueue/</link>
		<comments>http://www.actionscriptclasses.com/2006/priorityqueue/#comments</comments>
		<pubDate>Sat, 16 Dec 2006 04:47:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/priorityqueue/</guid>
		<description><![CDATA[http://shockwave-india.com/blog/?archive=2004_07_01_archive.xml#109038436727337119]]></description>
			<content:encoded><![CDATA[<p><a href="http://shockwave-india.com/blog/?archive=2004_07_01_archive.xml#109038436727337119" title="Priority Queue">http://shockwave-india.com/blog/?archive=2004_07_01_archive.xml#109038436727337119</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/priorityqueue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MovieClipHistory</title>
		<link>http://www.actionscriptclasses.com/2006/moviecliphistory/</link>
		<comments>http://www.actionscriptclasses.com/2006/moviecliphistory/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 03:04:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[Movieclip]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/moviecliphistory/</guid>
		<description><![CDATA[from the docs: Provides a way to record and replay many methods used in dynamically defining a movie clip&#8217;s visual appearance. Methods recorded can be replayed on the original movie clip or another movie clip which is to &#8220;inherit&#8221; the original movie clip&#8217;s dynamic appearance. Supported methods include: attachMovie duplicateMovieClip createEmptyMovieClip loadMovie swapDepths removeMovieClip lineStyle [...]]]></description>
			<content:encoded><![CDATA[<p>from the docs:</p>
<blockquote>
<p align="left">Provides a way to record and replay many methods used in dynamically defining a movie clip&#8217;s visual appearance.  Methods recorded can be replayed on the original movie clip or another movie clip which is to &#8220;inherit&#8221; the original movie clip&#8217;s dynamic appearance. Supported methods include:</p>
<ul>
<li>attachMovie</li>
<li>duplicateMovieClip</li>
<li>createEmptyMovieClip</li>
<li>loadMovie</li>
<li>swapDepths</li>
<li>removeMovieClip</li>
<li>lineStyle</li>
<li>beginFill</li>
<li>beginGradientFill</li>
<li>endFill</li>
<li>moveTo</li>
<li>lineTo</li>
<li>curveTo</li>
<li>clear</li>
</ul>
<blockquote><p>These methods are overridden for the movie clip so that new, history recording methods can be used in their place.  The new methods record the method call and call for the movie clip the original method.</p></blockquote>
</blockquote>
<p><a title="MovieClipHistory" href="http://www.senocular.com/flash/actionscript.php?file=ActionScript_2.0/MovieClipHistory.as">http://www.senocular.com/flash/actionscript.php?file=ActionScript_2.0/MovieClipHistory.as</a></p>
<blockquote /><p>Part of <a title="Senocular's Actionscript library" href="http://www.senocular.com/flash/actionscript.php">senocular&#8217;s Actionscript library.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/moviecliphistory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Array Combinator</title>
		<link>http://www.actionscriptclasses.com/2006/array-combinator/</link>
		<comments>http://www.actionscriptclasses.com/2006/array-combinator/#comments</comments>
		<pubDate>Tue, 29 Aug 2006 23:22:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Array]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/array-combinator/</guid>
		<description><![CDATA[Generate sets of different combinations from an array of items. http://lharp.net/post/array-combinator/Â ]]></description>
			<content:encoded><![CDATA[<p>Generate sets of different combinations from an array of items.</p>
<p><a title="Array Combinator" href="http://lharp.net/post/array-combinator/">http://lharp.net/post/array-combinator/Â </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/array-combinator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
