<?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; TextField</title>
	<atom:link href="http://blog.totusinfo.com/tag/textfield/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>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>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>CS4 caretIndex(point position) in textField using action script</title>
		<link>http://blog.totusinfo.com/cs4-caretindexinsertion-point-position-using-action-script/</link>
		<comments>http://blog.totusinfo.com/cs4-caretindexinsertion-point-position-using-action-script/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 11:26:33 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[caretIndex]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[TextInput]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=887</guid>
		<description><![CDATA[The caretIndex means the index of the point(caret) position.


import fl.controls.TextInput;
import fl.controls.Label;

var textfield:TextField = new TextField();
textfield.x = textfield.y = 100;
textfield.width = textfield.height = 100;
textfield.text = &#34;blog.totusinfo.com&#34;;

addChild(textfield);
textfield.addEventListener(MouseEvent.CLICK, caretindex);

function caretindex(event:MouseEvent):void {

	var textfield:TextField = TextField(event.target);

	var myLabel:Label = new Label();
	myLabel.text = &#34;Caret Index&#34;;
	myLabel.x = 10;
	myLabel.y = 10;
	addChild(myLabel);

	var textInput:TextInput = new TextInput();
	textInput.x = 75;
	textInput.y = 10;
	textInput.text = String(textfield.caretIndex);
	addChild(textInput);

}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/cs4-caretindexinsertion-point-position-using-action-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash as3 TextField alpha Tweening</title>
		<link>http://blog.totusinfo.com/flash-as3-textfield-alpha-tweenin/</link>
		<comments>http://blog.totusinfo.com/flash-as3-textfield-alpha-tweenin/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 15:15:29 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[BlendMode]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[Layer]]></category>
		<category><![CDATA[TextField]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=229</guid>
		<description><![CDATA[
var tf:TextField = new TextField();
tf.text = &#34;Hello Hello&#34;;
tf.width = 650;

var format1:TextFormat = new TextFormat();
format1.color = 0xFF0000;
format1.size = 80;

tf.setTextFormat(format1);

addChild(tf);
tf.alpha = .1;



import flash.display.BlendMode;
tf.blendMode = BlendMode.LAYER;

import fl.transitions.Tween;
import fl.transitions.easing.*;
new Tween(tf, &#34;alpha&#34;, Elastic.easeOut, 0, 1, 200, false);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flash-as3-textfield-alpha-tweenin/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>restricting which characters a TextInput can accept using flash actionscript</title>
		<link>http://blog.totusinfo.com/to-restrict-the-characters-in-textarea-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/to-restrict-the-characters-in-textarea-using-flash-actionscript/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 14:33:47 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[restrict]]></category>
		<category><![CDATA[TextArea]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[TextInput]]></category>

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

import fl.controls.TextInput;

function textValid(  ) {
  var field:TextInput = new TextInput(  );
  field.restrict = 'a-z';
  addChild(field);
}

textValid();

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/to-restrict-the-characters-in-textarea-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to know Frame Rate of the stage using cs4 action script</title>
		<link>http://blog.totusinfo.com/how-to-know-frame-rate-of-the-stage-using-cs4-action-script/</link>
		<comments>http://blog.totusinfo.com/how-to-know-frame-rate-of-the-stage-using-cs4-action-script/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 09:32:56 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[frameRate]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[toString]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=895</guid>
		<description><![CDATA[The below code show how to know the frame rate of the stageusing action script.


var t:TextField = new TextField();
t.text = stage.frameRate.toString();
addChild(t);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/how-to-know-frame-rate-of-the-stage-using-cs4-action-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>calling javascript functions using action script</title>
		<link>http://blog.totusinfo.com/calling-javascript-functions-using-action-script/</link>
		<comments>http://blog.totusinfo.com/calling-javascript-functions-using-action-script/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 09:41:33 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[htmlText]]></category>
		<category><![CDATA[TextField]]></category>

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

import flash.display.Sprite;
import flash.text.*;
function callJavascript(){
	var textfield:TextField = new TextField();

	textfield.htmlText = &#34;&#60;a href=\&#34;javascript:void(alert('Refer blog.totusinfo.com for flash examples'));\&#34;&#62;Totusinfo&#60;/a&#62;&#34;;
    addChild(textfield);

}
callJavascript();

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/calling-javascript-functions-using-action-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get System Resoultion using action script</title>
		<link>http://blog.totusinfo.com/get-system-resoultion-using-action-script/</link>
		<comments>http://blog.totusinfo.com/get-system-resoultion-using-action-script/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 16:03:24 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[screenResolutionX]]></category>
		<category><![CDATA[screenResolutionY]]></category>
		<category><![CDATA[system.Capabilities]]></category>
		<category><![CDATA[TextField]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=492</guid>
		<description><![CDATA[See the below example to know your system resolution

package druva.vini {
  import flash.system.Capabilities;
  import flash.net.*;
  import flash.display.*;
  import flash.text.TextField;

  public class SystemCap extends Sprite {

    public function SystemCap(){
        var resX:int = flash.system.Capabilities.screenResolutionX;
        var [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/get-system-resoultion-using-action-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

