<?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; AIR</title>
	<atom:link href="http://blog.totusinfo.com/category/air/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>list of flex testing frameworks</title>
		<link>http://blog.totusinfo.com/list-of-flex-testing-frameworks/</link>
		<comments>http://blog.totusinfo.com/list-of-flex-testing-frameworks/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 15:47:25 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=953</guid>
		<description><![CDATA[This is the list of flex testing frameworks Which I came Across
    FlexUnit (Adobe Open Source)
    FlexPMD (Adobe Technical Services)
    Funit (Open Source)
    asUnit (Open Source)
    fluint (Open Source)
    FlexMonkey (Open Source)
    Selenium (Open [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/list-of-flex-testing-frameworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CS4 TextElement TextBlock FontDescription TextBlock TextLine</title>
		<link>http://blog.totusinfo.com/flashcs4-textelement-textblock-fontdescription-textblock-textline/</link>
		<comments>http://blog.totusinfo.com/flashcs4-textelement-textblock-fontdescription-textblock-textline/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:48:34 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[createTextLine]]></category>
		<category><![CDATA[ElementFormat]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[FontDescription]]></category>
		<category><![CDATA[fontSize]]></category>
		<category><![CDATA[rotationY]]></category>
		<category><![CDATA[Sprite]]></category>
		<category><![CDATA[Text]]></category>
		<category><![CDATA[text engine]]></category>
		<category><![CDATA[TextBlock]]></category>
		<category><![CDATA[TextElement]]></category>
		<category><![CDATA[TextLine]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=800</guid>
		<description><![CDATA[This code show how to use TextElement, TextBlock, FontDescription, TextBlock, TextLine

package druva{
import flash.display.Sprite;
import flash.text.engine.*;

public class TextTest extends Sprite {

public function TextTest() {

for (var j:int=0; j&#60;=10; j++) {
var myString:String=&#34;Druva&#34;;
var myFormat:ElementFormat = new ElementFormat();

var myFontDesc:FontDescription=new FontDescription('Georgia','normal','italic','device');
myFormat.fontSize=2+2*j;
myFormat.fontDescription=myFontDesc;
myFormat.color = Math.random() * 0xFFFFEE;

var textElement:TextElement=new TextElement(myString, myFormat);
var textBlock:TextBlock = new TextBlock();
textBlock.content=textElement;

var myTextLine:TextLine=textBlock.createTextLine(null,300);

myTextLine.x = 30+(3*(j*(j+1)/2));
myTextLine.y = 150;

addChild(myTextLine);
myTextLine.addEventListener(Event.ENTER_FRAME, onLoop);
}

}
import flash.events.*;
private function onLoop(e:Event) {
e.currentTarget.rotationY [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flashcs4-textelement-textblock-fontdescription-textblock-textline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Background Image for AIR Application</title>
		<link>http://blog.totusinfo.com/background-image-air-application/</link>
		<comments>http://blog.totusinfo.com/background-image-air-application/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 16:23:59 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[MXML]]></category>
		<category><![CDATA[backgroundColor]]></category>
		<category><![CDATA[backgroundImage]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[verticalAlign]]></category>
		<category><![CDATA[WindowedApplication]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=766</guid>
		<description><![CDATA[background image for AIR application


&#38;lt;?xml version=&#38;quot;1.0&#38;quot; encoding=&#38;quot;utf-8&#38;quot;?&#38;gt;
&#38;lt;mx:WindowedApplication name=&#38;quot;WindowedApplication_backgroundImage_test&#38;quot;
        xmlns:mx=&#38;quot;http://www.adobe.com/2006/mxml&#38;quot; layout=&#38;quot;vertical&#38;quot; verticalAlign=&#38;quot;middle&#38;quot;&#38;gt;

    &#38;lt;mx:Style&#38;gt;
        WindowedApplication {
            backgroundColor: white;
            [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/background-image-air-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
