<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.8.4" -->
<rss version="0.92">
<channel>
	<title>Actionscript 3 Designer Toolkit</title>
	<link>http://www.as3dtk.com</link>
	<description>More design, less programming</description>
	<lastBuildDate>Thu, 03 Jun 2010 14:03:36 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Displaying multiple pages:  the SelectedPage class</title>
		<description>The SelectedPage class displays a series of jpeg's and/or swf's one at a time.&#160;&#160;A series of buttons - one for each page - control the tweened transistion from one page to the next.


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_selectedPage_868895028"
			align="left"
			class="flashmovie"
			width="490"
			height="270">
	<param name="movie" value="swf/selectedPage.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="swf/selectedPage.swf"
			name="fm_selectedPage_868895028"
			align="left"
			width="490"
			height="270">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>



The class relies on two arrays for data.&#160;&#160;As in the ...</description>
		<link>http://www.as3dtk.com/?p=521</link>
			</item>
	<item>
		<title>Drawing lines of alternating dots and dashes:  the DashDotLine class</title>
		<description>A visitor asked whether the DashedLine class could be modified to create lines composed of alternating dots and dashes; so I went ahead and modified the class.&#160;&#160;The new DashDotLine class constructor includes parameters for total length of the line, dash and dot widths, spacing between the dashes and dots and ...</description>
		<link>http://www.as3dtk.com/?p=520</link>
			</item>
	<item>
		<title>Removing class instances</title>
		<description>A reader recently inquired if it was necessary to remove previously created class instances which were no longer being used.&#160;&#160;The simple answer is yes because it frees up memory - but there may be other reasons as well.




// import custom classes
import com.dtk.ImageLoader;
import com.dtk.HTMLTitle;
import com.dtk.SelectedImageEvent;

// load first image & title
dispatchEvent( new ...</description>
		<link>http://www.as3dtk.com/?p=518</link>
			</item>
	<item>
		<title>Displaying slides:  the SlideShow class</title>
		<description>The SlideShow class is a simple means for displaying jpeg images one at a time.&#160;&#160;The class has built in next and previous buttons and shows the slide number displayed and total number of slides.


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_slideshow_1435753575"
			align="left"
			class="flashmovie"
			width="490"
			height="270">
	<param name="movie" value="swf/slideshow.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="swf/slideshow.swf"
			name="fm_slideshow_1435753575"
			align="left"
			width="490"
			height="270">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>



The Flash file below implements the slideshow above.&#160;&#160;After importing ...</description>
		<link>http://www.as3dtk.com/?p=515</link>
			</item>
	<item>
		<title>Using patterned backgrounds and masks:  the Perf class</title>
		<description>The Perf class draws a regular grid of either squares or circles that can then be applied as either a background or as a mask.&#160;&#160;The parameters of the class constructor determine whether the pattern is composed of squares or circles, the spacing and size of the pattern and its color ...</description>
		<link>http://www.as3dtk.com/?p=513</link>
			</item>
	<item>
		<title>Drawing a checkerboard background:  the Checkerboard class</title>
		<description>This post introduces the Checkerboard drawing class.&#160;&#160;It is a simple and easy to use class that relies on Flash's BitmapData class to draw the patterns.


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_checkerboard_1396949192"
			align="left"
			class="flashmovie"
			width="490"
			height="180">
	<param name="movie" value="swf/checkerboard.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="swf/checkerboard.swf"
			name="fm_checkerboard_1396949192"
			align="left"
			width="490"
			height="180">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>




The code below implements the image above.&#160;&#160;Notice that where the text instances are instanciated determines their z-order and, ...</description>
		<link>http://www.as3dtk.com/?p=511</link>
			</item>
	<item>
		<title>Submit your site</title>
		<description>Since the Actionscript 3 Designer Toolkit came online - over eight months ago - visitors to this website have downloaded the posted code snippets and custom classes several thousand times.

If you are a designer/developer who has used one or more of the AS3DTK custom classes in a website you built, ...</description>
		<link>http://www.as3dtk.com/?p=505</link>
			</item>
	<item>
		<title>Applying the DropDownMenus class</title>
		<description>In this post, the DropDownMenus class is used to form a group of horizontally arranged dropdown menus.&#160;&#160;Several changes have been made to the class to enable multiple instances to work more efficently together (changes detailed below).


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_horizontal_448029363"
			align="left"
			class="flashmovie"
			width="490"
			height="220">
	<param name="movie" value="swf/horizontal.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="swf/horizontal.swf"
			name="fm_horizontal_448029363"
			align="left"
			width="490"
			height="220">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>



The first change is a new parameter ...</description>
		<link>http://www.as3dtk.com/?p=503</link>
			</item>
	<item>
		<title>Using drop down menus:  the DropDownMenus class</title>
		<description>In this post, the DropDownMenus class is introduced.&#160;&#160;The class may be used singularly - as shown - or as a group with a series of drop down menus placed side-by-side horizontally.


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_dropDown_597272866"
			align="left"
			class="flashmovie"
			width="490"
			height="340">
	<param name="movie" value="swf/dropDown.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="swf/dropDown.swf"
			name="fm_dropDown_597272866"
			align="left"
			width="490"
			height="340">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>



The sample code below shows three arrays passed to the class constructor ...</description>
		<link>http://www.as3dtk.com/?p=500</link>
			</item>
	<item>
		<title>Sorting and combining arrays: sortOn( ) and concat( )</title>
		<description>In this post, the sorting of indexed arrays using the sortOn method is discussed.&#160;&#160;Sorting options Array.CASEINSENSITIVE, DESCENDING and NUMERIC, are also defined.&#160;&#160;Finally, we'll use concat to combine two arrays into a new array.&#160;&#160;



In the first example below, the array fruits is simply sorted by the field 'name' and the results ...</description>
		<link>http://www.as3dtk.com/?p=497</link>
			</item>
</channel>
</rss>
