<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>flex on blog - by kumar</title>
	<atom:link href="http://flexonblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexonblog.wordpress.com</link>
	<description></description>
	<pubDate>Thu, 03 Jul 2008 03:51:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>How to Print contents of a Container (Canvas) ?</title>
		<link>http://flexonblog.wordpress.com/2008/07/03/how-to-print-contents-of-a-container-canvas/</link>
		<comments>http://flexonblog.wordpress.com/2008/07/03/how-to-print-contents-of-a-container-canvas/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 03:51:24 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[canvas]]></category>

		<category><![CDATA[container]]></category>

		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=172</guid>
		<description><![CDATA[Here iam having two Two containers (canvas) with my data in it and now I want to print the contents of the canvas as a whole.
Two containers [canvas] à PrintPreviewL,PrintPreviewR
Now I want to print the contents of these containers.
The function which does the print is :
public function doPrint():void
{
// Create a FlexPrintJob instance.
var printJob:FlexPrintJob = new [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here iam having two Two containers (canvas) with my data in it and now I want to print the contents of the canvas as a whole.</p>
<p>Two containers [canvas] à PrintPreviewL,PrintPreviewR<br />
Now I want to print the contents of these containers.</p>
<p><strong>The function which does the print is :</strong></p>
<p><em>public function doPrint():void<br />
{<br />
// Create a FlexPrintJob instance.<br />
var printJob:FlexPrintJob = new FlexPrintJob();</p>
<p>// Start the print job.<br />
if(printJob.start()) {<br />
// Create a PrintView control as a child<br />
// of the current view.<br />
var formPrintViewL:PrintPreviewL = new PrintPreviewL ();<br />
var formPrintViewR: PrintPreviewR = new PrintPreviewR();<br />
addChild(formPrintViewL);<br />
addChild(formPrintViewR);<br />
// Add the SimplePrintview control to the print job.<br />
// For comparison, try setting the<br />
// second parameter to &#8220;none&#8221;.<br />
printJob.addObject(formPrintViewL);<br />
printJob.addObject(formPrintViewR);<br />
// Send the job to the printer.<br />
printJob.send();</p>
<p>// Remove the print-specific control to free memory.<br />
removeChild(formPrintView);<br />
removeChild(formPrintViewT);<br />
}</p>
<p>}</em></p>
<p>This will print the contents of the two canvas in sequence as we send to the printJob.As you can see.</p>
<p>Can go through the classes to learn the Basics and start. All the Best.</p>
<p>Enjoy the code ! :-), leave me comments for queries.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/172/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/172/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=172&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/07/03/how-to-print-contents-of-a-container-canvas/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Using NumberFormatter !</title>
		<link>http://flexonblog.wordpress.com/2008/07/02/using-numberformatter/</link>
		<comments>http://flexonblog.wordpress.com/2008/07/02/using-numberformatter/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 03:25:24 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[class.]]></category>

		<category><![CDATA[NumberFormmater]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=170</guid>
		<description><![CDATA[This class is used to format the number in a way we like, like the number 2000 to 2,000 or 2000 to 2,00.00 or 2000.2345 to 2,000.23 like that.So the usage is given below, its like the beautification to the data.
Code Example:
&#60;mx:NumberFormattter id=&#8221;nftr&#8221; precision=&#8221;2&#8243; /&#62;
Now in a the Script block u can use this to [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This class is used to format the number in a way we like, like the number 2000 to 2,000 or 2000 to 2,00.00 or 2000.2345 to 2,000.23 like that.So the usage is given below, its like the beautification to the data.</p>
<p><strong>Code Example:</strong></p>
<p><em>&lt;mx:NumberFormattter id=&#8221;nftr&#8221; precision=&#8221;2&#8243; /&gt;</em></p>
<p>Now in a the Script block u can use this to format the number.As</p>
<p><em>nftr.format(2000.123456);</em></p>
<p>This will format to 2,000.12.</p>
<p>There are still many properties in the NumberFormatter class to use like thousandSeperatorfrom,thousandSeperatorto &#8230;&#8230; like so, can explore these very simple.</p>
<p>As i said <strong>it addds beautification to the data in the Application.</strong></p>
<p>Enjoy the post.Can leave a comment for queries.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/170/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/170/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=170&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/07/02/using-numberformatter/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Conditional Operator.</title>
		<link>http://flexonblog.wordpress.com/2008/06/30/conditional-operator/</link>
		<comments>http://flexonblog.wordpress.com/2008/06/30/conditional-operator/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 11:06:09 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[operator]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=167</guid>
		<description><![CDATA[The syntax in Flex for conditional operator is same as that of the other technologies like c,java,.., for newbies the syntax is here.
Syntax:
Condition?(condition=true)statement:condition=false)statement.
Or
Condition?true satement:false statement.
It is nothing but a if.. else.. block in one single line.
Example in Flex:
Private function conopeExample():void
{
txtname.text=4&#62;1?&#8221;Kumar&#8221;:&#8221;gandhi&#8221;;
}
&#60;mx:TextInput id=&#8221;txtname&#8221; /&#62;
&#60;mx:Button id=&#8221;btn&#8221; click=&#8221; conopeExample&#8221; /&#62;
The conditional operator is so simple that we programmers ignore [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The syntax in Flex for conditional operator is same as that of the other technologies like c,java,.., for newbies the syntax is here.</p>
<p><strong>Syntax:</strong></p>
<p><em>Condition?(condition=true)statement:condition=false)statement.</em></p>
<p><strong>Or</strong></p>
<p><em>Condition?true satement:false statement.</em></p>
<p>It is nothing but a if.. else.. block in one single line.</p>
<p><strong>Example in Flex:</strong></p>
<p><em>Private function conopeExample():void</em></p>
<p><em>{</em></p>
<p><em>txtname.text=4&gt;1?&#8221;Kumar&#8221;:&#8221;gandhi&#8221;;</em></p>
<p><em>}</em></p>
<p><em>&lt;mx:TextInput id=&#8221;txtname&#8221; /&gt;</em></p>
<p><em>&lt;mx:Button id=&#8221;btn&#8221; click=&#8221; conopeExample&#8221; /&gt;</em></p>
<p>The conditional operator is so simple that we programmers ignore that , or not interested in that. But it&#8217;s so simple that a good programmer will use to reduce the lines of code in the Application. Finally it&#8217;s synonym of our if .. else .. statements.</p>
<p><strong>Enjoy the Post.</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/167/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/167/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=167&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/06/30/conditional-operator/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Reading data in to ComboBox from PHP page. (corrections)</title>
		<link>http://flexonblog.wordpress.com/2008/06/21/reading-data-in-to-combobox-from-php-page-corrections/</link>
		<comments>http://flexonblog.wordpress.com/2008/06/21/reading-data-in-to-combobox-from-php-page-corrections/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 10:36:33 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[PHP related..]]></category>

		<category><![CDATA[corrections]]></category>

		<category><![CDATA[combobax data]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=166</guid>
		<description><![CDATA[Actually I made this post long back but the post had some corrections so iam making those here. It was actually suggested by a a person called John that he didn&#8217;t get the post clearly and insisted to make another one for newbies. So I decided to make a clear one here with complete code.
The [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Actually I made this <a href="../../../../../2008/01/07/reading-data-in-to-combobox-from-php-page/">post</a> long back but the post had some corrections so iam making those here. It was actually suggested by a a person called John that he didn&#8217;t get the post clearly and insisted to make another one for newbies. So I decided to make a clear one here with complete code.</p>
<p>The <a href="http://flexonblog.wordpress.com/2008/01/07/reading-data-in-to-combobox-from-php-page/" target="_blank">post</a> missed one line as it was pointed out in the comment , the line is to send the HttpService you are using to get the Data.</p>
<p><strong>Flex code </strong>:</p>
<p><em>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;</em></p>
<p><em>&lt;mx:Application</em><em> xmlns:mx=&#8221;</em><em>http://www.adobe.com/2006/mxml</em><em>&#8221; layout=&#8221;</em><em>absolute</em><em>&#8220;</em></p>
<p><em> creationComplete=&#8221;projectsSrv.send();&#8221;</em><em>&gt;</em></p>
<p><em> </em><em>&lt;mx:HTTPService</em></p>
<p><em> id=&#8221;</em><em>projectsSrv</em><em>&#8220;</em></p>
<p><em> url=&#8221;</em><em>new.xml</em><em>&#8220;</em></p>
<p><em> useProxy=&#8221;</em><em>false</em><em>&#8221; method=&#8221;</em><em>POST</em><em>&#8220;</em><em>&gt;</em></p>
<p><em> </em><em>&lt;/mx:HTTPService&gt;</em></p>
<p><em> </em><em>&lt;mx:ComboBox</em></p>
<p><em> id=&#8221;</em><em>cmb1</em><em>&#8221; x=&#8221;</em><em>152</em><em>&#8221; y=&#8221;</em><em>53</em><em>&#8220;</em></p>
<p><em> </em><em>dataProvider=&#8221;</em><em>{</em><em>projectsSrv.lastResult.records.record</em><em>}</em><em>&#8220;</em></p>
<p><em> labelField=&#8221;</em><em>data</em><em>&#8220;</em><em>&gt;&lt;/mx:ComboBox&gt;</em></p>
<p><em>&lt;/mx:Application&gt;</em></p>
<p><em> </em></p>
<p><strong>PHP code or XML file code:</strong></p>
<p><em>&lt;records&gt;</em></p>
<p><em>&lt;record data=&#8221;1&#8243; label=&#8221;Corco&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;5&#8243; label=&#8221;Shell Crop Protection&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;7&#8243; label=&#8221;Olin McIntosh&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;9&#8243; label=&#8221;Crab Orchard&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;10&#8243; label=&#8221;Shell Oil Del Amo&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;11&#8243; label=&#8221;AIG South Jersey Gas&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;12&#8243; label=&#8221;Husch &amp;amp; Eppenberger Litigation-New York&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;22&#8243; label=&#8221;Shell Sturbridge&#8221;/&gt;&lt;record data=&#8221;24&#8243; label=&#8221;Shell Southington&#8221;/&gt;</em></p>
<p><em>&lt;record data=&#8221;26&#8243; label=&#8221;Olin Personal Injury&#8221;/&gt;</em></p>
<p><em>&lt;/records&gt;</em></p>
<p>You can send data in this format or get it from the XML file, here its from XML file &#8220;new.xml&#8221;.you can even echo these lines in PHP and a file as new.php.</p>
<p>As you can see the difference here, from that post is, here iam using the line <strong>creationComplete=&#8221;projectsSrv.send();&#8221;</strong><em> in the Application </em>tag to send the service and read the data.</p>
<p>Now it will work fine and comments are welcome !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/166/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/166/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=166&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/06/21/reading-data-in-to-combobox-from-php-page-corrections/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Giving title to your Flex App’s.</title>
		<link>http://flexonblog.wordpress.com/2008/06/17/giving-title-to-your-flex-app%e2%80%99s/</link>
		<comments>http://flexonblog.wordpress.com/2008/06/17/giving-title-to-your-flex-app%e2%80%99s/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 14:30:25 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[pagetitle]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=165</guid>
		<description><![CDATA[Usually we give title to our page from the Title Tag in the Html file but there is another way to do this from the Flex App.
There&#8217;s a property called pageTitle in the Application Tag, and there you can mention it. Then it appears on Browser Title Bar as required. Cool isn&#8217;t it !
Code Example [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Usually we give title to our page from the Title Tag in the Html file but there is another way to do this from the Flex App.</p>
<p>There&#8217;s a property called pageTitle in the Application Tag, and there you can mention it. Then it appears on Browser Title Bar as required. Cool isn&#8217;t it !</p>
<p><strong>Code Example :</strong></p>
<p><em>&lt;mx:Application xmlns:mx=&#8221;http://www.adobe.com/2006/mxml&#8221; layout=&#8221;absolute&#8221;</em></p>
<p><em>creationComplete=&#8221;init()&#8221; pageTitle=&#8221;Kumar Gandhi Page !&#8221;&gt;</em></p>
<p><em>&lt;/mx:Application&gt;</em></p>
<p><strong>Enjoy the code !</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/165/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/165/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=165&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/06/17/giving-title-to-your-flex-app%e2%80%99s/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Logical thinking!</title>
		<link>http://flexonblog.wordpress.com/2008/06/06/logical-thinking/</link>
		<comments>http://flexonblog.wordpress.com/2008/06/06/logical-thinking/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 06:24:36 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[others]]></category>

		<category><![CDATA[logic]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=164</guid>
		<description><![CDATA[I came to know the meaning of the word logical few years back but it is the word that should be thought when you start learning words, I mean at the point you start with words.
What is really logical? And what logic means? . If Thomas Alva Edison doesn&#8217;t know what is logical thinking then [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I came to know the meaning of the word logical few years back but it is the word that should be thought when you start learning words, I mean at the point you start with words.</p>
<p>What is really logical? And what logic means? . If Thomas Alva Edison doesn&#8217;t know what is logical thinking then he couldn&#8217;t have made a bulb and can you imagine our world without it. That is the power of the word logical.</p>
<p>So</p>
<p><strong> What is really logical?</strong></p>
<p>A problem with two sides is logical and if problem takes a solution the its true logic otherwise its false logic. We need to make a solution so that our logic is true in order to make the logic true we need to figure out the solution with proper logic. Here proper logic means thinking in the right sense and this thinking start with right sense when we really analyze the problem and the steps in achieving it.</p>
<p><strong>What logic means?</strong></p>
<p><strong> </strong>If(problem!=solution) then logic is false</p>
<p>Else if(problem==solution) then logic is true</p>
<p>Else logic is null</p>
<p>The above statements tell the logic in terms of problem and solution.</p>
<p>This can also be made as &#8220;Find a way to find the solution or Think till you find the right solution&#8221;</p>
<p>If the first way doesn&#8217;t lead you to the solution then find another logic to find the way or think to find the way for the logic.</p>
<p>This can also be made like this &#8220;think till you find the logic is true&#8221; , true logic which always lead you to the solution.</p>
<p>So</p>
<p><strong>logic always resonates with TRUE and FALSE, </strong><strong>existence</strong><strong> and </strong><strong>nonexistence</strong><strong> of the </strong><strong>solution</strong><strong>.</strong></p>
<p>Enjoy the post ! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/164/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/164/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=164&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/06/06/logical-thinking/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Incremental compilation in Flex.</title>
		<link>http://flexonblog.wordpress.com/2008/06/04/incremental-compilation-in-flex/</link>
		<comments>http://flexonblog.wordpress.com/2008/06/04/incremental-compilation-in-flex/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 14:00:51 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[tutorials]]></category>

		<category><![CDATA[flex basics]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=163</guid>
		<description><![CDATA[I collected some information in Incremental Compilation and iam giving it here.
Incremental compilation means that the compiler inspects your code, determines which parts of the application are affected by your changes, and only recompiles the newer classes and assets (section of bytecode). These sections of bytecode are also referred to as compilation units.
Incremental compilation can [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I collected some information in Incremental Compilation and iam giving it here.</p>
<blockquote><p><em>Incremental compilation means that the compiler inspects your code, determines which parts of the application are affected by your changes, and only recompiles the newer classes and assets (section of bytecode). These sections of bytecode are also referred to as compilation units.</em></p>
<p><em>Incremental compilation can help reduce compile time on small applications, but you achieve the biggest gains on larger applications. The default value of the incremental compiler option is true for the Flex Builder application compiler. For the mxmlc command-line compiler, the default is false.</em></p>
<p><em>You enable incremental compilation by setting the incremental option to true, as the following example shows: mxmlc -incremental=true MyApp.mxml</em></p>
<p><em>As part of the incremental compilation process, the compiler generates<br />
a cache file that lists the compilation units of your application and information on your<br />
application&#8217;s structure. This file is located in the same directory as the file that you are<br />
compiling. For example, if my application is called Example.mxml, the cache file is called Example_n.cache, where n represents a checksum generated by the compiler based on compiler configuration. This file helps the compiler determine which parts of your application must be recompiled. One way to force a complete recompile is to delete the cache file from the<br />
directory.</em></p>
<p>Hope you got the importance of it !.Enjoy the Post.</p></blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/163/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/163/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=163&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/06/04/incremental-compilation-in-flex/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>New DateField  Component with the BackgroundColor Property. Explanation</title>
		<link>http://flexonblog.wordpress.com/2008/05/27/new-datefield-component-with-the-backgroundcolor-property-explanation/</link>
		<comments>http://flexonblog.wordpress.com/2008/05/27/new-datefield-component-with-the-backgroundcolor-property-explanation/#comments</comments>
		<pubDate>Tue, 27 May 2008 07:18:43 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[custom components]]></category>

		<category><![CDATA[custom datefield component.]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=161</guid>
		<description><![CDATA[This post is continuation of the previous post.
How to do this:

Create a lib project with a new Class which extends the DateField Class and the required .swc file is created in the bin folder.
Now we need to include one .as file which defines all the required properties for the DateField Component.
The .as file is already [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="color:#ff6600;">This post is continuation of the previous post.</span></p>
<p class="MsoNormal"><strong>How to do this:</strong></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--><!--[endif]--></p>
<p class="MsoNormal">Create a lib project with a new Class which extends the <strong>DateField </strong>Class and the required <strong>.swc</strong> file is created in the bin folder.</p>
<p class="MsoNormal">Now we need to include one .as file which defines all the required<span> </span>properties for the DateField Component.</p>
<p class="MsoNormal">The .as file is already available for the TextInput component, which defines the required border properties. So all we need to do is get that file and include it in the NewDateFiled Class.</p>
<p class="MsoNormal">The .as file is BorderStyles.as and it is present in the sdk’s at</p>
<p class="MsoNormal"><span> </span>“<em>C:\Program Files\flex_sdk\frameworks\projects\framework\src\mx\styles\metadata</em>”</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]-->Now get this .swc file generated [lib] into the your projects [paste it in your projects lib folder ] and drag the NewDateField component from the custom folder from the design view.</p>
<p class="MsoNormal"><strong><span style="color:black;"><!--[if !supportEmptyParas]--> <!--[endif]--></span></strong><span style="color:black;">Now you can see the new properties included in the NewDateField component.</span></p>
<p class="MsoNormal"><span style="color:black;"><!--[if !supportEmptyParas]--> <!--[endif]-->The below image shows the New DateField component with </span>BackgroundColor property.</p>
<p class="MsoNormal"><img class="alignnone size-full wp-image-162" src="http://flexonblog.files.wordpress.com/2008/05/newdate1.jpg?w=450&h=175" alt="" width="450" height="175" /></p>
<p class="MsoNormal">Enjoy the post ! comments are welcome for queries ..</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/161/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/161/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=161&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/05/27/new-datefield-component-with-the-backgroundcolor-property-explanation/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>

		<media:content url="http://flexonblog.files.wordpress.com/2008/05/newdate1.jpg" medium="image" />
	</item>
		<item>
		<title>New DateField  Component with the BackgroundColor Property.</title>
		<link>http://flexonblog.wordpress.com/2008/05/22/new-datefield-component-with-the-backgroundcolor-property/</link>
		<comments>http://flexonblog.wordpress.com/2008/05/22/new-datefield-component-with-the-backgroundcolor-property/#comments</comments>
		<pubDate>Thu, 22 May 2008 13:26:25 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[custom components]]></category>

		<category><![CDATA[customdatefield component.]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=159</guid>
		<description><![CDATA[It may be thought by the Developers who did the DateField component that BackgroundColor property may not be required, or I don’t know their intention , but what if it is required for your App ?.
 Even we [our projects] had this requirement in the beginning, when we were into projects, but I could not [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">It may be thought by the Developers who did the DateField component that BackgroundColor property may not be required, or I don’t know their intention , but what if it is required for your App ?.</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]-->Even we [our projects] had this requirement in the beginning, when we were into projects, but I could not find time to do R&amp;D. After I got in to the core part of the Framework and explored the classes and got the logic to implement this.</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]-->To tell frankly its simple but to get the logic you really need to explore the classes.</p>
<p class="MsoNormal"><img class="alignnone size-full wp-image-160" src="http://flexonblog.files.wordpress.com/2008/05/newdate.jpg?w=397&h=196" alt="newdate" width="397" height="196" /><!--[endif]--></p>
<p class="MsoNormal">Will come back with explantion. The above image shows the NewDateField Component.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/159/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/159/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=159&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/05/22/new-datefield-component-with-the-backgroundcolor-property/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>

		<media:content url="http://flexonblog.files.wordpress.com/2008/05/newdate.jpg" medium="image">
			<media:title type="html">newdate</media:title>
		</media:content>
	</item>
		<item>
		<title>ActionScript Execution TimeLimit !</title>
		<link>http://flexonblog.wordpress.com/2008/05/15/actionscript-execution-timelimit/</link>
		<comments>http://flexonblog.wordpress.com/2008/05/15/actionscript-execution-timelimit/#comments</comments>
		<pubDate>Thu, 15 May 2008 13:33:37 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[error handling]]></category>

		<category><![CDATA[script timeout]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=154</guid>
		<description><![CDATA[The default time for executing .as[ Script ] file is 15 sec’s and if the the file takes more that 15 sec’s it throws an Runtime Exception Error #:1502, and the below image shows the error message.
 Here if we wanted our Script to execute more than the default time then we need to specify [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">The default time for executing .as[ Script ] file is 15 sec’s and if the the file takes more that 15 sec’s it throws an Runtime Exception Error #:1502, and the below image shows the error message.</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]-->Here if we wanted our Script to execute more than the default time then we need to specify the time limit at the Application [Tag].</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--></p>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="color:red;">The property to use is :</span></span></p>
<p class="MsoNormal"><strong>scriptTimeLimit</strong></p>
<p class="MsoNormal"><span style="color:black;">It takes the value for sec’s specification. And the max value it can have is 60 sec. It means that the Script can be executed for only 60 sec’s.</span></p>
<p class="MsoNormal"><span style="color:black;"><!--[if !supportEmptyParas]--> <!--[endif]--></span></p>
<p class="MsoNormal"><strong><span style="color:black;">Code Example: </span></strong></p>
<p class="MsoNormal"><strong><span style="color:black;"><!--[if !supportEmptyParas]--><!--[endif]--></span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;color:blue;">&lt;mx:Application</span><span style="font-size:10pt;font-family:&quot;color:black;"> xmlns:mx=&#8221;</span><span style="font-size:10pt;font-family:&quot;color:#990000;">http://www.adobe.com/2006/mxml</span><span style="font-size:10pt;font-family:&quot;color:black;">&#8221; layout=&#8221;</span><span style="font-size:10pt;font-family:&quot;color:#990000;">absolute</span><span style="font-size:10pt;font-family:&quot;color:black;">&#8221; creationComplete=&#8221;init()&#8221; scriptTimeLimit=&#8221;</span><span style="font-size:10pt;font-family:&quot;color:#990000;">40</span><span style="font-size:10pt;font-family:&quot;color:black;">&#8220;</span><span style="font-size:10pt;font-family:&quot;color:blue;">&gt;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;color:blue;"><!--[if !supportEmptyParas]--><!--[endif]--></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:&quot;color:blue;">&lt;/mx:Application&gt;</span></p>
<p class="MsoNormal">The below image shows the Error Message:</p>
<p class="MsoNormal"><a href="http://flexonblog.files.wordpress.com/2008/05/timeout2.jpg"><img class="alignnone size-full wp-image-158" src="http://flexonblog.files.wordpress.com/2008/05/timeout3.jpg?w=450&h=173" alt="Error Message For Script TimeOut .!" width="450" height="173" /></a></p>
<p class="MsoNormal">Enjoy The code..!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/154/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/154/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=154&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/05/15/actionscript-execution-timelimit/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>

		<media:content url="http://flexonblog.files.wordpress.com/2008/05/timeout3.jpg" medium="image">
			<media:title type="html">Error Message For Script TimeOut .!</media:title>
		</media:content>
	</item>
		<item>
		<title>Designing BusyCursor&#8217;s or Custom BusyCursor&#8217;s.</title>
		<link>http://flexonblog.wordpress.com/2008/05/08/designing-busycursors-or-custom-busycursors/</link>
		<comments>http://flexonblog.wordpress.com/2008/05/08/designing-busycursors-or-custom-busycursors/#comments</comments>
		<pubDate>Thu, 08 May 2008 14:15:05 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[BusyCursor]]></category>

		<category><![CDATA[cursormanager]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=152</guid>
		<description><![CDATA[There is default skin for BusyCursor and that skin is in the pakage mx.skins and .as file BusyCursor you can find them in your sdk&#8217;s
Now coming to desing BusyCursor:
Here we need to design our own Cursor Programmatically that is write a class which extends the Sprite Class  and use the Graphics class and with its [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There is default skin for BusyCursor and that skin is in the pakage <em>mx.skins</em> and .as file BusyCursor you can find them in your sdk&#8217;s</p>
<p><strong>Now coming to desing BusyCursor:</strong></p>
<p>Here we need to design our own Cursor Programmatically that is write a class which extends the Sprite Class  and use the Graphics class and with its methods, you can make your own Design for Cursor&#8217;r and finally include the skin in the App as a Style, with the Property busyCursor in the CursorManager Class.</p>
<p><em>&lt;mx:Style&gt;</em></p>
<p><em>CursorManager {</em></p>
<p><em>busyCursor: ClassReference(&#8221;NewBusyCursorSkin&#8221;);</em></p>
<p><em>}</em></p>
<p>Here NewBusyCursorSkin is the class which draws your skin[ contains code to draw] and include that class as below.And when including styles Programmatically we got use the ClassReference() method with the Class Name as the parameter.Above line shows it. To understand this post you need to know what is Sprite and Graphics Classes.</p>
<p>This image shows the Custom BusyCursor i have developed.</p>
<p><a href="http://flexonblog.files.wordpress.com/2008/05/busyc1.jpg"><img class="alignnone size-thumbnail wp-image-153" src="http://flexonblog.files.wordpress.com/2008/05/busyc1.jpg?w=107&h=96" alt="Custom BusyCursor." width="107" height="96" /></a></p>
<p>Enjoy the Post. Stay tuned for the code.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/152/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/152/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=152&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/05/08/designing-busycursors-or-custom-busycursors/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>

		<media:content url="http://flexonblog.files.wordpress.com/2008/05/busyc1.jpg?w=107" medium="image">
			<media:title type="html">Custom BusyCursor.</media:title>
		</media:content>
	</item>
		<item>
		<title>Action Script Access time Exceeds 15 sec&#8217;s Error.</title>
		<link>http://flexonblog.wordpress.com/2008/05/03/action-script-access-time-exceeds-15-secs-error/</link>
		<comments>http://flexonblog.wordpress.com/2008/05/03/action-script-access-time-exceeds-15-secs-error/#comments</comments>
		<pubDate>Sat, 03 May 2008 10:06:00 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[error handling]]></category>

		<category><![CDATA[application.]]></category>

		<category><![CDATA[script limit time]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=151</guid>
		<description><![CDATA[The default time for script acces is 15 sec&#8217;s and if you intend to have more access to the script then we got to use the property scriptLimittime at the Application tag.
The max value is 60 sec&#8217;s.
I will come back with Error Message and code Example.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The default time for script acces is 15 sec&#8217;s and if you intend to have more access to the script then we got to use the property <strong>scriptLimittime</strong> at the Application tag.</p>
<p><em>The max value is 60 sec&#8217;s.</em></p>
<p>I will come back with Error Message and code Example.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/151/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/151/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=151&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/05/03/action-script-access-time-exceeds-15-secs-error/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Lock columns and Rows in DataGrid for Visibility.</title>
		<link>http://flexonblog.wordpress.com/2008/04/22/lock-columns-and-rows-in-datagrid-for-visibility/</link>
		<comments>http://flexonblog.wordpress.com/2008/04/22/lock-columns-and-rows-in-datagrid-for-visibility/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 11:39:12 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[datagrid]]></category>

		<category><![CDATA[locks]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=149</guid>
		<description><![CDATA[There are two properties in DataGrid where we can lock the visibility of the rows and columns in the DataGrid [here lock the visibility means, which are always visible ,like when scrolling they are not moved to and forth].
 The property for ColumnLock is
 lockedColumnCount
 this takes the value to lock the number of Columns [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">There are two properties in <strong>DataGrid</strong> where we can lock the visibility of the rows and columns in the DataGrid <em>[here lock the visibility means, which are always visible ,like when scrolling they are not moved to and forth].</em></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--><span style="color:red;"><span style="text-decoration:underline;">The property for ColumnLock is</span></span></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--><strong>lockedColumnCount</strong></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]-->this takes the value to lock the number of Columns in the Display from left of DataGrid. Here horizontalscrolling locks the columns for visibility.</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--><span style="text-decoration:underline;"></span><span style="color:red;"><span style="text-decoration:underline;">The property for RowLock is</span></span></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--><strong>lockedRowCount</strong></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]-->this also takes the value to lock the number of rows in the Display from top of DataGrid. Here verticalscrolling locks the rows for visibility.</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--><strong>code Example:</strong></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--><!--[endif]--></p>
<p class="MsoNormal"><em>&lt;mx:DataGrid x=&#8221;277&#8243; y=&#8221;331&#8243; id=&#8221;dg&#8221; dataProvider=&#8221;{xml}&#8221;</em></p>
<p class="MsoNormal"><em><span> </span><span> </span>lockedColumnCount=&#8221;3&#8243; height=&#8221;96&#8243; horizontalScrollPolicy=&#8221;on&#8221;</em></p>
<p class="MsoNormal"><em><span> </span><span> </span>verticalScrollPolicy=&#8221;on&#8221; width=&#8221;397&#8243;&gt;</em></p>
<p class="MsoNormal"><em><span> </span>&lt;mx:columns&gt;</em></p>
<p class="MsoNormal"><em><span> </span><span> </span>&lt;mx:DataGridColumn headerText=&#8221;Sl.No&#8221; dataField=&#8221;slno&#8221;/&gt;</em></p>
<p class="MsoNormal"><em><span> </span><span> </span>&lt;mx:DataGridColumn headerText=&#8221;Product Name&#8221; dataField=&#8221;PNAME&#8221;/&gt;</em></p>
<p class="MsoNormal"><em><span> </span><span> </span>&lt;mx:DataGridColumn headerText=&#8221;Pro ID&#8221; dataField=&#8221;PID&#8221;/&gt;</em></p>
<p class="MsoNormal"><em><span> </span><span> </span>&lt;mx:DataGridColumn headerText=&#8221;Cat ID&#8221; dataField=&#8221;CAT_ID&#8221;/&gt;</em></p>
<p class="MsoNormal"><em><span> </span><span> </span>&lt;mx:DataGridColumn headerText=&#8221;Cat Name&#8221; dataField=&#8221;CATEGORY&#8221;/&gt;</em></p>
<p class="MsoNormal"><em><span> </span>&lt;/mx:columns&gt;</em></p>
<p class="MsoNormal"><em>&lt;/mx:DataGrid&gt;</em></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]-->The below image shows the locking of two columns.<!--[endif]--></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <img class="alignnone size-full wp-image-150" src="http://flexonblog.files.wordpress.com/2008/04/lock1.jpg?w=459&h=150" alt="" width="459" height="150" /><!--[endif]--></p>
<p class="MsoNormal">Enjoy the code !, happy Flexing.</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/149/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/149/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=149&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/04/22/lock-columns-and-rows-in-datagrid-for-visibility/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>

		<media:content url="http://flexonblog.files.wordpress.com/2008/04/lock1.jpg" medium="image" />
	</item>
		<item>
		<title>Error Message when the required dll file [plugin] is missing.</title>
		<link>http://flexonblog.wordpress.com/2008/04/10/error-message-when-the-required-dll-file-plugin-is-missing/</link>
		<comments>http://flexonblog.wordpress.com/2008/04/10/error-message-when-the-required-dll-file-plugin-is-missing/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 13:23:26 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[error handling]]></category>

		<category><![CDATA[browser plugin]]></category>

		<category><![CDATA[dll file]]></category>

		<category><![CDATA[plugin file]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=146</guid>
		<description><![CDATA[Previous post tells about the plugins requirement and i forgot to mention in that post that
the dll file is neccesary only when running the apps from Flex Builder 2 but not in Flex Builder 3.
The Erro Message displayed while running your App&#8217;s from Flex Builder 2 when the required .dll [plugin]
is missing is:

The above Window [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Previous <strong>post</strong> tells about the plugins requirement and i forgot to mention in that post that<br />
the dll file is neccesary only when running the apps from <span style="color:#ff6600;"><strong><em>Flex Builder 2</em></strong></span> but not in Flex Builder 3.</p>
<p>The Erro Message displayed while running your App&#8217;s from Flex Builder 2 when the required .dll [plugin]<br />
is missing is:<br />
<a href="http://flexonblog.files.wordpress.com/2008/04/dllerr1.jpg"><img class="alignnone size-full wp-image-148" src="http://flexonblog.files.wordpress.com/2008/04/dllerr1.jpg?w=441&h=173" alt="Error Message For dll file [plugin]" width="441" height="173" /></a><br />
The above Window defines the Error.<br />
Enjoy Flexing !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/146/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/146/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=146&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/04/10/error-message-when-the-required-dll-file-plugin-is-missing/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>

		<media:content url="http://flexonblog.files.wordpress.com/2008/04/dllerr1.jpg" medium="image">
			<media:title type="html">Error Message For dll file [plugin]</media:title>
		</media:content>
	</item>
		<item>
		<title>.dll file required to run the .swf file in the browser [plugin file]</title>
		<link>http://flexonblog.wordpress.com/2008/04/09/dll-file-required-to-run-the-swf-file-in-the-browser-plugin-file/</link>
		<comments>http://flexonblog.wordpress.com/2008/04/09/dll-file-required-to-run-the-swf-file-in-the-browser-plugin-file/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 13:21:59 +0000</pubDate>
		<dc:creator>kumargandhi</dc:creator>
		
		<category><![CDATA[Flex related]]></category>

		<category><![CDATA[error handling]]></category>

		<category><![CDATA[dll file]]></category>

		<category><![CDATA[plugin for swf]]></category>

		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=145</guid>
		<description><![CDATA[Each time we run the Flex App&#8217;s the browser looks for the flash plugin in the Browser&#8217;s plugin folder.So the plugin file that is required is npswf32.dll.
This is by default included in the plugin folder of the browsers installation folder, when you install the flash player, but there is a situation  where this file  missed [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Each time we run the Flex App&#8217;s the browser looks for the flash plugin in the Browser&#8217;s plugin folder.So the plugin file that is required is <strong><span style="font-size:12pt;font-family:&quot;">npswf32.dll.</span></strong></p>
<p>This is by default included in the plugin folder of the browsers installation folder, when you install the flash player, but there is a situation  where this file  missed out sometimes when we go for Browser &#8217;s new installs .</p>
<p>so at that time the file[plugin] we required [present at the folder "<span style="font-size:12pt;font-family:&quot;"><em>C:\WINNT\system32\Macromed\Flash</em>"</span>] is missing and need to be put it in the plugin folder of the browser install folder.</p>
<p>Now take the required file[copy it from the path given above] and paste it in the folder plugin folder of the browser install folder.</p>
<p>Now it works file.Enjoy Flexing.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flexonblog.wordpress.com/145/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flexonblog.wordpress.com/145/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flexonblog.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flexonblog.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flexonblog.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flexonblog.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flexonblog.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flexonblog.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flexonblog.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flexonblog.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flexonblog.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flexonblog.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flexonblog.wordpress.com&blog=2177195&post=145&subd=flexonblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flexonblog.wordpress.com/2008/04/09/dll-file-required-to-run-the-swf-file-in-the-browser-plugin-file/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/kumargandhi-128.jpg" medium="image">
			<media:title type="html">kumar gandhi</media:title>
		</media:content>
	</item>
	</channel>
</rss>