<?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; TextFieldAutoSize</title>
	<atom:link href="http://blog.totusinfo.com/tag/textfieldautosize/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>How to Convert TextField to Bitmap using Flash and AS3</title>
		<link>http://blog.totusinfo.com/convert-textfield-to-bitmap-flash-as3/</link>
		<comments>http://blog.totusinfo.com/convert-textfield-to-bitmap-flash-as3/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 03:15:18 +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[as2]]></category>
		<category><![CDATA[AutoSize]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[BitmapData]]></category>
		<category><![CDATA[BitmapUtils]]></category>
		<category><![CDATA[smoothing]]></category>
		<category><![CDATA[Sprite]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[TextFieldAutoSize]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=678</guid>
		<description><![CDATA[Convert TextField to Bitmap

package {
	import flash.display.*;
	import flash.display.BitmapData;
	import flash.display.Sprite;
	import flash.text.TextField;
	import flash.text.TextFormat;
	import flash.text.TextFieldAutoSize;

	public class BitmapUtils extends Sprite {
		public function BitmapUtils() {
			addChild(tf2bm('Druva'));
		}
		public function tf2bm(str:String) {
			var fmt:TextFormat;
			var bmd:BitmapData;
			var bm:Bitmap;
			var tf:TextField;

			fmt = new TextFormat();
			fmt.font='Verdana';
			fmt.size=30;

			tf = new TextField();
			tf.text=str;
			tf.setTextFormat(fmt);
			tf.autoSize=TextFieldAutoSize.LEFT;
			bmd=new BitmapData(tf.width,tf.height,true,0);
			bmd.draw(tf);
			bm=new Bitmap(bmd);
			bm.smoothing=true;
			return bm
		}
	}
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/convert-textfield-to-bitmap-flash-as3/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>
	</channel>
</rss>
