<?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>FlexBlog &#187; Uncategorized</title>
	<atom:link href="http://flexblog.imtiyazbasha.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexblog.imtiyazbasha.com</link>
	<description>the art of coding is how you are designing it !</description>
	<lastBuildDate>Fri, 28 May 2010 17:24:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I&#8217;m Back</title>
		<link>http://flexblog.imtiyazbasha.com/2009/05/im-back/</link>
		<comments>http://flexblog.imtiyazbasha.com/2009/05/im-back/#comments</comments>
		<pubDate>Mon, 11 May 2009 18:32:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Back]]></category>
		<category><![CDATA[NetReflex 2.O]]></category>

		<guid isPermaLink="false">http://flexblog.imtiyazbasha.com/?p=20</guid>
		<description><![CDATA[The sleepless nights, the coding dreams come to the end on 30th April when Guavus NetReflex 2.O has gone successfully to GA. the deadlines are aggressive, but yes I like that taste. It really helps us to measure our caliber.
Currently I am bit busy in BizReflex 1.O but its fine thats not a big issue.
]]></description>
			<content:encoded><![CDATA[<p>The sleepless nights, the coding dreams come to the end on 30th April when Guavus NetReflex 2.O has gone successfully to GA. the deadlines are aggressive, but yes I like that taste. It really helps us to measure our caliber.<br />
Currently I am bit busy in BizReflex 1.O but its fine thats not a big issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://flexblog.imtiyazbasha.com/2009/05/im-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing a static block in Flex or Action Script 3</title>
		<link>http://flexblog.imtiyazbasha.com/2009/01/writing-a-static-block-in-flex-or-action-script-3/</link>
		<comments>http://flexblog.imtiyazbasha.com/2009/01/writing-a-static-block-in-flex-or-action-script-3/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 14:39:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Action script 3]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[static block]]></category>

		<guid isPermaLink="false">http://flexblog.imtiyazbasha.com/?p=5</guid>
		<description><![CDATA[In a single sentence write the code in your class directly, it will goes under static block execution  , sounds simple, Yes it is, typically in java to initialize static variable/ to execute some statments we need to write in this way.
public class myclass{
 static{
 //some statements here
 }
 //some variables declared here
 //some [...]]]></description>
			<content:encoded><![CDATA[<p>In a single sentence write the code in your class directly, it will goes under static block execution <img src='http://flexblog.imtiyazbasha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , sounds simple, Yes it is, typically in java to initialize static variable/ to execute some statments we need to write in this way.</p>
<p><span style="color: #000000;">public class myclass{</span><br />
<span style="color: #000000;"> static{</span><br />
<span style="color: #000000;"> //some statements here</span><br />
<span style="color: #000000;"> }</span><br />
<span style="color: #000000;"> //some variables declared here</span><br />
<span style="color: #000000;"> //some functions defined here</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">Where as in Action Script 3 </span></p>
<p><span style="color: #000000;"> </span><span style="color: #000000;">public class myclass{</span><br />
<span style="color: #000000;"> </span><span style="color: #000000;"> //</span>can write static statements here</p>
<p><span style="color: #000000;"> //some variables declared here</span><br />
<span style="color: #000000;"> //some functions defined here</span><br />
<span style="color: #000000;">}</span></p>
<p>Just see the example code here</p>
<p>package<br />
{<br />
import mx.controls.Alert;</p>
<p>public class Test<br />
{<br />
public static var i:int = 0;<br />
public function Test()<br />
{<br />
trace(&#8220;common what you want test here &#8220;+i);<br />
}<br />
//static block<br />
{<br />
Alert.show(&#8220;Oh yes &#8220;+i);<br />
i+=1;<br />
}</p>
<p>}<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://flexblog.imtiyazbasha.com/2009/01/writing-a-static-block-in-flex-or-action-script-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

