<?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; width</title>
	<atom:link href="http://blog.totusinfo.com/tag/width/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>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>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>flash set Max Height and Max Width</title>
		<link>http://blog.totusinfo.com/flash-set-max-height-and-max-width/</link>
		<comments>http://blog.totusinfo.com/flash-set-max-height-and-max-width/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 18:47:58 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[MaxHeight]]></category>
		<category><![CDATA[MinHeight]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=664</guid>
		<description><![CDATA[set Max Height and Max Width

function setMaxSizes(obj:*, maxWidth:Number, maxHeight:Number):void {
	if (obj.height &#62; obj.width) {
		obj.width = (maxHeight * obj.width) / obj.height;
		obj.height = maxHeight;
	} else if (obj.width&#62;obj.height) {
		obj.height = (maxWidth * obj.height) / obj.width;
		obj.width = maxWidth;
	} else {
		obj.width = maxWidth;
		obj.height = maxHeight;
	}
	return;
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flash-set-max-height-and-max-width/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
