<?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; TextFormat</title>
	<atom:link href="http://blog.totusinfo.com/tag/textformat/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 effects with bitmapdata</title>
		<link>http://blog.totusinfo.com/flash-effects-with-bitmapdata-2/</link>
		<comments>http://blog.totusinfo.com/flash-effects-with-bitmapdata-2/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 04:11:51 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[alphaMultiplier]]></category>
		<category><![CDATA[applyFilter]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[BitmapData]]></category>
		<category><![CDATA[BitmapDataChannel]]></category>
		<category><![CDATA[BlendMode]]></category>
		<category><![CDATA[blueMultiplier]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[greenMultiplier]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[setTextFormat]]></category>
		<category><![CDATA[Sprite]]></category>
		<category><![CDATA[TextFieldAutoSize]]></category>
		<category><![CDATA[TextFormat]]></category>
		<category><![CDATA[translate]]></category>

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










]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flash-effects-with-bitmapdata-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rotating device fonts using flash actionscript</title>
		<link>http://blog.totusinfo.com/rotating-device-fonts-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/rotating-device-fonts-using-flash-actionscript/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 11:38:44 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[rotationZ]]></category>
		<category><![CDATA[setTextFormat]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[TextFormat]]></category>

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

package druva{
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFormat;

public class textEffect extends Sprite {

	public function textEffect () {

		for (var i:int = 2; i &#60;= 12; i++) {
			var txt:TextField = new TextField();
			txt.selectable = false;
			txt.width = 400;
			txt.text = &#34;blog.totusinfo.com&#34;;
			txt.setTextFormat(new TextFormat(&#34;Georgia&#34;, 2*i,(2 + 0.35*i) * 0xCCCC00,false,true ));

			txt.x = 4.5*(i*(i+1)/2);
			txt.y = 3*(i*(i+2)/2);
			txt.rotationZ = 20;
			addChild(txt);
		}

	}
}
}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/rotating-device-fonts-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why to use sharpness for textFields in Flash AS3 (Actionscript)</title>
		<link>http://blog.totusinfo.com/why-to-use-sharpness-for-textfields/</link>
		<comments>http://blog.totusinfo.com/why-to-use-sharpness-for-textfields/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 09:04:26 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[defaultTextFormat]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[sharpness]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[TextFieldAutoSize]]></category>
		<category><![CDATA[TextFormat]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=220</guid>
		<description><![CDATA[
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.text.TextFormat;

var labelText:String = 'This is brown fox';

function TextFieldExample() {
 configureLabel(numberText1, -400);
 configureLabel(numberText2, -300);
 configureLabel(numberText3, -200);
 configureLabel(numberText4, -100);
 configureLabel(numberText5, 100);
 configureLabel(numberText6, 200);
 configureLabel(numberText7, 300);
 configureLabel(numberText8, 400);
 configureLabel(numberText9, -100);
}

var _arial_str:String;
var myFont:Font = new Font1();
function configureLabel(targ, shrp:Number):void {
 targ.footer_number.autoSize = TextFieldAutoSize.LEFT;
 targ.footer_number.background = false;
 targ.footer_number.border = false;
 targ.footer_number.sharpness = shrp;

 var format:TextFormat = new [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/why-to-use-sharpness-for-textfields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>custom text format on a TextArea using flash actionscript</title>
		<link>http://blog.totusinfo.com/custom-text-format-on-a-textarea-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/custom-text-format-on-a-textarea-using-flash-actionscript/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 14:38:20 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[bold]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[italic]]></category>
		<category><![CDATA[setStyle]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[TextArea]]></category>
		<category><![CDATA[TextFormat]]></category>

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

import fl.controls.TextArea;

var tF:TextFormat = new TextFormat();
tF.color = 0x0000FF;
tF.italic = true;
tF.bold = true;
tF.font = &#34;Monotype Corsiva&#34;;
tF.size = 15;

var tI:TextArea = new TextArea();
tI.setStyle(&#34;textFormat&#34;, tF);
addChild(tI);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/custom-text-format-on-a-textarea-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>check whether the content is successfully loaded or not with UILoader using flash actionscript</title>
		<link>http://blog.totusinfo.com/check-content-successfully-loaded/</link>
		<comments>http://blog.totusinfo.com/check-content-successfully-loaded/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 15:51:10 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[TextArea]]></category>
		<category><![CDATA[TextFormat]]></category>
		<category><![CDATA[UILoader]]></category>

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

import fl.controls.TextArea;
import fl.containers.UILoader;

var uiL:UILoader = new UILoader();
uiL.addEventListener(IOErrorEvent.IO_ERROR, uiLoader_ioError);
uiL.source = &#34;SOMETHING.jpg&#34;;
addChild(uiL);

function uiLoader_ioError(evt:IOErrorEvent):void {
    var tF:TextFormat = new TextFormat();
    tF.color = 0x0000FF;
    tF.font = &#34;Monotype Corsiva&#34;;
    tF.bold = true;
   tF.size = 14;

   var tA:TextArea = new TextArea();
   tA.setStyle(&#34;textFormat&#34;, tF);
 [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/check-content-successfully-loaded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

