<?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; addChild</title>
	<atom:link href="http://blog.totusinfo.com/tag/addchild/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>using ColorMatrixFilter-Action-Script</title>
		<link>http://blog.totusinfo.com/using-colormatrix-filter-action-scrip/</link>
		<comments>http://blog.totusinfo.com/using-colormatrix-filter-action-scrip/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 11:43:26 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[addChild]]></category>
		<category><![CDATA[ColorMatrixFilter]]></category>
		<category><![CDATA[stage]]></category>
		<category><![CDATA[stageHeight]]></category>
		<category><![CDATA[stageWidth]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=454</guid>
		<description><![CDATA[Import an image into the flash
convert to movieclip
give identifier as sample
and here is the code


var img:sample = new sample();
addChild(img);

img.x = stage.stageWidth/2;
img.y = stage.stageHeight/2;

img.filters = [new ColorMatrixFilter([-1, 0, 0, 0, 255, 0, -1, 0, 0, 255, 0, 0, -1, 0, 255, 0, 0, 0, 1, 0])];











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/using-colormatrix-filter-action-scrip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>draw Ellipse with flash action script</title>
		<link>http://blog.totusinfo.com/draw-ellipse-with-flash-action-script/</link>
		<comments>http://blog.totusinfo.com/draw-ellipse-with-flash-action-script/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 12:26:18 +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[addChild]]></category>
		<category><![CDATA[drawEllipse]]></category>
		<category><![CDATA[lineStyle]]></category>
		<category><![CDATA[Shape]]></category>
		<category><![CDATA[Sprite]]></category>

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

 import flash.display.*;

 public class drawEllipse extends Sprite {

 public function drawEllipse() {
 var canvas:Shape = new Shape(  );
 canvas.graphics.lineStyle(3, 0xFF0000);
 canvas.graphics.drawEllipse(0,0,100,50);
 addChild(canvas);

 }
 }
}












]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/draw-ellipse-with-flash-action-script/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>DataGrid content using DataProvider with flash actionscript</title>
		<link>http://blog.totusinfo.com/datagrid-content-using-dataprovider-with-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/datagrid-content-using-dataprovider-with-flash-actionscript/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 15:40:46 +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[DataProvider]]></category>
		<category><![CDATA[length]]></category>
		<category><![CDATA[rowCount]]></category>

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

import fl.controls.DataGrid;
import fl.data.DataProvider;

var dp:DataProvider = new DataProvider();
dp.addItem({Column1:&#34;Row1 Col1&#34;, Column2:&#34;Row1 Col2&#34;});
dp.addItem({Column1:&#34;Row2 Col1&#34;, Column2:&#34;Row2 Col2&#34;});

var dg:DataGrid = new DataGrid();
dg.addColumn(&#34;Column1&#34;);
dg.addColumn(&#34;Column2&#34;);
dg.rowCount = dp.length;
dg.dataProvider = dp;
dg.width = 200;
dg.move(10, 10);
addChild(dg);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/datagrid-content-using-dataprovider-with-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>add horizontal scroll to the DataGrid using flash actionscript</title>
		<link>http://blog.totusinfo.com/add-horizontal-scroll-to-the-datagrid-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/add-horizontal-scroll-to-the-datagrid-using-flash-actionscript/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 15:22:03 +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[horizontalScrollPolicy]]></category>
		<category><![CDATA[rowCount]]></category>
		<category><![CDATA[ScrollPolicy]]></category>

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

import fl.controls.DataGrid;
import fl.controls.ScrollPolicy; 

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.horizontalScrollPolicy = ScrollPolicy.ON;
dg.width = 100;
dg.rowCount = dg.length;
dg.move(10, 10);
addChild(dg);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/add-horizontal-scroll-to-the-datagrid-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>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>how to use vertical slider in flash</title>
		<link>http://blog.totusinfo.com/how-to-use-vertical-slider-in-flash/</link>
		<comments>http://blog.totusinfo.com/how-to-use-vertical-slider-in-flash/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 07:24:02 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addChild]]></category>
		<category><![CDATA[direction]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[SliderDirection]]></category>
		<category><![CDATA[tickInterval]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=41</guid>
		<description><![CDATA[This examples shows how to have vertical slider


import fl.controls.Slider;
import fl.controls.SliderDirection;

var slider:Slider = new Slider();
slider.direction = SliderDirection.VERTICAL;
slider.tickInterval = 1;
slider.move(20, 20);
slider.height = 90
addChild(slider);

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/how-to-use-vertical-slider-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

