<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Flexair - Mayur Rami &#187; Flex 3</title>
	<atom:link href="http://mprami.wordpress.com/tag/flex-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://mprami.wordpress.com</link>
	<description>Flex in AIR</description>
	<lastBuildDate>Sun, 31 Jan 2010 04:43:28 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='mprami.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/fab0104772a98c923521c060c9f7a690?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Flexair - Mayur Rami &#187; Flex 3</title>
		<link>http://mprami.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mprami.wordpress.com/osd.xml" title="Flexair &#8211; Mayur Rami" />
	<atom:link rel='hub' href='http://mprami.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Flex : Cotainer class &#8211; backgroundAttachment</title>
		<link>http://mprami.wordpress.com/2008/10/04/flex-cotainer-class-backgroundattachment/</link>
		<comments>http://mprami.wordpress.com/2008/10/04/flex-cotainer-class-backgroundattachment/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:25:47 +0000</pubDate>
		<dc:creator>Mayur Rami</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://mprami.wordpress.com/?p=68</guid>
		<description><![CDATA[Note : Same post as previous one.
Folks,
Today, I come to know another one Gem of Flex.
A need arise in my one project, while my development,
I have to create same functionality as done in HTML.
i.e. HTML &#8211; Body tag we provide backGround image with size ” fixed “.
&#60;body style=”background:url(images/background.png) fixed”&#62;
So, when ever we scroll the contents,
the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=68&subd=mprami&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration:line-through;"><strong>Note : Same post as previous one.</strong></span></p>
<p>Folks,</p>
<p>Today, I come to know another one Gem of Flex.</p>
<p>A need arise in my one project, while my development,</p>
<p>I have to create same functionality as done in HTML.</p>
<p>i.e. HTML &#8211; Body tag we provide backGround image with size ” fixed “.</p>
<p>&lt;body style=”background:url(images/background.png) fixed”&gt;</p>
<p class="MsoNormal">So, when ever we scroll the contents,</p>
<p class="MsoNormal">the background image will not be scrolling, only contents will scroll.</p>
<p class="MsoNormal">Same type functionality, I need to achieve in flex.</p>
<p class="MsoNormal">So I dwell deep into <strong>Flex</strong> frame work and got one more Pearl…!!! Oh, that’s consistent.</p>
<p class="MsoNormal">That’s why I like flex more than oteher tech.</p>
<p class="MsoNormal">This time, the pearl is, style property : backgroundAttachment</p>
<p class="MsoNormal">The ” <strong>backgroundAttachment</strong><strong><em> </em></strong>” is of <strong><em>mx.core.Container</em></strong> class style property.</p>
<p class="MsoNormal"><span id="more-68"></span></p>
<p class="MsoNormal">If a background image is specified, this style specifies</p>
<p class="MsoNormal">whether it is fixed with regard to the viewport (&lt;code&gt;”fixed”&lt;/code&gt;)</p>
<p class="MsoNormal">or scrolls along with the content (&lt;code&gt;”scroll”&lt;/code&gt;).</p>
<p class="MsoNormal"><em>[Style(name="backgroundAttachment", type="String", inherit="no")]</em></p>
<p class="MsoNormal">My sample is as below :</p>
<p class="MsoNormal">I have shown an exmple with two VBox all propertis and contets are same.</p>
<p class="MsoNormal">Except one propety :</p>
<p class="MsoNormal"><strong><em>backgroundAttachment</em><em>=”<em>scroll</em>“</em></strong></p>
<p class="MsoNormal"><strong><em>backgroundAttachment</em><em>=”fiexed”</em></strong></p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">the code is as below</p>
<p class="MsoNormal">
<pre class="brush: xml;">

&lt;?xml version=&quot;1.0&quot;
encoding=&quot;utf-8&quot;?&gt;

&lt;mx:Application
xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; layout=&quot;absolute&quot;

&lt;span&gt;            &lt;/span&gt;pageTitle=&quot;Mayur
: BG Experiment&quot;

&lt;span&gt;            &lt;/span&gt;width=&quot;550&quot;
height=&quot;330&quot;

&lt;span&gt;            &lt;/span&gt;backgroundImage=&quot;assets/main_gradient.png&quot;&gt;

&lt;span&gt;            &lt;/span&gt;&lt;mx:VBox
width=&quot;160&quot; height=&quot;170&quot; verticalGap=&quot;10&quot;

&lt;span&gt;                        &lt;/span&gt;x=&quot;52&quot;
y=&quot;104&quot;

&lt;span&gt;                        &lt;/span&gt;paddingLeft=&quot;5&quot;

&lt;span&gt;                        &lt;/span&gt;themeColor=&quot;haloBlue&quot;

&lt;span&gt;                        &lt;/span&gt;borderStyle=&quot;solid&quot;
borderThickness=&quot;2&quot;

&lt;span&gt;                        &lt;/span&gt;toolTip=&quot;Scroll
- default value&quot;

&lt;span&gt;                        &lt;/span&gt;backgroundImage=&quot;assets/main_bg.png&quot;

&lt;span&gt;                        &lt;/span&gt;backgroundAttachment=&quot;scroll&quot;&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 1&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 2&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 3&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 4&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 5&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 6&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 7&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 8&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 9&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 10&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 11&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 12&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 13&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 14&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 15&quot; /&gt;

&lt;span&gt;            &lt;/span&gt;&lt;/mx:VBox&gt;

&lt;span&gt;            &lt;/span&gt;&lt;mx:VBox
width=&quot;160&quot; height=&quot;170&quot; verticalGap=&quot;10&quot;

&lt;span&gt;                        &lt;/span&gt;x=&quot;334&quot;
y=&quot;104&quot;

&lt;span&gt;                        &lt;/span&gt;paddingLeft=&quot;5&quot;

&lt;span&gt;                        &lt;/span&gt;themeColor=&quot;haloBlue&quot;

&lt;span&gt;                        &lt;/span&gt;borderStyle=&quot;solid&quot;
borderThickness=&quot;2&quot;

&lt;span&gt;                        &lt;/span&gt;toolTip=&quot;fixed
- changed value&quot;

&lt;span&gt;                        &lt;/span&gt;backgroundImage=&quot;assets/main_bg.png&quot;

&lt;span&gt;                        &lt;/span&gt;backgroundAttachment=&quot;fixed&quot;&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 1&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 2&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 3&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 4&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 5&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 6&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 7&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 8&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 9&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 10&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 11&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 12&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 13&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 14&quot; /&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:Text
text=&quot;One Long line 15&quot; /&gt;

&lt;span&gt;            &lt;/span&gt;&lt;/mx:VBox&gt;

&lt;span&gt;            &lt;/span&gt;&lt;mx:Grid
x=&quot;52&quot; y=&quot;54&quot; width=&quot;440&quot; &gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:GridRow
width=&quot;100%&quot; height=&quot;100%&quot;&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;mx:GridItem
width=&quot;100%&quot; height=&quot;100%&quot;

&lt;span&gt;                                                &lt;/span&gt;borderStyle=&quot;solid&quot;
borderThickness=&quot;1&quot;&gt;

&lt;span&gt;                                                &lt;/span&gt;&lt;mx:Label
text=&quot;backgroundImage=&amp;quot;main_bg.png&amp;quot;&quot;
width=&quot;205&quot;/&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;/mx:GridItem&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;mx:GridItem
width=&quot;100%&quot; height=&quot;100%&quot;

&lt;span&gt;                                                &lt;/span&gt;borderStyle=&quot;solid&quot;
borderThickness=&quot;1&quot;&gt;

&lt;span&gt;                                                &lt;/span&gt;&lt;mx:Label
text=&quot;backgroundImage=&amp;quot;main_bg.png&amp;quot;&quot;
width=&quot;100%&quot;/&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;/mx:GridItem&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;/mx:GridRow&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;mx:GridRow
width=&quot;100%&quot; height=&quot;100%&quot;&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;mx:GridItem
width=&quot;100%&quot; height=&quot;100%&quot;

&lt;span&gt;                                                &lt;/span&gt;borderStyle=&quot;solid&quot;
borderThickness=&quot;1&quot;&gt;

&lt;span&gt;                                                &lt;/span&gt;&lt;mx:Label
text=&quot;backgroundAttachment=&amp;quot;scroll&amp;quot;&quot;
width=&quot;205&quot;/&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;/mx:GridItem&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;mx:GridItem
width=&quot;100%&quot; height=&quot;100%&quot;

&lt;span&gt;                                                &lt;/span&gt;borderStyle=&quot;solid&quot;
borderThickness=&quot;1&quot;&gt;

&lt;span&gt;                                                &lt;/span&gt;&lt;mx:Label
text=&quot;backgroundAttachment=&amp;quot;fixed&amp;quot;&quot;
width=&quot;100%&quot;/&gt;

&lt;span&gt;                                    &lt;/span&gt;&lt;/mx:GridItem&gt;

&lt;span&gt;                        &lt;/span&gt;&lt;/mx:GridRow&gt;

&lt;span&gt;            &lt;/span&gt;&lt;/mx:Grid&gt;

&lt;span&gt;            &lt;/span&gt;&lt;mx:Label
x=&quot;20&quot; y=&quot;25&quot;

&lt;span&gt;                        &lt;/span&gt;text=&quot;mx.core.Container-[Style(name=&amp;quot;backgroundAttachment&amp;quot;,
type=&amp;quot;String&amp;quot;, inherit=&amp;quot;no&amp;quot;)]&quot;

&lt;span&gt;                        &lt;/span&gt;width=&quot;500&quot;/&gt;

&lt;/mx:Application&gt;
</pre>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">Please let me know your views / comments.</p>
<p class="MsoNormal">Happy Felxing . . . <!--[if gte vml 1]&gt;                    &lt;![endif]--><!--[if !vml]--><img class="wp-smiley" src="/DOCUME~1/dvlp089/LOCALS~1/Temp/msohtml1/01/clip_image001.gif" alt=")" width="15" height="15" /><!--[endif]--></p>
<br />Posted in Actionscript 3, Flex 3 Tagged: Actionscript 3, Flex 3 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mprami.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mprami.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mprami.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mprami.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mprami.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mprami.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mprami.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mprami.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mprami.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mprami.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=68&subd=mprami&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://mprami.wordpress.com/2008/10/04/flex-cotainer-class-backgroundattachment/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8776ffcdfc21e74f86e61c0955639a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mayur Rami</media:title>
		</media:content>

		<media:content url="/DOCUME~1/dvlp089/LOCALS~1/Temp/msohtml1/01/clip_image001.gif" medium="image">
			<media:title type="html">)</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex Video Tutorials</title>
		<link>http://mprami.wordpress.com/2008/07/29/flex-video-tutorials/</link>
		<comments>http://mprami.wordpress.com/2008/07/29/flex-video-tutorials/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 17:19:42 +0000</pubDate>
		<dc:creator>Mayur Rami</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://mprami.wordpress.com/?p=49</guid>
		<description><![CDATA[Folks,
Be happy, Adobe has announced an entire week for Flex Video Tutorials.
There are some exercises too given, to dirty your hands with and to brighten your skills.
Initially first Three days videos are listed. Schedule for other days will be declared later on.
So, Enjoy Flexing&#8230;  
Mayur Rami
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=49&subd=mprami&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Folks,</p>
<p>Be happy, Adobe has announced an entire week for <a title="Flex Video Tutorials" href="http://www.adobe.com/devnet/flex/videotraining/" target="_blank">Flex Video Tutorials</a>.</p>
<p>There are some exercises too given, to dirty your hands with and to brighten your skills.</p>
<p>Initially first Three days videos are listed. Schedule for other days will be declared later on.</p>
<p>So, Enjoy Flexing&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Mayur Rami</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mprami.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mprami.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mprami.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mprami.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mprami.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mprami.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mprami.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mprami.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mprami.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mprami.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mprami.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mprami.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=49&subd=mprami&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://mprami.wordpress.com/2008/07/29/flex-video-tutorials/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8776ffcdfc21e74f86e61c0955639a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mayur Rami</media:title>
		</media:content>
	</item>
		<item>
		<title>Solve Flex Bugs and get Flex Books : Amazing</title>
		<link>http://mprami.wordpress.com/2008/07/02/solve-flex-bugs-and-get-flex-books-amazing/</link>
		<comments>http://mprami.wordpress.com/2008/07/02/solve-flex-bugs-and-get-flex-books-amazing/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 07:27:32 +0000</pubDate>
		<dc:creator>Mayur Rami</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Flex framework]]></category>

		<guid isPermaLink="false">http://mprami.wordpress.com/?p=48</guid>
		<description><![CDATA[Flex is really going Innovative ways.
Now you can be a, Flex 3 Contributor.  Solve 3 Bugs from Flex Bugs list JIRA and you will get a Flex Book of your wish from Amazon by Adobe Flex Team. Isn&#8217;t it amazing&#8230;!!
This is rally a very innovative way to make community more aware and to understand the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=48&subd=mprami&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Flex is really going Innovative ways.</p>
<p>Now you can be a, <a title="Flex 3 contribution" href="http://opensource.adobe.com/wiki/display/flexsdk/Flex+3+Contributions" target="_blank">Flex 3 Contributor</a>.  Solve 3 Bugs from Flex Bugs list <a title="Flex Bugs - JIRA" href="http://bugs.adobe.com/flex/" target="_blank">JIRA</a> and you will get a Flex Book of your wish from Amazon by Adobe Flex Team. Isn&#8217;t it amazing&#8230;!!</p>
<p>This is rally a very innovative way to make community more aware and to understand the details of the SDK of Flex 3 (Flex frame work) with ActionScrpt 3, as well as AIR.</p>
<p>Even you can get MAX 2008 registration.</p>
<p><a href="http://opensource.adobe.com/wiki/display/flexsdk/Flex+3+Contributions" target="_blank">For the first two contributors to have 10 patches committed, we&#8217;ll pay for your MAX 2008 registration (any region).</a></p>
<p>One more thing which like, too is :</p>
<h3>Incentive Program Rules (subject to adjustment at any time)</h3>
<ul>
<li>You must follow our <a title="Coding Conventions" href="http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions" target="_blank">Coding Conventions</a></li>
<li>You must be a citizen of Earth (no proof required)</li>
<li>You must be helpful in providing book options in your wish list that won&#8217;t get the Flex team fired if we buy it</li>
<li>You must not deluge the system with silly bugs in an attempt to provide fixes</li>
</ul>
<p>Flex is in real mean an Open Source.</p>
<p>Enjoy flexing . . .</p>
<p>Mayur Rami <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mprami.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mprami.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mprami.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mprami.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mprami.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mprami.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mprami.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mprami.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mprami.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mprami.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mprami.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mprami.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=48&subd=mprami&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://mprami.wordpress.com/2008/07/02/solve-flex-bugs-and-get-flex-books-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8776ffcdfc21e74f86e61c0955639a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mayur Rami</media:title>
		</media:content>
	</item>
		<item>
		<title>Close PopUps, TitleWindow, Panel etc by clicking the modal in Flex</title>
		<link>http://mprami.wordpress.com/2008/07/01/close-popups-titlewindow-panel-etc-by-clicking-the-modal-in-flex/</link>
		<comments>http://mprami.wordpress.com/2008/07/01/close-popups-titlewindow-panel-etc-by-clicking-the-modal-in-flex/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 09:20:11 +0000</pubDate>
		<dc:creator>Mayur Rami</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Alert]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 2]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Modal]]></category>
		<category><![CDATA[Popup]]></category>

		<guid isPermaLink="false">http://mprami.wordpress.com/?p=47</guid>
		<description><![CDATA[I got one query, how to close Popups ( TitleWindow, Panel etc. ) just by clicking on Modal.
A functionality which we found in HTML / Javascript based modal (with lightbox ), some thing we can see now a days in Yahoo Mails, when we see images  attached in our mails.
See, Modal is actually a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=47&subd=mprami&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I got one query, how to close Popups ( TitleWindow, Panel etc. ) just by clicking on Modal.</p>
<p>A functionality which we found in HTML / Javascript based modal (with lightbox ), some thing we can see now a days in Yahoo Mails, when we see images  attached in our mails.</p>
<p>See, Modal is actually a FlexSprite instance in Flex frame work (same as well for AIR ). The Modal is created by SystemManager in Flex.</p>
<p>So, if we want to just close ( or to perform any business logic ), it is very easy,  just listen for an Event.</p>
<p>The event is : &#8216; mouseDownOutside &#8216; .<br />
A simple example is as below&#8230;<br />
There are two files : 1) ModalTitleWindow.mxml      2) ModalClose.mxml</p>
<p><span id="more-47"></span></p>
<pre class="brush: xml;">

&lt;!--  ModalTitleWindow.mxml --&gt;

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;

&lt;mx:TitleWindow xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
      layout=&quot;absolute&quot; width=&quot;400&quot; height=&quot;300&quot; showCloseButton=&quot;true&quot;
      close=&quot;PopUpManager.removePopUp(this)&quot;
      mouseDownOutside=&quot;PopUpManager.removePopUp(this)&quot;&gt;

&lt;mx:Script&gt;
  &lt;![CDATA[
           import mx.managers.PopUpManager;
  ]]&gt;
&lt;/mx:Script&gt;
            &lt;mx:Text text=&quot;Click, on Modal to close this PopUp.&quot;  /&gt;
&lt;/mx:TitleWindow&gt;

&lt;!--
    Now Main Application File
    ModalClose.mxml
--&gt;

&lt;mx:Application
   xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
   layout=&quot;absolute&quot;
   backgroundGradientColors=&quot;{[0xabcdef, 0x123456]}&quot;
   xmlns:tempAlert=&quot;tempAlert.*&quot;
   creationComplete=&quot;onCreationComplete()&quot;&gt;

&lt;mx:Script&gt;

  &lt;![CDATA[
       import mx.managers.PopUpManager;
      private function onCreationComplete():void
     {
        PopUpManager.centerPopUp(PopUpManager.createPopUp(this,ModalTitleWindow,false));
     }
  ]]&gt;

&lt;/mx:Script&gt;

&lt;/mx:Application&gt;
</pre>
<p>This same even useful for AIR, too.</p>
<p>Due to this kind of ease, I really love Actionscript 3.<br />
Try this and fell free to know me your comments.</p>
<p>Enjoy Flexing  . . .</p>
<p>Mayur Rami <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mprami.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mprami.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mprami.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mprami.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mprami.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mprami.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mprami.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mprami.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mprami.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mprami.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mprami.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mprami.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=47&subd=mprami&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://mprami.wordpress.com/2008/07/01/close-popups-titlewindow-panel-etc-by-clicking-the-modal-in-flex/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8776ffcdfc21e74f86e61c0955639a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mayur Rami</media:title>
		</media:content>
	</item>
		<item>
		<title>AIR SDK settings for ADT &amp; ADL</title>
		<link>http://mprami.wordpress.com/2008/05/02/air-sdk-settings-for-adt-adl/</link>
		<comments>http://mprami.wordpress.com/2008/05/02/air-sdk-settings-for-adt-adl/#comments</comments>
		<pubDate>Fri, 02 May 2008 08:33:41 +0000</pubDate>
		<dc:creator>Mayur Rami</dc:creator>
				<category><![CDATA[ADL]]></category>
		<category><![CDATA[ADT]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[AIR SDK]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://mprami.wordpress.com/?p=34</guid>
		<description><![CDATA[We all know that AIR based applications run in two different flavors

swf
html

As a flex developer, I generally use FlexBuilder IDE to create Flex based AIR applications.
But few days back I did some experiment and try to develop an AIR base application through
pure HTML and JavaScript combination.
Though Flex and Acitonscript are my pet technologies but this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=34&subd=mprami&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">We all know that AIR based applications run in two different flavors</p>
<ol type="1">
<li class="MsoNormal">swf</li>
<li class="MsoNormal">html</li>
</ol>
<p class="MsoNormal">As a flex developer, I generally use FlexBuilder IDE to create Flex based AIR applications.<br />
But few days back I did some experiment and try to develop an AIR base application through<br />
pure HTML and JavaScript combination.</p>
<p>Though Flex and Acitonscript are my pet technologies but this time I tried a different combination.</p>
<p>To run AIR Applications two command line tools available.</p>
<ol type="1">
<li class="MsoNormal">adt</li>
<li class="MsoNormal">adl</li>
</ol>
<p class="MsoNormal">The <strong>ADT </strong>tool is used to create packaged Installer of application ( which need to be installed first to work on application. ) and</p>
<p>The <strong>ADL</strong> tool is used to launch AIR application without installing it. ( This tool is mainly useful while developing the application. )</p>
<p>So, will have to configure these tools first and it&#8217;s very simple ( It remembers me of my initial days as a Java Programmer, in those day, we had to configure java / javac commads for compilation and run ). Let&#8217;s go&#8230;</p>
<p><em><span style="font-size:10pt;">Note : The steps are for Windows platform.</span></em></p>
<ol type="1">
<li class="MsoNormal">You can download from <a title="AIR sdk" href="http://www.adobe.com/go/getairsdk" target="_blank">AIR SDK</a> or <a href="http://www.adobe.com/go/getair" target="_blank">here</a></li>
<li class="MsoNormal">Unzip the .zip file and save      it on your disk. ( we will refer this path as [SDK_PATH] e.g.      c:\airsdk_v1).</li>
<li class="MsoNormal">The point is, you should have      at least the following three directories: /bin, /lib      and /runtime. (By default they are in same .zip file and you      need not to copy/paste them at one place.</li>
</ol>
<p class="MsoNormal" style="margin-left:0.5in;"><span style="color:#cc0000;"> </span><span style="color:#3333ff;">But for, those user who, already, have Flex 3 SDK and if they want to set this &#8212; without download the separate .zip file. Then just copy these three directories i.e. &#8216;bin&#8217;, &#8216; lib&#8217; and &#8216;runtime&#8217; copy and paste them in a one single directory so as they maintain their corresponding relative path</span><span style="color:#cc0000;">.</span></p>
<p class="MsoNormal" style="margin-left:0.5in;">) The ADL and ADT command-line tools are located in the bin directory.</p>
<ol type="1">
<li class="MsoNormal">Now, we have to just set the      system &#8216; PATH &#8216; to execute the commandline application from anywhere on      the system
<ol type="1">
<li class="MsoNormal">Open the System       Properties dialog box and click the Advanced tab. You can find this in       the System<br />
settings in the Control Panel.</li>
<li class="MsoNormal">Click the Environment       Variables button.</li>
<li class="MsoNormal">Select the PATH entry       and then click the Edit button. Add the path to the bin directory to the       end of the<br />
current variable value, separating it from previous values with a       semicolon:<br />
; [SDK_PATH]/bin</li>
<li class="MsoNormal">Click OK to       close the panels.</li>
</ol>
</li>
</ol>
<p class="MsoNormal">To test the installation, open a new Windows command prompt (Start -&gt;  Run -&gt; command), and type <strong><em>adt</em></strong>.<br />
<strong><em><br />
and if everything is correctly done you will get outcome like :</em></strong></p>
<p><strong><em>usage:<br />
adt -package SIGNING_OPTIONS &lt;air-file&gt; &lt;app-desc&gt; FILE_ARGS<br />
adt -prepare &lt;airi-file&gt; &lt;app-desc&gt; FILE_ARGS<br />
adt -sign SIGNING_OPTIONS &lt;airi-file&gt; &lt;air-file&gt;<br />
adt -checkstore SIGNING_OPTIONS<br />
adt -certificate -cn &lt;name&gt; ( -ou &lt;org-unit&gt; )?<br />
( -o &lt;org-name&gt; )? ( -c &lt;country&gt; )?<br />
&lt;key-type&gt; &lt;pfx-file&gt; &lt;password&gt;<br />
adt -help</em></strong></p>
<p><strong><em>SIGNING_OPTIONS: -storetype &lt;type&gt; ( -keystore &lt;store&gt; )?<br />
( -storepass &lt;pass&gt; )? ( -keypass &lt;pass&gt; )? ( -providerName<br />
&lt;name&gt; )? ( -tsa &lt;url&gt; )?<br />
FILE_ARGS: &lt;fileOrDir&gt;* (( -C &lt;dir&gt; &lt;fileOrDir&gt;+ ) |<br />
( -e &lt;file&gt; &lt;path&gt; ))* -C dir</em></strong></p>
<p>Enjoy AIR   <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mprami.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mprami.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mprami.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mprami.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mprami.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mprami.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mprami.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mprami.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mprami.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mprami.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mprami.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mprami.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mprami.wordpress.com&blog=1320071&post=34&subd=mprami&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://mprami.wordpress.com/2008/05/02/air-sdk-settings-for-adt-adl/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8776ffcdfc21e74f86e61c0955639a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Mayur Rami</media:title>
		</media:content>
	</item>
	</channel>
</rss>