<?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; TextArea</title>
	<atom:link href="http://blog.totusinfo.com/tag/textarea/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>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>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>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>
		<item>
		<title>masked password in textArea with flash actionscript</title>
		<link>http://blog.totusinfo.com/masked-password-in-textarea-with-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/masked-password-in-textarea-with-flash-actionscript/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 10:05:17 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addChild]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[CheckBox]]></category>
		<category><![CDATA[displayAsPassword]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[TextArea]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=568</guid>
		<description><![CDATA[
import fl.controls.CheckBox;
import fl.controls.TextArea;

var cB:CheckBox = new CheckBox();
cB.label = &#34;Display as Password&#34;;
cB.addEventListener(Event.CHANGE, cB_password);
cB.width = 200;
cB.move(10, 5);
addChild(cB);

var tA:TextArea = new TextArea();
tA.displayAsPassword = false;
tA.width = 125;
tA.move(15, 40);
addChild(tA);

function cB_password(evt:Event):void {
    tA.displayAsPassword = cB.selected;
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/masked-password-in-textarea-with-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
