<?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; rotationY</title>
	<atom:link href="http://blog.totusinfo.com/tag/rotationy/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>Flash CS4 TextElement TextBlock FontDescription TextBlock TextLine</title>
		<link>http://blog.totusinfo.com/flashcs4-textelement-textblock-fontdescription-textblock-textline/</link>
		<comments>http://blog.totusinfo.com/flashcs4-textelement-textblock-fontdescription-textblock-textline/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:48:34 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[createTextLine]]></category>
		<category><![CDATA[ElementFormat]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[FontDescription]]></category>
		<category><![CDATA[fontSize]]></category>
		<category><![CDATA[rotationY]]></category>
		<category><![CDATA[Sprite]]></category>
		<category><![CDATA[Text]]></category>
		<category><![CDATA[text engine]]></category>
		<category><![CDATA[TextBlock]]></category>
		<category><![CDATA[TextElement]]></category>
		<category><![CDATA[TextLine]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=800</guid>
		<description><![CDATA[This code show how to use TextElement, TextBlock, FontDescription, TextBlock, TextLine

package druva{
import flash.display.Sprite;
import flash.text.engine.*;

public class TextTest extends Sprite {

public function TextTest() {

for (var j:int=0; j&#60;=10; j++) {
var myString:String=&#34;Druva&#34;;
var myFormat:ElementFormat = new ElementFormat();

var myFontDesc:FontDescription=new FontDescription('Georgia','normal','italic','device');
myFormat.fontSize=2+2*j;
myFormat.fontDescription=myFontDesc;
myFormat.color = Math.random() * 0xFFFFEE;

var textElement:TextElement=new TextElement(myString, myFormat);
var textBlock:TextBlock = new TextBlock();
textBlock.content=textElement;

var myTextLine:TextLine=textBlock.createTextLine(null,300);

myTextLine.x = 30+(3*(j*(j+1)/2));
myTextLine.y = 150;

addChild(myTextLine);
myTextLine.addEventListener(Event.ENTER_FRAME, onLoop);
}

}
import flash.events.*;
private function onLoop(e:Event) {
e.currentTarget.rotationY [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flashcs4-textelement-textblock-fontdescription-textblock-textline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CS4 PerspectiveProjection projectionCenter with action script</title>
		<link>http://blog.totusinfo.com/flash-cs4-perspectiveprojection-projectioncenter-with-action-script/</link>
		<comments>http://blog.totusinfo.com/flash-cs4-perspectiveprojection-projectioncenter-with-action-script/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 18:13:09 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[fieldOfView]]></category>
		<category><![CDATA[PerspectiveProjection]]></category>
		<category><![CDATA[Point]]></category>
		<category><![CDATA[projectionCenter]]></category>
		<category><![CDATA[rotationY]]></category>
		<category><![CDATA[Sprite]]></category>
		<category><![CDATA[tranform]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=805</guid>
		<description><![CDATA[This code show how to use PerspectiveProjection, projectionCenter tranform, point

var img:Bitmap=new Bitmap(new heart(158, 58));
img.x=-158/2;
img.y=-58/2;
var holder:Sprite=new Sprite();
addChild(holder);
holder.x=stage.stageWidth/2;
holder.y=stage.stageHeight/2;
holder.addChild(img);

var pp:PerspectiveProjection=new PerspectiveProjection();
pp.fieldOfView = 120
pp.projectionCenter=new Point(holder.x,holder.y);
holder.transform.perspectiveProjection=pp;

function swingImage(e:Event):void {
	holder.rotationY+=3;
}
this.addEventListener(Event.ENTER_FRAME, swingImage);











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flash-cs4-perspectiveprojection-projectioncenter-with-action-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image rotating in Y direction with tweener using flash actionscript</title>
		<link>http://blog.totusinfo.com/image-rotating-in-y-direction-with-tweener-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/image-rotating-in-y-direction-with-tweener-using-flash-actionscript/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 11:01:57 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[addTween]]></category>
		<category><![CDATA[MouseEvent]]></category>
		<category><![CDATA[rotationX]]></category>
		<category><![CDATA[rotationY]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=793</guid>
		<description><![CDATA[To see the effect please click on the below image


import caurina.transitions.Tweener;

var values:int=0;

heart.addEventListener(MouseEvent.MOUSE_DOWN,rotate);

function rotate(evt:MouseEvent):void
{
	values = values - 1;
	Tweener.addTween(heart,{rotationX:values*0,rotationY:values*180,time:1,transition:&#34;easeInCubic&#34;});
}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/image-rotating-in-y-direction-with-tweener-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image rotating in X direction with tweener using flash actionscript</title>
		<link>http://blog.totusinfo.com/image-rotating-in-x-direction-with-tweener-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/image-rotating-in-x-direction-with-tweener-using-flash-actionscript/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 10:58:03 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[addTween]]></category>
		<category><![CDATA[MouseEvent]]></category>
		<category><![CDATA[rotationX]]></category>
		<category><![CDATA[rotationY]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=790</guid>
		<description><![CDATA[To see the effect please click on the below image


import caurina.transitions.Tweener;

var values:int=0;

heart.addEventListener(MouseEvent.MOUSE_DOWN,rotate);

function rotate(evt:MouseEvent):void
{
	values = values - 1;
	Tweener.addTween(heart,{rotationX:values*180,rotationY:values*0,time:1,transition:&#34;easeInCubic&#34;});
}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/image-rotating-in-x-direction-with-tweener-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image rotating in Y direction using flash actionscript</title>
		<link>http://blog.totusinfo.com/image-rotating-in-y-direction-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/image-rotating-in-y-direction-using-flash-actionscript/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 10:26:20 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[rotationY]]></category>
		<category><![CDATA[target]]></category>

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

heart.addEventListener(Event.ENTER_FRAME,rotateY);

function rotateY(evt:Event):void
{
	evt.target.rotationY = evt.target.rotationY + 2;
}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/image-rotating-in-y-direction-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
