<?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>Flex-Flash-Air-ActionScript-JS &#187; actionscript 3.0</title>
	<atom:link href="http://blog.totusinfo.com/tag/actionscript-3-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.totusinfo.com</link>
	<description>totusinfo team</description>
	<lastBuildDate>Wed, 24 Feb 2010 09:38:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>get Random Number Between using Actionscipt AS3</title>
		<link>http://blog.totusinfo.com/get-random-number-between-using-flash-actionscipt-as3/</link>
		<comments>http://blog.totusinfo.com/get-random-number-between-using-flash-actionscipt-as3/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 05:03:56 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[as]]></category>
		<category><![CDATA[floor]]></category>
		<category><![CDATA[getRand]]></category>
		<category><![CDATA[NumberUtil]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=426</guid>
		<description><![CDATA[The below code shows how to use the class


import druva.NumberUtil;
trace(NumberUtil.getRand(5, 10));

This is the actual class for validation


package druva{
	import flash.display.Sprite;

	public class NumberUtil extends Sprite {
		public function NumberUtil() {
		}

		public static function getRand(min:Number, max:Number):Number {
			return Math.floor(Math.random()*(max+1-min))+min;
		}

	}
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/get-random-number-between-using-flash-actionscipt-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlurFilter for Images using Flash ActionScript</title>
		<link>http://blog.totusinfo.com/blurfilter-for-images/</link>
		<comments>http://blog.totusinfo.com/blurfilter-for-images/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 17:44:00 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[actionscrip 2.0]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[blur filter]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=382</guid>
		<description><![CDATA[
package {

import flash.utils.*;
import flash.display.*;
import flash.net.*;
import flash.geom.*;
import flash.events.*;
import flash.filters.*;

public class DocumentClass_blurfilter extends MovieClip {

private var urlLoader:URLLoader = new URLLoader();
private var mc:MovieClip = new MovieClip();

public function DocumentClass_blurfilter() {
urlLoader.dataFormat = URLLoaderDataFormat.BINARY;
urlLoader.load(new URLRequest('http://www.totusinfo.com/blogsamples/rotary-phone1.jpg'));
urlLoader.addEventListener(Event.COMPLETE, completeHandler);
blurX.addEventListener(Event.CHANGE , onChange);
blurY.addEventListener(Event.CHANGE , onChange);
}

private function completeHandler(event:Event):void {
var loader:Loader = new Loader();
loader.loadBytes(urlLoader.data);

mc.addChild(loader);
addChild(mc);

blurX.value = 10;
blurY.value = 10;

blurX.minimum = 0;
blurY.minimum = 0;

blurX.maximum = 100;
blurY.maximum = 100;

Blur_Filter();
}

private function onChange(e:Event) [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/blurfilter-for-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use URLVariables() in Flash AS3?</title>
		<link>http://blog.totusinfo.com/how-to-use-urlvariables-flash-as3/</link>
		<comments>http://blog.totusinfo.com/how-to-use-urlvariables-flash-as3/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 03:26:49 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[Event.COMPLETE]]></category>
		<category><![CDATA[POST]]></category>
		<category><![CDATA[URLLoader()]]></category>
		<category><![CDATA[URLRequest]]></category>
		<category><![CDATA[URLRequestMethod]]></category>
		<category><![CDATA[URLVariables()]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=262</guid>
		<description><![CDATA[Using URLVariables in Flash or Flex we can send and receive data from server he is the example
This is the PHP Code nested in the server
Create a PHP file and place it in the server

&#60;?php
 $email=$_POST['email'];
 $password=$_POST['password'];

echo &#34;email=&#34;.$_POST['email'].&#34;&#38;amp;password=&#34;.$password;
?&#62;

Here is the code in Flash/Flex

//create URLRequest instace withe the target URL
var request:URLRequest = new URLRequest(&#34;http://www.example.com/data.php&#34;);

//create instance of [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/how-to-use-urlvariables-flash-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Text Effects in Flash and AS3 (Actionscript 3.0)</title>
		<link>http://blog.totusinfo.com/flash-text-effects-as3/</link>
		<comments>http://blog.totusinfo.com/flash-text-effects-as3/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 20:45:00 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[Text]]></category>
		<category><![CDATA[TextEffects]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[TextInput]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=722</guid>
		<description><![CDATA[Just playing with Text and this is my first version of text effects










sample 0.1
]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flash-text-effects-as3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create Rounded Corners Rectangle with Actionscript 3.0 &#8211; AS3</title>
		<link>http://blog.totusinfo.com/rectangle-rounded-corners-as3-actionscript/</link>
		<comments>http://blog.totusinfo.com/rectangle-rounded-corners-as3-actionscript/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 13:14:53 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[beginFill]]></category>
		<category><![CDATA[drawRoundRect]]></category>
		<category><![CDATA[endFill]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Rectangle]]></category>
		<category><![CDATA[Shape]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=348</guid>
		<description><![CDATA[Rounded Corner Rectangle

import flash.display.*;

function round_rectangle(){

var shape:Shape = new Shape();
addChild(shape);

shape.graphics.beginFill(0xFF0000FF, 1.0);

shape.graphics.drawRoundRect(50, 10, 200, 100, 30, 30);

shape.graphics.endFill();
}

round_rectangle();












]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/rectangle-rounded-corners-as3-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Draw a Square with Flash Actionscript 3.0 &#8211; AS3</title>
		<link>http://blog.totusinfo.com/draw-square-flash-actionscript3-as3/</link>
		<comments>http://blog.totusinfo.com/draw-square-flash-actionscript3-as3/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 18:03:07 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[drawRect]]></category>
		<category><![CDATA[extends]]></category>
		<category><![CDATA[lineStyle]]></category>
		<category><![CDATA[Shape]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=388</guid>
		<description><![CDATA[simple Example to draw square using flash actionscript
this example show how to use lineStyle, drawRect, Shape
package druva {
import flash.display.*;
public class drawSquare extends Sprite {
public function drawSquare() {
var canvas:Shape = new Shape(  );
canvas.graphics.lineStyle(3, 0xFF0000);
canvas.graphics.drawRect(10,10,100,100);
addChild(canvas);
}
}
}
]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/draw-square-flash-actionscript3-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
