<?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; CheckBox</title>
	<atom:link href="http://blog.totusinfo.com/tag/checkbox/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>CS4 condenseWhite in textField using action script</title>
		<link>http://blog.totusinfo.com/cs4-condensewhite-in-textfield-using-action-script/</link>
		<comments>http://blog.totusinfo.com/cs4-condensewhite-in-textfield-using-action-script/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 13:07:56 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[ButtonLabelPlacement]]></category>
		<category><![CDATA[CheckBox]]></category>
		<category><![CDATA[condenseWhite]]></category>
		<category><![CDATA[labelPlacement]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=892</guid>
		<description><![CDATA[The condenseWhite means removing extra spaces and html tags like \n,\t.


import fl.controls.*;

var checkBox:CheckBox = new CheckBox();
checkBox.label = &#34;condenseWhite&#34;;
checkBox.labelPlacement = ButtonLabelPlacement.RIGHT;
checkBox.addEventListener(Event.CHANGE, checkBox_action);
checkBox.move(20,5);
checkBox.width = 150;
addChild(checkBox);

var tf:TextField = new TextField();
tf.x = 20;
tf.y = 30;
tf.width = tf.height = 250;

function checkBox_action(evt:Event):void {
	tf.condenseWhite = checkBox.selected;
	tf.htmlText = &#34;http://   \n\t  blog.totusinfo.com&#34;;

}
addChild(tf);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/cs4-condensewhite-in-textfield-using-action-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>editable and non-editable textinput using flash actionscript</title>
		<link>http://blog.totusinfo.com/disable-and-enable-textinput-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/disable-and-enable-textinput-using-flash-actionscript/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 09:53:45 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[CheckBox]]></category>
		<category><![CDATA[editable]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[TextInput]]></category>

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

var cB:CheckBox = new CheckBox();
cB.label = &#34;Edit Text&#34;;
cB.addEventListener(Event.CHANGE, cB_edit);
cB.move(10, 5);
addChild(cB);

var tI:TextInput = new TextInput();
tI.editable = false;
tI.move(17, 30);
addChild(tI);

function cB_edit(evt:Event):void {
    tI.editable = cB.selected;
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/disable-and-enable-textinput-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>indeterminate progress bar using flash actionscript</title>
		<link>http://blog.totusinfo.com/indeterminate-progress-bar-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/indeterminate-progress-bar-using-flash-actionscript/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 10:36:57 +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[CheckBox]]></category>
		<category><![CDATA[indeterminate]]></category>
		<category><![CDATA[mode]]></category>
		<category><![CDATA[ProgressBar]]></category>

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

var cB:CheckBox = new CheckBox();
cB.label = &#34;indeterminate:&#34;;
cB.move(10, 10);
cB.addEventListener(Event.CHANGE, cB_change);
addChild(cB);

var pB:ProgressBar = new ProgressBar();
pB.mode=&#34;manual&#34;;
pB.indeterminate = cB.selected;
pB.setSize(100, 20);
pB.move(15, 40);
addChild(pB);

function cB_change(evt:Event):void {
    pB.indeterminate = cB.selected;
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/indeterminate-progress-bar-using-flash-actionscript/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>
		<item>
		<title>disable Slider component using flash actionscript</title>
		<link>http://blog.totusinfo.com/disable-slider-component-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/disable-slider-component-using-flash-actionscript/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 09:38:21 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[CheckBox]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=559</guid>
		<description><![CDATA[
import fl.controls.Slider;
import fl.controls.CheckBox;
import flash.display.*;

var checkBox:CheckBox = new CheckBox();
checkBox.label = &#34;enabled&#34;;
checkBox.addEventListener(Event.CHANGE, checkBox_action);
checkBox.move(20,5);
addChild(checkBox);

var slider:Slider = new Slider();
slider.enabled = false;
slider.move(30, 40);
addChild(slider);

function checkBox_action(evt:Event):void {
    slider.enabled = checkBox.selected;
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/disable-slider-component-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>label placement for checkbox using flash actionscript</title>
		<link>http://blog.totusinfo.com/label-placement-for-heckbox-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/label-placement-for-heckbox-using-flash-actionscript/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 10:39:37 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[ButtonLabelPlacement]]></category>
		<category><![CDATA[CheckBox]]></category>
		<category><![CDATA[labelPlacement]]></category>

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

var cB:CheckBox = new CheckBox();
cB.label = &#34;example&#34;;
cB.labelPlacement = ButtonLabelPlacement.LEFT;
cB.move(10, 10);
addChild(cB);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/label-placement-for-heckbox-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

