<?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; Shape</title>
	<atom:link href="http://blog.totusinfo.com/tag/shape/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>draw circle with gradient style using action script</title>
		<link>http://blog.totusinfo.com/draw-circle-with-gradient-style-using-action-script/</link>
		<comments>http://blog.totusinfo.com/draw-circle-with-gradient-style-using-action-script/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 15:12:50 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[drawCircle]]></category>
		<category><![CDATA[GradientType]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[lineGradientStyle]]></category>
		<category><![CDATA[lineStyle]]></category>
		<category><![CDATA[Shape]]></category>

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

var circle:Shape = new Shape();
addChild(circle);
circle.x = circle.y = 150;
circle.graphics.lineStyle(40);

var gradientColors:Array =
	[
		 0xFF0000,
		 0xFFFF00,
		 0xFF00FF,
		 0xFF6600,
		 0x00FFFF,
		 0x2E0854,
		 0x8F5E00,
		 0x8F5E99,
		 0xFFFF00,
		 0xFF00FF,
		 0xFF6600
	];
var gradientAlphas:Array = [1,1,1,1,1,1,1,1,1,1,1];
var gradientRatios:Array = [0,25,50,75,100,125,150,175,200,225,250];

circle.graphics.lineGradientStyle(GradientType.LINEAR, gradientColors, gradientAlphas, gradientRatios);

circle.graphics.drawCircle(-10, -10, 100);         











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/draw-circle-with-gradient-style-using-action-script/feed/</wfw:commentRss>
		<slash:comments>0</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>draw Ellipse with flash action script</title>
		<link>http://blog.totusinfo.com/draw-ellipse-with-flash-action-script/</link>
		<comments>http://blog.totusinfo.com/draw-ellipse-with-flash-action-script/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 12:26:18 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addChild]]></category>
		<category><![CDATA[drawEllipse]]></category>
		<category><![CDATA[lineStyle]]></category>
		<category><![CDATA[Shape]]></category>
		<category><![CDATA[Sprite]]></category>

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

 import flash.display.*;

 public class drawEllipse extends Sprite {

 public function drawEllipse() {
 var canvas:Shape = new Shape(  );
 canvas.graphics.lineStyle(3, 0xFF0000);
 canvas.graphics.drawEllipse(0,0,100,50);
 addChild(canvas);

 }
 }
}












]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/draw-ellipse-with-flash-action-script/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>
		<item>
		<title>How to Draw a Circle with Flash Actionscript 3.0 &#8211;  AS3</title>
		<link>http://blog.totusinfo.com/draw-cirlce-flash-actionscript-as3/</link>
		<comments>http://blog.totusinfo.com/draw-cirlce-flash-actionscript-as3/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 18:14:30 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[drawCircle]]></category>
		<category><![CDATA[lineStyle]]></category>
		<category><![CDATA[Shape]]></category>
		<category><![CDATA[Sprite]]></category>

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

 import flash.display.*;

 public class drawCircle extends Sprite {

 public function drawCircle() {
 var canvas:Shape = new Shape(  );
 canvas.graphics.lineStyle(3, 0xFF0000);
 canvas.graphics.drawCircle(100,100,50);
 addChild(canvas);

 }
 }
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/draw-cirlce-flash-actionscript-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
