<?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; move</title>
	<atom:link href="http://blog.totusinfo.com/tag/move/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>tick interval in Slider using flash actionscript</title>
		<link>http://blog.totusinfo.com/tick-interval-in-slider-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/tick-interval-in-slider-using-flash-actionscript/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:19:53 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[tickInterval]]></category>

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

var slider:Slider = new Slider();
slider.tickInterval = 2;
slider.move(100, 100);
addChild(slider);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/tick-interval-in-slider-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>resizing DataGrid using flash actionscript</title>
		<link>http://blog.totusinfo.com/resizing-datagrid-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/resizing-datagrid-using-flash-actionscript/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 15:30:18 +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[addColumn]]></category>
		<category><![CDATA[addItem]]></category>
		<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[rowCount]]></category>
		<category><![CDATA[setSize]]></category>
		<category><![CDATA[width]]></category>

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

import fl.controls.DataGrid; 

var dg:DataGrid = new DataGrid();
dg.addColumn(&#34;Column1&#34;);
dg.addColumn(&#34;Column2&#34;);
dg.addItem({Column1:&#34;Row 1 Col 1&#34;, Column2:&#34;Row 1 Col 2&#34;});
dg.addItem({Column1:&#34;Row 2 Col 1&#34;, Column2:&#34;Row 2 Col 2&#34;});

dg.width = 100;
dg.setSize(100,20);
dg.rowCount = dg.length;
dg.move(10, 10);
addChild(dg);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/resizing-datagrid-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>create DataGrid instance using flash actionscript</title>
		<link>http://blog.totusinfo.com/create-datagrid-instance-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/create-datagrid-instance-using-flash-actionscript/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 15:02:46 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addColumn]]></category>
		<category><![CDATA[addItem]]></category>
		<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[length]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[rowCount]]></category>
		<category><![CDATA[width]]></category>

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

import fl.controls.DataGrid; 

var dg:DataGrid = new DataGrid();
dg.addColumn(&#34;Column1&#34;);
dg.addColumn(&#34;Column2&#34;);
dg.addItem({Column1:&#34;Row 1 Col 1&#34;, Column2:&#34;Row 1 Col 2&#34;});
dg.addItem({Column1:&#34;Row 2 Col 1&#34;, Column2:&#34;Row 2 Col 2&#34;});
dg.width = 300;
dg.rowCount = dg.length;
dg.move(10, 10);
addChild(dg);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/create-datagrid-instance-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>to restrict the number of characters in TextInput using flash actionscript</title>
		<link>http://blog.totusinfo.com/574/</link>
		<comments>http://blog.totusinfo.com/574/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 10:20:30 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[maxChars]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[TextInput]]></category>
		<category><![CDATA[width]]></category>

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

var tI:TextInput = new TextInput();
tI.maxChars = 10;
tI.width = 200;
tI.move(10, 10);
addChild(tI);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/574/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>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>scaling images with UILoader using lash actionscript</title>
		<link>http://blog.totusinfo.com/scaling-images-with-uiloader-using-lash-actionscript/</link>
		<comments>http://blog.totusinfo.com/scaling-images-with-uiloader-using-lash-actionscript/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 15:26:29 +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[move]]></category>
		<category><![CDATA[scaleContent]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[UILoader]]></category>

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

import fl.containers.UILoader;

var uiL:UILoader = new UILoader();
uiL.scaleContent = false;
uiL.source = &#34;imagename here&#34;;
uiL.move(10, 10);
addChild(uiL);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/scaling-images-with-uiloader-using-lash-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>
	</channel>
</rss>
