<?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>Kasiruby&#039;s Blog</title>
	<atom:link href="http://kasiruby.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kasiruby.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 12 Aug 2009 12:05:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kasiruby.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kasiruby&#039;s Blog</title>
		<link>http://kasiruby.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kasiruby.wordpress.com/osd.xml" title="Kasiruby&#039;s Blog" />
	<atom:link rel='hub' href='http://kasiruby.wordpress.com/?pushpress=hub'/>
		<item>
		<title>LinkButton using ActionScript</title>
		<link>http://kasiruby.wordpress.com/2009/08/12/simple-example-using-actionscript/</link>
		<comments>http://kasiruby.wordpress.com/2009/08/12/simple-example-using-actionscript/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:40:41 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=103</guid>
		<description><![CDATA[Introduction: From this simple Flex Example, one can easily understand about ActionScript. Try this in your own way and learn more. Source Code: &#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&#62; &#60;mx:Application xmlns:mx=&#8221;http://www.adobe.com/2006/mxml&#8221; layout=&#8221;absolute&#8221; creationComplete=&#8221;createbutton();&#8221;&#62; &#60;mx:Script&#62; &#60;![CDATA[ import mx.controls.LinkButton; import mx.controls.Image; var link:LinkButton; var image1:Image; public function createbutton():void{ link=new LinkButton; link.label= "Pa.Vijay"; link.width=100; link.height=25; link.x=50; link.y=50; this.addChild(link); link.addEventListener(MouseEvent.CLICK,showimage); } public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=103&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction:</strong></p>
<p>From this simple Flex Example, one can easily understand about ActionScript. Try this in your own way and learn more.</p>
<p><strong>Source Code:</strong></p>
<p><span style="color:#800080;"> &lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;http://www.adobe.com/2006/mxml&#8221; layout=&#8221;absolute&#8221; creationComplete=&#8221;createbutton();&#8221;&gt;<br />
&lt;mx:Script&gt;<br />
&lt;![CDATA[</span></p>
<p><span style="color:#800080;">import mx.controls.LinkButton;<br />
import mx.controls.Image;</span></p>
<p><span style="color:#800080;">var link:LinkButton;<br />
var image1:Image;</span></p>
<p><span style="color:#800080;">public function createbutton():void{<br />
link=new LinkButton;<br />
link.label= "Pa.Vijay";<br />
link.width=100;<br />
link.height=25;<br />
link.x=50;<br />
link.y=50;<br />
this.addChild(link);<br />
link.addEventListener(MouseEvent.CLICK,showimage);<br />
}<br />
public function showimage(event:MouseEvent):void{<br />
image1=new Image;<br />
image1.source="../Assets/Pa.Vijay.jpg";<br />
image1.maintainAspectRatio=false;<br />
image1.width=50;<br />
image1.height=50;<br />
image1.x=60;<br />
image1.y=80;<br />
this.addChild(image1);<br />
}<br />
]]&gt;<br />
&lt;/mx:Script&gt;<br />
&lt;/mx:Application&gt;</span></p>
<p><strong>Screenshots:</strong></p>
<div id="attachment_104" class="wp-caption aligncenter" style="width: 295px"><a rel="attachment wp-att-104" href="http://kasiruby.wordpress.com/2009/08/12/simple-example-using-actionscript/as/"><img class="size-full wp-image-104" title="Screenshot for this code" src="http://kasiruby.files.wordpress.com/2009/08/as.jpg?w=285&#038;h=108" alt="First screen" width="285" height="108" /></a><p class="wp-caption-text">If you run the source code in Flex Builder, You will see this kind of screen.</p></div>
<div id="attachment_105" class="wp-caption aligncenter" style="width: 242px"><a rel="attachment wp-att-105" href="http://kasiruby.wordpress.com/2009/08/12/simple-example-using-actionscript/as1/"><img class="size-full wp-image-105" title="Screenshot2" src="http://kasiruby.files.wordpress.com/2009/08/as1.jpg?w=232&#038;h=113" alt="If you click that linkbutton named Pa.Vijay, his image will be displayed." width="232" height="113" /></a><p class="wp-caption-text">If you click that linkbutton named Pa.Vijay, his image will be displayed.</p></div>
<p>Thanks &amp; Regards,<br />
<strong>Kasi Ruby.R</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=103&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/08/12/simple-example-using-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>

		<media:content url="http://kasiruby.files.wordpress.com/2009/08/as.jpg" medium="image">
			<media:title type="html">Screenshot for this code</media:title>
		</media:content>

		<media:content url="http://kasiruby.files.wordpress.com/2009/08/as1.jpg" medium="image">
			<media:title type="html">Screenshot2</media:title>
		</media:content>
	</item>
		<item>
		<title>RSS Feed</title>
		<link>http://kasiruby.wordpress.com/2009/08/11/rss-feed/</link>
		<comments>http://kasiruby.wordpress.com/2009/08/11/rss-feed/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 08:42:18 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[RSS Feed]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/2009/08/11/rss-feed/</guid>
		<description><![CDATA[About RSS: RSS is a format for syndicating news and the content of news-like sites, including major news sites like Wired, news-oriented community sites like Slashdot, and personal weblogs. The &#8220;recent changes&#8221; page of a website, a changelog of CVS checkins, even the revision history of a book can be syndicated via RSS. Once information [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=100&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>About RSS:</strong></p>
<p>RSS is a format for syndicating news and the content of news-like sites, including major news sites like Wired, news-oriented community sites like Slashdot, and personal weblogs.</p>
<p>The &#8220;recent changes&#8221; page of a website, a changelog of CVS checkins, even the revision history of a book can be syndicated via RSS.</p>
<p>Once information about each item is in RSS format, an RSS-aware program can check the feed for changes and react to the changes in an appropriate way. RSS-aware programs called news aggregators are popular in the weblogging community. Many weblogs make content available in RSS. A news aggregator can help you keep up with all your favorite weblogs by checking their RSS feeds and displaying new items from each of them.</p>
<p><strong>Benefits and Reasons for using RSS:</strong></p>
<p><strong> </strong>RSS solves a problem for people who regularly use the web. It allows you to 	<strong>easily stay informed</strong> by retrieving the latest content from the sites you are interested in. 	You <strong>save time</strong> by not needing to visit each site individually. 	You <strong>ensure your privacy</strong>, by not needing to join each site&#8217;s email newsletter. 	The number of 	<a title="categorized list of rss feeds" href="http://www.syndic8.com/feedcat.php">sites offering RSS feeds</a> is	growing rapidly and includes big names like <a href="http://news.yahoo.com/rss/">Yahoo News</a>.</p>
<p>Feed Reader or News Aggregator software allow you to grab the RSS feeds from various sites and display them for you to read and use.</p>
<p>A <a title="a longer list of RSS Readers" href="http://blogspace.com/rss/readers">variety of RSS Readers</a> are available for different platforms. Some popular feed readers include 	<a href="http://www.disobey.com/amphetadesk/">Amphetadesk</a> (Windows, Linux, Mac), 	<a href="http://www.feedreader.com/">FeedReader</a> (Windows), and 	<a href="http://www.newsgator.com/">NewsGator</a> (Windows &#8211; integrates with Outlook). 	There are also a number of web-based feed readers available. 	<a href="http://my.yahoo.com/">My Yahoo</a>, 	<a href="http://www.bloglines.com/">Bloglines</a>, and 	<a href="http://www.google.com/reader/">Google Reader</a> are popular web-based feed readers.</p>
<p>Once you have your Feed Reader, it is a matter of finding <a title="categorized list of rss feeds" href="http://www.syndic8.com/feedcat.php">sites that syndicate content</a> and adding their RSS feed to the list of feeds your Feed Reader checks. Many sites display a small icon with the acronyms RSS, XML, or RDF to let you know a feed is available.</p>
<p>Thanks &amp; Regards,<br />
<strong>Kasi Ruby.R</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=100&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/08/11/rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>About D-Link DIR-451 3G Mobile Router</title>
		<link>http://kasiruby.wordpress.com/2009/07/21/about-d-link-dir-451-3g-mobile-router/</link>
		<comments>http://kasiruby.wordpress.com/2009/07/21/about-d-link-dir-451-3g-mobile-router/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:11:04 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=97</guid>
		<description><![CDATA[           By connecting an UMTS, or HSDPA Internet PC card to the 3G Mobile Router, an Internet connection can be accessed and shared virtually anywhere within a wireless broadband network. Advanced Network Security: Creates a secure wireless network supporting the latest wireless security features to prevent unauthorized network access. Support for WEP, WPA, and WPA2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=97&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>           By connecting an UMTS, or HSDPA Internet PC card to the 3G Mobile Router, an Internet connection can be accessed and shared virtually anywhere within a wireless broadband network.</p>
<p><strong>Advanced Network Security:</strong></p>
<ul>
<li>Creates a secure wireless network supporting the latest wireless security features to prevent unauthorized network access.</li>
<li>Support for WEP, WPA, and WPA2 ensure that you will be able to secure your wireless network, regardless of your client devices.</li>
<li>In addition, the 3G Mobile Router utilizes dual active firewalls (SPI and NAT) to prevent potential attacks from across the Internet.</li>
</ul>
<p>For More Details, Refer this link:                         <a href="http://images.google.co.in/imgres?imgurl=http://seoroot.com/blog/wp-content/uploads/2007/08/DIR-451_diagram.jpg&amp;imgrefurl=http://www.seoroot.com/blog/networking/d-link-dir-451-3g-mobile-router.html&amp;usg=__QfkSTZphHNmh-ZQnFCxW1Gtq6lw=&amp;h=600&amp;w=314&amp;sz=37&amp;hl=en&amp;start=39&amp;um=1&amp;tbnid=X7CazbYN3CCuUM:&amp;tbnh=135&amp;tbnw=71&amp;prev=/images%3Fq%3DMobile%2Bto%2BWireless%2BNetwork%2Bconnection%26ndsp%3D21%26hl%3Den%26sa%3DN%26start%3D21%26um%3D1">D-Link DIR-451 3G Mobile Router</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=97&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/07/21/about-d-link-dir-451-3g-mobile-router/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Basic AnimateProperty Effect</title>
		<link>http://kasiruby.wordpress.com/2009/06/18/basic-animateproperty-effect/</link>
		<comments>http://kasiruby.wordpress.com/2009/06/18/basic-animateproperty-effect/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 08:24:34 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=95</guid>
		<description><![CDATA[Definition: It will come under the Package of mx.effects. It animates a property or style of a component. For this, we have to specify the property name, start value, and end value of the property to animate. For example, to change the width of a Button control, we have to specify width as the property to animate, and starting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=95&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Definition:</strong></p>
<p>It will come under the Package of <strong>mx.effects</strong>. It animates a property or style of a component. For this, we have to specify the property name, start value, and end value of the property to animate. For example, to change the width of a Button control, we have to specify <code>width</code> as the property to animate, and starting and ending width values to the effect.</p>
<p><strong>Source Code:</strong></p>
<p><span style="color:#800080;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;<a href="http://www.adobe.com/2006/mxml">http://www.adobe.com/2006/mxml</a>&#8221; layout=&#8221;absolute&#8221; backgroundAlpha=&#8221;0.5&#8243; backgroundGradientColors=&#8221;[0x00ffff,0xff00ff]&#8221; alpha=&#8221;0.6&#8243;&gt;<br />
&lt;mx:Sequence id=&#8221;animate&#8221;&gt;<br />
&lt;mx:AnimateProperty property=&#8221;scaleX&#8221; fromValue=&#8221;1&#8243; toValue=&#8221;5&#8243; duration=&#8221;1000&#8243; /&gt;<br />
&lt;mx:AnimateProperty property=&#8221;scaleX&#8221; fromValue=&#8221;5&#8243; toValue=&#8221;1&#8243; duration=&#8221;1000&#8243; /&gt;<br />
&lt;mx:AnimateProperty property=&#8221;scaleY&#8221; fromValue=&#8221;1&#8243; toValue=&#8221;5&#8243; duration=&#8221;1000&#8243; /&gt;<br />
&lt;mx:AnimateProperty property=&#8221;scaleY&#8221; fromValue=&#8221;5&#8243; toValue=&#8221;1&#8243; duration=&#8221;1000&#8243; /&gt;<br />
&lt;/mx:Sequence&gt;<br />
&lt;mx:Button mouseDownEffect=&#8221;{animate}&#8221; width=&#8221;5%&#8221; x=&#8221;414.5&#8243; y=&#8221;276&#8243; cornerRadius=&#8221;10&#8243; alpha=&#8221;0.88&#8243; /&gt;<br />
&lt;/mx:Application&gt;</span></p>
<p><strong>T</strong>hanks &amp; Regards,<br />
<strong>R.Kasi Ruby</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=95&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/06/18/basic-animateproperty-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Viewstack Navigator Container</title>
		<link>http://kasiruby.wordpress.com/2009/06/18/viewstack-navigator-container/</link>
		<comments>http://kasiruby.wordpress.com/2009/06/18/viewstack-navigator-container/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 06:56:00 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=93</guid>
		<description><![CDATA[Definition:               It defines as a collection of child containers that are stacked on top of each other. It does not provide a user interface for selecting which child container is currently visible. We must use a Link bar,  Tabbar, Buttonbar or Togglebuttonbar control or build logic ourself in ActionScript to change the current child. Source Code: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=93&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Definition:</strong></p>
<p>              It defines as a collection of child containers that are stacked on top of each other. It does not provide a user interface for selecting which child container is currently visible. We must use a Link bar,  Tabbar, Buttonbar or Togglebuttonbar control or build logic ourself in ActionScript to change the current child.</p>
<p><strong>Source Code:</strong></p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;<a href="http://www.adobe.com/2006/mxml">http://www.adobe.com/2006/mxml</a>&#8221; layout=&#8221;absolute&#8221;&gt;<br />
 &lt;mx:TabBar dataProvider=&#8221;{viewstack1}&#8221; /&gt;<br />
 &lt;mx:ViewStack x=&#8221;242&#8243; y=&#8221;142&#8243; id=&#8221;viewstack1&#8243; width=&#8221;200&#8243; height=&#8221;200&#8243;&gt;<br />
  &lt;mx:Canvas label=&#8221;View 1&#8243; width=&#8221;100%&#8221; height=&#8221;100%&#8221; backgroundColor=&#8221;haloblue&#8221;&gt;<br />
  &lt;mx:Text text=&#8221;dgghfd&#8221; /&gt;<br />
  &lt;/mx:Canvas&gt;<br />
  &lt;mx:Canvas label=&#8221;A&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221; backgroundColor=&#8221;halogreen&#8221;&gt;<br />
  &lt;mx:Text text=&#8221;dghyjd&#8221; /&gt;<br />
  &lt;/mx:Canvas&gt;<br />
  &lt;mx:Canvas label=&#8221;B&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221; backgroundColor=&#8221;haloorange&#8221;&gt;<br />
  &lt;mx:Text text=&#8221;dggmjj&#8221; /&gt;<br />
  &lt;/mx:Canvas&gt;  <br />
 &lt;/mx:ViewStack&gt;<br />
 <br />
&lt;/mx:Application&gt;</p>
<p>Thanks &amp; Regards,<br />
<strong>R.Kasi Ruby</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=93&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/06/18/viewstack-navigator-container/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>TabNavigator Container</title>
		<link>http://kasiruby.wordpress.com/2009/06/18/tabnavigator-container/</link>
		<comments>http://kasiruby.wordpress.com/2009/06/18/tabnavigator-container/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 06:41:34 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=91</guid>
		<description><![CDATA[Definition:                It creates and manages a set of tabs. It creates one tab for each child and displays the associated child. Only one child will be visible at a time.  All tabs are visible, unless they do not fit onto a single screen. We can disable a child of a TabNavigator container by using the disable property. Source Code: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=91&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Definition:</strong></p>
<p><strong>            </strong>   It creates and manages a set of tabs. It creates one tab for each child and displays the associated child. Only one child will be visible at a time.  All tabs are visible, unless they do not fit onto a single screen. We can disable a child of a TabNavigator container by using the disable property.</p>
<p><strong>Source Code:</strong></p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;<a href="http://www.adobe.com/2006/mxml">http://www.adobe.com/2006/mxml</a>&#8221; layout=&#8221;absolute&#8221;&gt;</p>
<p> &lt;mx:TabNavigator x=&#8221;105&#8243; y=&#8221;111&#8243; width=&#8221;200&#8243; height=&#8221;200&#8243;&gt;<br />
  &lt;mx:Canvas label=&#8221;AA&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221; &gt;<br />
  &lt;mx:ColorPicker  x=&#8221;88&#8243; y=&#8221;53&#8243;/&gt;<br />
  &lt;/mx:Canvas&gt;<br />
  &lt;mx:Canvas label=&#8221;A&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221;&gt;<br />
  &lt;mx:DateField  x=&#8221;54&#8243; y=&#8221;50&#8243;/&gt;<br />
  &lt;/mx:Canvas&gt;<br />
  &lt;mx:Canvas label=&#8221;B&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221;&gt;<br />
  &lt;mx:DateChooser  x=&#8221;10&#8243; height=&#8221;157&#8243;/&gt;<br />
  &lt;/mx:Canvas&gt;<br />
  &lt;mx:Canvas label=&#8221;C&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221;&gt;<br />
  &lt;mx:HSlider  x=&#8221;19&#8243; y=&#8221;59&#8243;/&gt;<br />
  &lt;/mx:Canvas&gt;<br />
 &lt;/mx:TabNavigator&gt;<br />
  <br />
&lt;/mx:Application&gt;</p>
<p>Thanks &amp; Regards,<br />
<strong>R.Kasi Ruby</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=91&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/06/18/tabnavigator-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Accordion Navigator Container</title>
		<link>http://kasiruby.wordpress.com/2009/06/18/accordion-navigator-container/</link>
		<comments>http://kasiruby.wordpress.com/2009/06/18/accordion-navigator-container/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 06:26:41 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=88</guid>
		<description><![CDATA[Definition:              Forms are a basic component in all the applications.  It is very difficult to navigate through the complex forms or multipage forms. If it is a multipage form, it doesn&#8217;t fit onto a single screen. In order to improve the look and navigation of a form, we are moving to Accordion navigator container. It contains a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=88&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Definition:</strong></p>
<p><strong>             </strong>Forms are a basic component in all the applications.  It is very difficult to navigate through the complex forms or multipage forms. If it is a multipage form, it doesn&#8217;t fit onto a single screen. In order to improve the look and navigation of a form, we are moving to Accordion navigator container. It contains a sequence of  child panels, but displays only one at a time.  It creates and manages navigator buttons (accordion headers). Each and every navigator button is associated with their corresponding child containers. It does not extend the ViewStack container. But, it is an implementation of ViewStack container, such as selectedIndex and selectedChild.</p>
<p><strong>Source Code:</strong></p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;<a href="http://www.adobe.com/2006/mxml">http://www.adobe.com/2006/mxml</a>&#8221; layout=&#8221;absolute&#8221; width=&#8221;100%&#8221;&gt;<br />
 &lt;mx:Accordion label=&#8221;Parent&#8221; x=&#8221;49&#8243; y=&#8221;101&#8243; width=&#8221;80%&#8221; height=&#8221;80%&#8221;&gt;<br />
  &lt;mx:Canvas label=&#8221;Child1&#8243; width=&#8221;50%&#8221; height=&#8221;50%&#8221; &gt;<br />
   &lt;mx:Image source=&#8221;../Assets/nokia1.JPG&#8221; /&gt;<br />
  &lt;/mx:Canvas&gt;<br />
  &lt;mx:Canvas label=&#8221;Child2&#8243; width=&#8221;50%&#8221; height=&#8221;50%&#8221;&gt;<br />
   &lt;mx:Image source=&#8221;../Assets/6555.jpg&#8221; /&gt;<br />
  &lt;/mx:Canvas&gt;<br />
  &lt;mx:Canvas label=&#8221;Child3&#8243; width=&#8221;50%&#8221; height=&#8221;50%&#8221;&gt;<br />
   &lt;mx:Image source=&#8221;../Assets/6500s.jpg&#8221; /&gt;   <br />
  &lt;/mx:Canvas&gt; <br />
  &lt;mx:Canvas label=&#8221;Child4&#8243; width=&#8221;50%&#8221; height=&#8221;50%&#8221; x=&#8221;10&#8243; y=&#8221;76&#8243;&gt;<br />
   &lt;mx:Image source=&#8221;../Assets/E51.jpg&#8221; /&gt;<br />
  &lt;/mx:Canvas&gt;<br />
 &lt;/mx:Accordion&gt;<br />
&lt;/mx:Application&gt;</p>
<p>Thanks &amp; Regards,<br />
<strong>R.Kasi Ruby</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=88&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/06/18/accordion-navigator-container/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>DividedBox Container</title>
		<link>http://kasiruby.wordpress.com/2009/06/18/dividedbox-container/</link>
		<comments>http://kasiruby.wordpress.com/2009/06/18/dividedbox-container/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 06:01:31 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=85</guid>
		<description><![CDATA[Definition:              It measures &#38; lays out its children horizontally or vertically in exactly the same way as a Box container. But, it inserts a draggable dividers in the gaps between the children. We can drag any divider to resize the children on each side. The direction property determines whether it is horizontal or vertical [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=85&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Definition:</strong></p>
<p>             It measures &amp; lays out its children horizontally or vertically in exactly the same way as a Box container. But, it inserts a draggable dividers in the gaps between the children. We can drag any divider to resize the children on each side. The direction property determines whether it is horizontal or vertical layout.</p>
<p><strong>Source Code:</strong></p>
<p>&lt;?xml version=&#8221;1.0&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;<a href="http://www.adobe.com/2006/mxml">http://www.adobe.com/2006/mxml</a>&#8221; layout=&#8221;absolute&#8221;&gt;</p>
<p>    &lt;mx:Panel title=&#8221;DividedBox Container &#8221; width=&#8221;530&#8243; height=&#8221;307&#8243;  paddingTop=&#8221;10&#8243; paddingLeft=&#8221;10&#8243; paddingRight=&#8221;10&#8243;                        paddingBottom=&#8221;10&#8243; x=&#8221;213.5&#8243; y=&#8221;143&#8243; borderColor=&#8221;#A56060&#8243; fontSize=&#8221;12&#8243;&gt;</p>
<p>        &lt;mx:Text width=&#8221;100%&#8221; color=&#8221;#834355&#8243; text=&#8221;Drag the divider side to side to resize the children.&#8221; fontWeight=&#8221;bold&#8221; fontSize=&#8221;11&#8243;/&gt;</p>
<p>        &lt;mx:HDividedBox width=&#8221;100%&#8221; height=&#8221;100%&#8221;&gt;<br />
           &lt;mx:VDividedBox width=&#8221;100%&#8221; height=&#8221;100%&#8221; &gt;<br />
             &lt;mx:Canvas label=&#8221;Canvas 0&#8243; width=&#8221;100%&#8221; height=&#8221;100%&#8221; backgroundColor=&#8221;#868717&#8243; &gt;<br />
                 &lt;mx:Label text=&#8221;Add components here&#8221; fontWeight=&#8221;bold&#8221; color=&#8221;#E4BEE0&#8243;  fontSize=&#8221;12&#8243;  height=&#8221;22&#8243;/&gt;<br />
             &lt;/mx:Canvas&gt;<br />
             &lt;mx:Canvas label=&#8221;Canvas 1&#8243; width=&#8221;100%&#8221; height=&#8221;100%&#8221; backgroundColor=&#8221;#868717&#8243; &gt;<br />
                 &lt;mx:Label text=&#8221;Add components here&#8221; fontWeight=&#8221;bold&#8221; color=&#8221;#E4BEE0&#8243; fontSize=&#8221;12&#8243;/&gt;<br />
            &lt;/mx:Canvas&gt;<br />
           &lt;/mx:VDividedBox&gt;</p>
<p>            &lt;mx:Canvas label=&#8221;Canvas 2&#8243; width=&#8221;100%&#8221;  height=&#8221;100%&#8221; backgroundColor=&#8221;#2C6198&#8243;&gt;<br />
                &lt;mx:Label text=&#8221;Add components here&#8221; fontWeight=&#8221;bold&#8221; color=&#8221;#CDDC28&#8243; fontSize=&#8221;12&#8243;/&gt;<br />
            &lt;/mx:Canvas&gt;</p>
<p>        &lt;/mx:HDividedBox&gt;</p>
<p>    &lt;/mx:Panel&gt;<br />
&lt;/mx:Application&gt;</p>
<p>Thanks &amp; Regards,<br />
<strong>R.Kasi Ruby</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=85&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/06/18/dividedbox-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Zipcode Validator</title>
		<link>http://kasiruby.wordpress.com/2009/06/17/zipcode-validator/</link>
		<comments>http://kasiruby.wordpress.com/2009/06/17/zipcode-validator/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 11:49:40 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=82</guid>
		<description><![CDATA[Definition:             This class validates that a string has the correct length and format for a five digit Zip code, a five digit + four digit united states Zip code, or canadian postal code. Source Code: &#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&#62; &#60;mx:Application xmlns:mx=&#8221;http://www.adobe.com/2006/mxml&#8221; layout=&#8221;absolute&#8221;&#62;     &#60;mx:Script&#62;         import mx.controls.Alert;     &#60;/mx:Script&#62;     &#60;mx:ZipCodeValidator source=&#8221;{zip}&#8221; property=&#8221;text&#8221;         trigger=&#8221;{myButton}&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=82&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Definition:</strong></p>
<p>            This class validates that a string has the correct length and format for a five digit Zip code, a five digit + four digit united states Zip code, or canadian postal code.</p>
<p><strong>Source Code:</strong></p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;<a href="http://www.adobe.com/2006/mxml">http://www.adobe.com/2006/mxml</a>&#8221; layout=&#8221;absolute&#8221;&gt;</p>
<p>    &lt;mx:Script&gt;<br />
        import mx.controls.Alert;<br />
    &lt;/mx:Script&gt;</p>
<p>    &lt;mx:ZipCodeValidator source=&#8221;{zip}&#8221; property=&#8221;text&#8221;<br />
        trigger=&#8221;{myButton}&#8221; triggerEvent=&#8221;click&#8221; <br />
        valid=&#8221;Alert.show(&#8216;Validation Succeeded!&#8217;);&#8221;/&gt;</p>
<p>    &lt;mx:Panel title=&#8221;ZipcodeValidator&#8221; width=&#8221;610&#8243; height=&#8221;158&#8243;<br />
        paddingTop=&#8221;10&#8243; paddingLeft=&#8221;10&#8243; paddingRight=&#8221;10&#8243; paddingBottom=&#8221;10&#8243; x=&#8221;174.5&#8243; y=&#8221;254&#8243;<br />
        borderColor=&#8221;#703E3E&#8221; color=&#8221;#115A27&#8243; fontSize=&#8221;12&#8243;&gt;</p>
<p>        &lt;mx:Form&gt;<br />
            &lt;mx:FormItem label=&#8221;Enter a 5 or 9 digit U.S. Zip code: &#8220;&gt;<br />
                &lt;mx:TextInput id=&#8221;zip&#8221; width=&#8221;100%&#8221;/&gt;<br />
            &lt;/mx:FormItem&gt;</p>
<p>            &lt;mx:FormItem &gt;<br />
                &lt;mx:Button id=&#8221;myButton&#8221; label=&#8221;Validate&#8221; /&gt;<br />
            &lt;/mx:FormItem&gt;<br />
        &lt;/mx:Form&gt;<br />
    &lt;/mx:Panel&gt;<br />
&lt;/mx:Application&gt;</p>
<p>Thanks &amp; Regards,<br />
<strong>R.Kasi Ruby</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=82&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/06/17/zipcode-validator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Date Validator</title>
		<link>http://kasiruby.wordpress.com/2009/06/17/date-validator/</link>
		<comments>http://kasiruby.wordpress.com/2009/06/17/date-validator/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 11:42:37 +0000</pubDate>
		<dc:creator>kasiruby</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://kasiruby.wordpress.com/?p=80</guid>
		<description><![CDATA[Definition:             It validates that a string, Date or object contains a proper date &#38; matches a specified format. We can use either a single digit or two digits for month, day &#38; year. By default, the month is between 1 &#38; 12. The day is between 1 &#38; 31. The year is a number. Source Code: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=80&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Definition:</strong></p>
<p>            It validates that a string, Date or object contains a proper date &amp; matches a specified format. We can use either a single digit or two digits for month, day &amp; year. By default, the month is between 1 &amp; 12. The day is between 1 &amp; 31. The year is a number.</p>
<p><strong>Source Code:</strong></p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;<a href="http://www.adobe.com/2006/mxml">http://www.adobe.com/2006/mxml</a>&#8221; layout=&#8221;absolute&#8221;&gt;</p>
<p>    &lt;mx:Script&gt;<br />
        import mx.controls.Alert;<br />
    &lt;/mx:Script&gt;</p>
<p>    &lt;mx:Model id=&#8221;CheckModel&#8221;&gt;<br />
        &lt;dateInfo&gt;<br />
            &lt;DOB&gt;{dob.text}&lt;/DOB&gt;<br />
        &lt;/dateInfo&gt;<br />
    &lt;/mx:Model&gt;</p>
<p>    &lt;mx:DateValidator source=&#8221;{dob}&#8221; property=&#8221;text&#8221; allowedFormatChars=&#8221;/&#8221;<br />
        trigger=&#8221;{myButton}&#8221; triggerEvent=&#8221;click&#8221;<br />
        valid=&#8221;Alert.show(&#8216;Validation Succeeded!&#8217;);&#8221;/&gt;</p>
<p>    &lt;mx:Panel title=&#8221;DateValidator&#8221; width=&#8221;605&#8243; height=&#8221;157&#8243;<br />
        paddingTop=&#8221;10&#8243; paddingLeft=&#8221;10&#8243; paddingRight=&#8221;10&#8243; paddingBottom=&#8221;10&#8243; x=&#8221;177&#8243; y=&#8221;207&#8243; borderColor=&#8221;#AB5959&#8243; color=&#8221;#9D441C&#8221; fontSize=&#8221;12&#8243;&gt;</p>
<p>        &lt;mx:Form&gt;<br />
            &lt;mx:FormItem label=&#8221;Enter date of birth (mm/dd/yyyy): &#8220;&gt;<br />
                &lt;mx:TextInput id=&#8221;dob&#8221; width=&#8221;100%&#8221;/&gt;<br />
            &lt;/mx:FormItem&gt;</p>
<p>            &lt;mx:FormItem &gt;<br />
                &lt;mx:Button id=&#8221;myButton&#8221; label=&#8221;Validate&#8221; /&gt;<br />
            &lt;/mx:FormItem&gt;<br />
        &lt;/mx:Form&gt;</p>
<p>    &lt;/mx:Panel&gt;<br />
&lt;/mx:Application&gt;</p>
<p>Thanks &amp; Regards,<br />
<strong>R.Kasi Ruby</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kasiruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kasiruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kasiruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kasiruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kasiruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kasiruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kasiruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kasiruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kasiruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kasiruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kasiruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kasiruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kasiruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kasiruby.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kasiruby.wordpress.com&amp;blog=8179124&amp;post=80&amp;subd=kasiruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kasiruby.wordpress.com/2009/06/17/date-validator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dff281d5e8a16c792cd1f3ffa4fbce9b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kasiruby</media:title>
		</media:content>
	</item>
	</channel>
</rss>
