<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>Simplistika</title>
	<link>http://simplistika.com</link>
	<description>Think Simple</description>
	<lastBuildDate>Tue, 13 Oct 2009 12:21:49 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Play MovieClip&#039;s in reverse!</title>
		<description><![CDATA[Your gotoAndPlay replacement.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_cPlayerDemo_1812277883"
			class="flashmovie"
			width="450"
			height="280">
	<param name="movie" value="http://www.simplistika.com/files/cPlayerDemo.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.simplistika.com/files/cPlayerDemo.swf"
			name="fm_cPlayerDemo_1812277883"
			width="450"
			height="280">
	<!--<![endif]-->
		

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Download the class here.
]]></description>
		<link>http://simplistika.com/play-movieclips-in-reverse/</link>
			</item>
	<item>
		<title>Flash AS3 Database Driven Dynamic XML Drag Drop Calendar</title>
		<description><![CDATA[ 
(Go ahead and create events in the read write version. Calendar resets every hour).
Easy to use
Great for embedding into websites. Modify it easily as a calendar extension to your CMS or customized email solution!
Requirements:

Flash CS3 and onwards (and knowing what to do with it!)
For database functionaily, PHP and MySQL enabled server
Common sense

Features:

No PHP, SQL, [...]]]></description>
		<link>http://simplistika.com/flash-as3-database-driven-dynamic-xml-drag-drop-calendar/</link>
			</item>
	<item>
		<title>Date to Day Conversion</title>
		<description><![CDATA[Here is a Date helper class that

converts a date to a day
finds out the number of days in a month


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_DateUtils_1538631455"
			class="flashmovie"
			width="250"
			height="200">
	<param name="movie" value="http://www.simplistika.com/files/DateUtils.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.simplistika.com/files/DateUtils.swf"
			name="fm_DateUtils_1538631455"
			width="250"
			height="200">
	<!--<![endif]-->
		

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Have fun deciphering this one.
Click here to download the sample files.
]]></description>
		<link>http://simplistika.com/date-to-day-conversion/</link>
			</item>
	<item>
		<title>Circle Preloader</title>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_CirclePreloader_2124661331"
			class="flashmovie"
			width="100"
			height="100">
	<param name="movie" value="http://www.simplistika.com/files/CirclePreloader.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.simplistika.com/files/CirclePreloader.swf"
			name="fm_CirclePreloader_2124661331"
			width="100"
			height="100">
	<!--<![endif]-->
		


	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Thought I&#8217;d like to share this nice clean circle preloader. Simply tint to change the color.
Download.
]]></description>
		<link>http://simplistika.com/circle-preloader/</link>
			</item>
	<item>
		<title>CS4 Only: Using AdjustColor()</title>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_AdjustColorExample_1403744402"
			class="flashmovie"
			width="200"
			height="400">
	<param name="movie" value="http://www.simplistika.com/files/AdjustColorExample.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.simplistika.com/files/AdjustColorExample.swf"
			name="fm_AdjustColorExample_1403744402"
			width="200"
			height="400">
	<!--<![endif]-->
		

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Flash 10 only: the AdjustColor class allows you to modify brightness, hue, saturation, and contrast without using a ColorMatrix.
Click here to download the sample files.
]]></description>
		<link>http://simplistika.com/cs4-only-using-adjustcolor/</link>
			</item>
	<item>
		<title>AS3 Convert Number to Word Spelling</title>
		<description><![CDATA[If ever you need a number to word converter.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_NumToWord_72610468"
			class="flashmovie"
			width="350"
			height="280">
	<param name="movie" value="http://www.simplistika.com/files/NumToWord.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.simplistika.com/files/NumToWord.swf"
			name="fm_NumToWord_72610468"
			width="350"
			height="280">
	<!--<![endif]-->
		


	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Click here to download sample.
[via]
]]></description>
		<link>http://simplistika.com/convert-number-to-word-spelling/</link>
			</item>
	<item>
		<title>Adding Parameters to addEventListener</title>
		<description><![CDATA[Here&#8217;s how you can easily add parameters to an event listener in AS3.
stage.addEventListener(MouseEvent.CLICK,
	function(e : MouseEvent) : void
	{
		fMyFunction(e, "hello world")
	},
	false , 0 , false);

function fMyFunction(e : MouseEvent, vMsg:String) : void
{
	trace(vMsg);
}
 Click here to download the sample.
]]></description>
		<link>http://simplistika.com/adding-parameters-to-addeventlistener/</link>
			</item>
	<item>
		<title>AS3 XML Slideshow v1.3</title>
		<description><![CDATA[v1.3

Completely revamped and robust code architecture.
Fixed a bug where certain images weren&#8217;t loading.
Now uses cTween and cXMLHelper
New nav buttons
Smaller file size, now only 10KB

Demo
Here
Download (v1.3)
 Here (23KB)
Feeling Advanced?
Contribute or see how others have extended this slideshow at the Google code repository.

Go PRO
Want more features? Check out the PRO version of this slideshow.
]]></description>
		<link>http://simplistika.com/as3-xml-slideshow-v12/</link>
			</item>
	<item>
		<title>AS3 XML Slideshow PRO 1.0</title>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_XMLSlideshowPRO_1350415248"
			class="flashmovie"
			width="510"
			height="319">
	<param name="movie" value="http://www.simplistika.com/files/ssp/XMLSlideshowPRO.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.simplistika.com/files/ssp/XMLSlideshowPRO.swf"
			name="fm_XMLSlideshowPRO_1350415248"
			width="510"
			height="319">
	<!--<![endif]-->
		


	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Scaled down version. Click here to view full size.
Version 1.0 (18 Feb 2009)
(Flash CS3+ required)
Features:

Compiled file size only 22Kb (varies with embedded fonts)
XML driven playlist (Sample XML file)
Completely customizable including size, fonts, and graphics
Ken burns effect (toggable on or off)
Streamlined, robust and commented code
Toggable caption display
Toggable control display
Priority support [...]]]></description>
		<link>http://simplistika.com/as3-xml-slideshow-pro-10/</link>
			</item>
	<item>
		<title>cTween : Tweening at it&#039;s core.</title>
		<description><![CDATA[

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_cTweenDemo_725778445"
			class="flashmovie"
			width="450"
			height="280">
	<param name="movie" value="http://www.simplistika.com/files/cTweenDemo.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.simplistika.com/files/cTweenDemo.swf"
			name="fm_cTweenDemo_725778445"
			width="450"
			height="280">
	<!--<![endif]-->
		

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Point A to Point B in 2 seconds
cTween.to(mc, {x:400, y:200}, 2);
Call a function when tween is done
cTween.to(mc, {x:200}, 2, doSomething);
Custom easing

import fl.transitions.easing.*;
cTween.to(mc, {alpha:0, y:200, ease:Bounce.easeOut}, 5);
Not another tween engine

Most other tween engines out there are feature packed with stuff, most of it seldom used. All I wanted was [...]]]></description>
		<link>http://simplistika.com/ctween/</link>
			</item>
</channel>
</rss>
