<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>talkxe</title>
	<atom:link href="http://www.riaxe.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.riaxe.com/blog</link>
	<description>riaxe snippets</description>
	<lastBuildDate>Mon, 14 May 2012 07:11:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>HTML5 Canvas Circular Pattern Animation</title>
		<link>http://www.riaxe.com/blog/javascript/html5-canvas-circular-pattern-animation/</link>
		<comments>http://www.riaxe.com/blog/javascript/html5-canvas-circular-pattern-animation/#comments</comments>
		<pubDate>Mon, 14 May 2012 07:11:41 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Canvas]]></category>
		<category><![CDATA[circular]]></category>
		<category><![CDATA[Pattern]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=223</guid>
		<description><![CDATA[Created a random circular pattern animation generator using HTML5 canvas. Have fun testing your patterns]]></description>
			<content:encoded><![CDATA[<p>Created a random circular pattern animation generator using HTML5 canvas. Have fun testing your patterns <img src='http://www.riaxe.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="attachment_224" class="wp-caption alignleft" style="width: 654px"><a href="http://www.riaxe.com/html5cirpattern/" target="_blank"><img class="size-full wp-image-224" title="Circular Pattern HTML5 Canvas" src="http://www.riaxe.com/blog/wp-content/uploads/2012/05/Screenshot_1.jpg" alt="Circular Pattern HTML5 Canvas" width="644" height="615" /></a><p class="wp-caption-text">Circular Pattern HTML5 Canvas</p></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fjavascript%2Fhtml5-canvas-circular-pattern-animation%2F&amp;title=HTML5%20Canvas%20Circular%20Pattern%20Animation"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/javascript/html5-canvas-circular-pattern-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a HTML5 JQuery Pulse Effect using CSS</title>
		<link>http://www.riaxe.com/blog/javascript/create-a-html5-jquery-pulse-effect-using-css/</link>
		<comments>http://www.riaxe.com/blog/javascript/create-a-html5-jquery-pulse-effect-using-css/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 14:35:01 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Effect]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Pulse]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=219</guid>
		<description><![CDATA[Created a pulse effect using jquery that supports HTML5 and CSS. You just need to assign the style names assigned in the CSS and it toggles between the styles as shown in the example below. It supports HTML5 and CSS3. Use a browser that supports HTML5 to view the rectangle glow example. You can assign <a href="http://www.riaxe.com/blog/javascript/create-a-html5-jquery-pulse-effect-using-css/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Created a pulse effect using jquery that supports HTML5 and CSS. You just need to assign the style names assigned in the CSS and it toggles between the styles as shown in the example below. It supports HTML5 and CSS3. Use a browser that supports HTML5 to view the rectangle glow example. You can assign the duration of the pulse and the repeat number of times. Assigning no repeat value makes the pulse run infinitely. You can also stop the pulse using the stopPulse method for the class running the pulse. </p>
<p>&nbsp;</p>
<p><span style="color: #333399;">$(window).load(function()</span><br /><span style="color: #333399;">{</span><br /><span style="color: #333399;">    $(&#8220;.glowbox&#8221;).pulse(&#8220;box&#8221;, &#8220;pulse&#8221;, 500, 20);</span><br /><span style="color: #333399;">    $(&#8220;.icon&#8221;).pulse(&#8220;icon&#8221;, &#8220;pulse&#8221;, 300);</span><br /><span style="color: #333399;">});</span></p>
<p>&nbsp;</p>
<p>You can download the example source from <a title="JSPulse Download" href="http://riaxe.com/demo/jspulse/jspulse.rar" target="_blank">here</a></p>
<p>View the working example <a title="JSPulse Example" href="http://riaxe.com/demo/jspulse" target="_blank">here</a></p>
<p><a href="http://riaxe.com/demo/jspulse" target="_blank"><img class="alignleft size-full wp-image-220" title="HTML5 Jquery Pulse Effect CSS" src="http://www.riaxe.com/blog/wp-content/uploads/2012/04/Screenshot_1.jpg" alt="Jquery Pulse Using CSS" width="236" height="253" /></a></p>
<p>&nbsp;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fjavascript%2Fcreate-a-html5-jquery-pulse-effect-using-css%2F&amp;title=Create%20a%20HTML5%20JQuery%20Pulse%20Effect%20using%20CSS"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/javascript/create-a-html5-jquery-pulse-effect-using-css/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Run Flex/AIR Mobile app in the background</title>
		<link>http://www.riaxe.com/blog/flex/run-flexair-mobile-app-in-the-background/</link>
		<comments>http://www.riaxe.com/blog/flex/run-flexair-mobile-app-in-the-background/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 17:40:26 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=215</guid>
		<description><![CDATA[Running a Flex Mobile application in the background for iOS and Android is explained below as per adobe: &#160; iOS background behavior [Not Supported] On iOS, applications are not permitted to run in the background in a generic fashion. Instead, they must declare that they want to perform a certain type of background processing, such <a href="http://www.riaxe.com/blog/flex/run-flexair-mobile-app-in-the-background/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Running a Flex Mobile application in the background for iOS and Android is explained below as per adobe:</p>
<p>&nbsp;</p>
<h4>iOS background behavior [Not Supported]</h4>
<p>On iOS, applications are not permitted to run in the background in a generic fashion. Instead, they must declare that they want to perform a certain type of background processing, such as keeping a voice-over-IP call going or completing a pending upload.</p>
<p>AIR does not provide support for this iOS background processing model, so when they are sent to the background, AIR apps are simply paused. Their framerate goes to zero, no events are dispatched, and no rendering occurs. They do, however, stay resident in memory by default. This allows the application to preserve its state when brought back to the foreground.</p>
<p>&nbsp;</p>
<h4>Android background behavior [Partially Supported]</h4>
<p>On Android, applications are encouraged to do as little as possible in the background but do not have severe restrictions imposed. When an AIR application is sent to the background on Android, its animation framerate is reduced to four frames per second and, although all events continue to be dispatched, the rendering phase of the event loop is skipped.</p>
<p>AIR apps on Android therefore can continue to perform background tasks, such as completing an upload or download operation, or periodically syncing information. However, applications should take steps to further reduce their framerate, turn off or reduce other timers, and so on, when in the background.</p>
<p>&nbsp;</p>
<p><strong>Reference: </strong>http://www.adobe.com/devnet/air/articles/considerations-air-apps-mobile.html</p>
<p>&nbsp;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fflex%2Frun-flexair-mobile-app-in-the-background%2F&amp;title=Run%20Flex%2FAIR%20Mobile%20app%20in%20the%20background"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/flex/run-flexair-mobile-app-in-the-background/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APN using Flex Mobile in Windows &#8211; Native Extensions &#8211; iOS Build Issues [Solved]</title>
		<link>http://www.riaxe.com/blog/uncategorized/apn-using-flex-mobile-in-windows-native-extensions/</link>
		<comments>http://www.riaxe.com/blog/uncategorized/apn-using-flex-mobile-in-windows-native-extensions/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 12:48:40 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[as3]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[APN]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Native]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=214</guid>
		<description><![CDATA[Its always difficult developing iOS apps on Windows as we don&#8217;t have access to the native stuff. While using Native Extensions for iOS devices we often miss-configure the application xml. I used the example application for using Apple Push Notifications mentioned here &#8211; http://flashsimulations.com/2011/12/16/apple-push-notification-service-native-extension-for-adobe-air/ We need to follow the following steps in order to use <a href="http://www.riaxe.com/blog/uncategorized/apn-using-flex-mobile-in-windows-native-extensions/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Its always difficult developing iOS apps on Windows as we don&#8217;t have access to the native stuff. While using Native Extensions for iOS devices we often miss-configure the application xml.</p>
<p>I used the example application for using Apple Push Notifications mentioned here &#8211; http://flashsimulations.com/2011/12/16/apple-push-notification-service-native-extension-for-adobe-air/</p>
<p>We need to follow the following steps in order to use Native Extensions for iOS on Windows using Flash Builder 4.6 and AIR 3.1:</p>
<p style="padding-left: 30px;">- <strong>We need to add the app id configured in apple&#8217;s developer portal.</strong></p>
<p style="padding-left: 60px;">&lt;!&#8211; A universally unique application identifier. Must be unique across all AIR applications.<br /> Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. &#8211;&gt;<br /> &lt;id&gt;com.riaxe.testapp&lt;/id&gt;</p>
<p style="padding-left: 30px;">- <strong>We need to copy the Entitlements present in the pList file from the mobileprovision file<br /> </strong></p>
<p style="padding-left: 60px;">We can get the Entitlements from the mobileprovision file that we use. We can get the mobileprovision file from the apple&#8217;s developer portal.</p>
<p style="padding-left: 60px;">We can copy the XML from the file under Entitlements section.</p>
<p style="padding-left: 60px;">&lt;key&gt;Entitlements&lt;/key&gt;<br /> &lt;dict&gt;<br /> &lt;key&gt;application-identifier&lt;/key&gt;<br /> &lt;string&gt;LACP5QKG47.com.riaxe.testapp&lt;/string&gt;<br /> &lt;key&gt;get-task-allow&lt;/key&gt;<br /> &lt;true/&gt;<br /> &lt;key&gt;keychain-access-groups&lt;/key&gt;<br /> &lt;array&gt;<br /> &lt;string&gt;LACP5QKG47.*&lt;/string&gt;<br /> &lt;/array&gt;<br /> &lt;/dict&gt;</p>
<p style="padding-left: 30px;">- <strong>We need to add the Entitlements XML structure onto the Application XML</strong></p>
<p style="padding-left: 60px;">&lt;iPhone&gt;<br /> &lt;Entitlements&gt;<br /> &lt;![CDATA[<br /> &lt;key&gt;application-identifier&lt;/key&gt;<br /> &lt;string&gt;LACP5WER47.com.riaxe.testapp&lt;/string&gt;<br /> &lt;key&gt;get-task-allow&lt;/key&gt;<br /> &lt;true/&gt;<br /> &lt;key&gt;keychain-access-groups&lt;/key&gt;<br /> &lt;array&gt;<br /> &lt;string&gt;LACP5WER47.*&lt;/string&gt;<br /> &lt;/array&gt;<br /> ]]&gt;<br /> &lt;/Entitlements&gt;<br /> &lt;InfoAdditions&gt;&lt;![CDATA[<br /> &lt;key&gt;UIDeviceFamily&lt;/key&gt;<br /> &lt;array&gt;<br /> &lt;string&gt;1&lt;/string&gt;<br /> &lt;string&gt;2&lt;/string&gt;<br /> &lt;/array&gt;<br /> ]]&gt;&lt;/InfoAdditions&gt;<br /> &lt;requestedDisplayResolution&gt;high&lt;/requestedDisplayResolution&gt;<br /> &lt;/iPhone&gt;</p>
<p style="padding-left: 30px;">Done!!! This would definitely fix build issues in Flash Builder 4.6 for iOS devices.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Funcategorized%2Fapn-using-flex-mobile-in-windows-native-extensions%2F&amp;title=APN%20using%20Flex%20Mobile%20in%20Windows%20%26%238211%3B%20Native%20Extensions%20%26%238211%3B%20iOS%20Build%20Issues%20%5BSolved%5D"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/uncategorized/apn-using-flex-mobile-in-windows-native-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Viewstack initializing dynamic child issue [Solved]</title>
		<link>http://www.riaxe.com/blog/flex/flex-viewstack-initializing-dynamic-child-issue-solved/</link>
		<comments>http://www.riaxe.com/blog/flex/flex-viewstack-initializing-dynamic-child-issue-solved/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 09:58:14 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[viewstack]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=212</guid>
		<description><![CDATA[We often use a viewstack component to display stacked UI elements. When we add components using MXML we often don&#8217;t face any issues related to the indexing. &#60;mx:ViewStack&#62;       &#60;mx:Panel id=&#8221;panel1&#8243;/&#62;       &#60;mx:Panel id=&#8221;panel2&#8243;/&#62; &#60;/mx:ViewStack&#62; But when we try adding the components at an index using Actionscript we often face issues with the initialization of <a href="http://www.riaxe.com/blog/flex/flex-viewstack-initializing-dynamic-child-issue-solved/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>We often use a viewstack component to display stacked UI elements.</p>
<p>When we add components using MXML we often don&#8217;t face any issues related to the indexing.</p>
<p><strong>&lt;mx:ViewStack&gt;</strong></p>
<p><strong>      &lt;mx:Panel id=&#8221;panel1&#8243;/&gt;</strong></p>
<p><strong>      &lt;mx:Panel id=&#8221;panel2&#8243;/&gt;</strong></p>
<p><strong>&lt;/mx:ViewStack&gt;</strong></p>
<p>But when we try adding the components at an index using Actionscript we often face issues with the initialization of the child view components.</p>
<p><strong>private function addViewAtIndex(index:Number):void</strong></p>
<p><strong>{</strong></p>
<p><strong>      var pnl:Panel= new LoaderPanelCanvas();</strong><br /> <strong>      addChild(pnl);</strong></p>
<p><strong>}</strong></p>
<p>I found a workaround to this. I extended the Canvas to create a custom component with all the related properties as shown below:</p>
<p><strong>public class SlideViewStack extends Canvas</strong><br /> <strong>{</strong></p>
<p><strong>        public function SlideViewStack()</strong><br /> <strong>        {</strong><br /> <strong>            initialise();</strong><br /> <strong>        }</strong></p>
<p><strong>        private var _selectedIndex:Number = -1;</strong><br /> <strong>        public function get selectedIndex():Number</strong><br /> <strong>        {</strong><br /> <strong>              return _selectedIndex</strong><br /> <strong>        }</strong></p>
<p><strong>        public function set selectedIndex(value:Number):void</strong><br /> <strong>        {</strong><br /> <strong>            if(_selectedIndex == value)</strong><br /> <strong>                return;</strong><br /> <strong>            _selectedIndex = value;</strong></p>
<p><strong>            if(this.numChildren &gt; 0)</strong><br /> <strong>                showSelectedChild();</strong><br /> <strong>        }</strong></p>
<p><strong>        private function showSelectedChild():void</strong><br /> <strong>        {</strong><br /> <strong>            for(var i:int = 0; i &lt; this.numChildren; i++)</strong><br /> <strong>            {</strong><br /> <strong>                getChildAt(i).visible = false;</strong><br /> <strong>            }</strong><br /> <strong>            getChildAt(_selectedIndex).visible = true;</strong><br /> <strong>        }</strong></p>
<p><strong>}</strong></p>
<p>Hope it helps <img src='http://www.riaxe.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fflex%2Fflex-viewstack-initializing-dynamic-child-issue-solved%2F&amp;title=Flex%20Viewstack%20initializing%20dynamic%20child%20issue%20%5BSolved%5D"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/flex/flex-viewstack-initializing-dynamic-child-issue-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Touch Drag/Gesture Pan using AS3 TouchEvents</title>
		<link>http://www.riaxe.com/blog/flex/simple-touch-dragpan-using-as3-touchevents/</link>
		<comments>http://www.riaxe.com/blog/flex/simple-touch-dragpan-using-as3-touchevents/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 14:06:26 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[drag]]></category>
		<category><![CDATA[gesture]]></category>
		<category><![CDATA[multitouch]]></category>
		<category><![CDATA[pan]]></category>
		<category><![CDATA[touch]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=209</guid>
		<description><![CDATA[Had some difficulties using the Gesture event panning. It didn&#8217;t work in most of the cases. Fixed the panning/dragging issues using touch events instead. //Use this on initialisation Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT; //Image Component with touch event &#60;s:Image id=&#8221;image&#8221; x=&#8221;203&#8243; y=&#8221;380&#8243; source=&#8221;@Embed(&#8216;assets/image.png&#8217;)&#8221; touchBegin=&#8221;onTouchBegin(event)&#8221;/&#62; //Image pan on touch begin protected function onPan(event:TransformGestureEvent):void{      image.x += event.offsetX;      <a href="http://www.riaxe.com/blog/flex/simple-touch-dragpan-using-as3-touchevents/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Had some difficulties using the Gesture event panning. It didn&#8217;t work in most of the cases. Fixed the panning/dragging issues using touch events instead.</p>
<p>//Use this on initialisation</p>
<p>Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;</p>
<p>//Image Component with touch event</p>
<p>&lt;s:Image id=&#8221;image&#8221; x=&#8221;203&#8243; y=&#8221;380&#8243; source=&#8221;@Embed(&#8216;assets/image.png&#8217;)&#8221; touchBegin=&#8221;onTouchBegin(event)&#8221;/&gt;</p>
<p>//Image pan on touch begin</p>
<p>protected function onPan(event:TransformGestureEvent):void<br />{<br />      image.x += event.offsetX;<br />      image.y += event.offsetY;<br />}</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fflex%2Fsimple-touch-dragpan-using-as3-touchevents%2F&amp;title=Simple%20Touch%20Drag%2FGesture%20Pan%20using%20AS3%20TouchEvents"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/flex/simple-touch-dragpan-using-as3-touchevents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Transform Tools/Transform Managers built in AS3 for Flex and Flash</title>
		<link>http://www.riaxe.com/blog/flex/top-10-transform-tools-built-in-as3-for-flex-and-flash/</link>
		<comments>http://www.riaxe.com/blog/flex/top-10-transform-tools-built-in-as3-for-flex-and-flash/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 07:12:05 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flash builder]]></category>
		<category><![CDATA[text scaling]]></category>
		<category><![CDATA[top 10]]></category>
		<category><![CDATA[transform tool]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=195</guid>
		<description><![CDATA[&#160; ryantan.net &#8211; free transform manager &#160; quietless.com &#8211; transform tool &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; senocular.com &#8211; flash transform tool &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; joelhooks.com &#8211; transform tool &#160; &#160; &#160; &#160; &#160; &#160; &#160; <a href="http://www.riaxe.com/blog/flex/top-10-transform-tools-built-in-as3-for-flex-and-flash/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><span style="text-decoration: underline;"><a href="http://blog.ryantan.net/2010/08/free-transform-manager/" target="_blank"><strong>ryantan.net &#8211; free transform manager</strong></a></span></p>
<p><a href="http://blog.ryantan.net/2010/08/free-transform-manager/"><img class="alignleft size-full wp-image-196" title="Ryan Tan Free Transform Manager" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/Ryan-Tan-Free-Transform-Manager.jpg" alt="" width="619" height="470" /></a></p>
<p>&nbsp;</p>
<p><strong><a href="http://www.quietless.com/kitchen/transform-tool-drag-scale-and-rotate-at-runtime/" target="_blank">quietless.com &#8211; transform tool</a></strong></p>
<p><a href="http://www.riaxe.com/blog/wp-content/uploads/2012/01/quiteless-transform-tool.jpg"><img class="alignleft size-full wp-image-197" title="quiteless transform-tool" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/quiteless-transform-tool.jpg" alt="" width="575" height="360" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.senocular.com/demo/TransformToolAS3/TransformTool.html" target="_blank"><strong>senocular.com &#8211; flash transform tool</strong></a></p>
<p><a href="http://www.senocular.com/demo/TransformToolAS3/TransformTool.html"><img class="alignleft size-full wp-image-198" title="Senocular Flash as3 transform tool" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/Senocular-Flash-as3-transform-tool.jpg" alt="" width="545" height="398" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://joelhooks.com/examples/transformTool/"><strong>joelhooks.com &#8211; transform tool</strong></a></p>
<p><a href="http://joelhooks.com/examples/transformTool/"><strong></strong><img class="alignleft size-full wp-image-199" title="Joel hools transform tool" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/Joel-hools-transform-tool.jpg" alt="" width="471" height="429" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://vstyran-flex.blogspot.com/2011/10/transform-tool-22.html" target="_blank"><strong>vstyran &#8211; experimental transform tool</strong></a></p>
<p><a href="http://vstyran-flex.blogspot.com/2011/10/transform-tool-22.html"><img class="alignleft size-full wp-image-200" title="vstyran transform tool" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/vstyran-transform-tool.jpg" alt="" width="455" height="297" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.sephiroth.it/weblog/archives/2007/07/transformtool_modification.php" target="_blank"><strong>sephiroth &#8211; senocular modified transform tool</strong></a></p>
<p><a href="http://www.sephiroth.it/weblog/archives/2007/07/transformtool_modification.php"><img class="alignleft size-full wp-image-202" title="sephiroth transform tool" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/sephiroth-transform-tool1.jpg" alt="" width="480" height="330" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.rogue-development.com/objectHandles.html" target="_blank"><strong>rogue-development &#8211; object handles for flex</strong></a></p>
<p><a href="http://www.rogue-development.com/objectHandles.html"><img class="alignleft size-full wp-image-204" title="Rouge dev object handles" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/Rouge-dev-object-handles1.jpg" alt="" width="576" height="361" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.greensock.com/transformmanageras3/" target="_blank"><strong>greensock &#8211; transform manager</strong></a></p>
<p><a href="http://www.greensock.com/transformmanageras3/"><img class="alignleft size-full wp-image-205" title="greensock transform manager" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/greensock-transform-manager.jpg" alt="" width="545" height="361" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.riaxe.com/blog/flex/transform-tool-in-as3-for-scaling-rotating-components-containing-text-controls-in-flex/" target="_blank"><strong>riaxe.com &#8211; transform tool as3</strong></a></p>
<p><a href="http://www.riaxe.com/blog/flex/transform-tool-in-as3-for-scaling-rotating-components-containing-text-controls-in-flex/"><img class="alignleft size-full wp-image-207" title="riaxe transform tool as3" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/riaxe-transform-tool-as31.jpg" alt="" width="373" height="400" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.riaxe.com/blog/flex/as3-flex-4-support-transform-tool-with-text-scaling-and-dynamic-menu/" target="_blank"><strong>riaxe.com &#8211; text scaling, dynamic menu and flex 4 support</strong></a></p>
<div class="mceTemp">
<dl id="attachment_192" class="wp-caption alignleft" style="width: 499px;">
<dt class="wp-caption-dt"><a href="http://www.riaxe.com/blog/flex/as3-flex-4-support-transform-tool-with-text-scaling-and-dynamic-menu/"><img class="size-full wp-image-192" title="tranformtoolv2" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/tranformtoolv21.png" alt="" width="489" height="542" /></a></dt>
</dl>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fflex%2Ftop-10-transform-tools-built-in-as3-for-flex-and-flash%2F&amp;title=Top%2010%20Transform%20Tools%2FTransform%20Managers%20built%20in%20AS3%20for%20Flex%20and%20Flash"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/flex/top-10-transform-tools-built-in-as3-for-flex-and-flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AS3 Transform tool [Flex 4 Support] with text scaling and dynamic menu</title>
		<link>http://www.riaxe.com/blog/flex/as3-flex-4-support-transform-tool-with-text-scaling-and-dynamic-menu/</link>
		<comments>http://www.riaxe.com/blog/flex/as3-flex-4-support-transform-tool-with-text-scaling-and-dynamic-menu/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 18:24:27 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flash builder]]></category>
		<category><![CDATA[flex 4]]></category>
		<category><![CDATA[text scaling]]></category>
		<category><![CDATA[transform tool]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=190</guid>
		<description><![CDATA[New AS3 &#8211; Flex 4 Transform tool with text scaling Features Listed: Flex 3 and Flash Builder 4 support. Works on both mx and spark componentsAttachable Menus where functionality can be added programmaticallyTranforms almost all the components &#8211; Video, Image, Buttons etc without creating bitmapAdvanced tranform features like &#8211; Scale, Rotate, Horizontal and Vertical FlipAutomatic <a href="http://www.riaxe.com/blog/flex/as3-flex-4-support-transform-tool-with-text-scaling-and-dynamic-menu/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>New AS3 &#8211; Flex 4 Transform tool with text scaling</p>
<p>Features Listed:</p>
<p>Flex 3 and Flash Builder 4 support. Works on both mx and spark components<br />Attachable Menus where functionality can be added programmatically<br />Tranforms almost all the components &#8211; Video, Image, Buttons etc without creating bitmap<br />Advanced tranform features like &#8211; Scale, Rotate, Horizontal and Vertical Flip<br />Automatic calculation of boundary while live transforming<br />Scaling of target using width and height ratio<br />Ability to add dynamic controls onto the transform tool<br />Fully customizable design of the transform tool<br />100% customizable code and graphic assets<br />Well documented actionscript methods and properties</p>
<p><div id="attachment_192" class="wp-caption alignleft" style="width: 499px"><a href="http://riaxe.com/demo/transformtoolv2/"><img class="size-full wp-image-192" title="tranformtoolv2" src="http://www.riaxe.com/blog/wp-content/uploads/2012/01/tranformtoolv21.png" alt="" width="489" height="542" /></a><p class="wp-caption-text">Tranform tool v2</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Live Example can be found <a title="Tranform Tool V2" href="http://riaxe.com/demo/transformtoolv2/" target="_blank">here</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fflex%2Fas3-flex-4-support-transform-tool-with-text-scaling-and-dynamic-menu%2F&amp;title=AS3%20Transform%20tool%20%5BFlex%204%20Support%5D%20with%20text%20scaling%20and%20dynamic%20menu"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/flex/as3-flex-4-support-transform-tool-with-text-scaling-and-dynamic-menu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Console Application in C++ to get Window Titles</title>
		<link>http://www.riaxe.com/blog/net/console-application-in-c-to-get-window-titles/</link>
		<comments>http://www.riaxe.com/blog/net/console-application-in-c-to-get-window-titles/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 06:07:22 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Cosole]]></category>
		<category><![CDATA[Titles]]></category>
		<category><![CDATA[Window]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=188</guid>
		<description><![CDATA[Hi All, I am not a .net guy but compiled this useful script to get the open window titles. ============================================== #include &#60;windows.h&#62;#include &#60;cstdio&#62; BOOL CALLBACK MyEnumWindowsProc(HWND hwnd, LPARAM lparam){    HWND lShellWindow = GetShellWindow();    int&#38; i = *(reinterpret_cast&#60;int*&#62;(lparam));    ++i;    char title[256];    ::GetWindowText(hwnd, title, sizeof(title));     if (hwnd == lShellWindow) return true;    if (!IsWindowVisible(hwnd)) return true;     <a href="http://www.riaxe.com/blog/net/console-application-in-c-to-get-window-titles/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Hi All, I am not a .net guy but compiled this useful script to get the open window titles.</p>
<p>==============================================</p>
<p>#include &lt;windows.h&gt;<br />#include &lt;cstdio&gt;</p>
<p>BOOL CALLBACK MyEnumWindowsProc(HWND hwnd, LPARAM lparam)<br />{<br />    HWND lShellWindow = GetShellWindow();<br />    int&amp; i = *(reinterpret_cast&lt;int*&gt;(lparam));<br />    ++i;<br />    char title[256];<br />    ::GetWindowText(hwnd, title, sizeof(title));</p>
<p>    if (hwnd == lShellWindow) return true;<br />    if (!IsWindowVisible(hwnd)) return true;</p>
<p>    int lLength = GetWindowTextLength(hwnd);<br />    if (lLength == 0) return true;</p>
<p>    ::printf(title);<br />    ::printf(&#8220;\n&#8221;);<br />    return TRUE;<br />}</p>
<p>int main()<br />{<br />    int i = 0;<br />    ::EnumWindows(&amp;MyEnumWindowsProc, reinterpret_cast&lt;LPARAM&gt;(&amp;i));<br />    return 0;<br />}</p>
<p>&nbsp;</p>
<p>========================================</p>
<p>&nbsp;</p>
<p>Hope this helps <img src='http://www.riaxe.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Fnet%2Fconsole-application-in-c-to-get-window-titles%2F&amp;title=Console%20Application%20in%20C%2B%2B%20to%20get%20Window%20Titles"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/net/console-application-in-c-to-get-window-titles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash &#124; Javascript Based Streaming Internet Radio Application &#8211; Hindi Stations</title>
		<link>http://www.riaxe.com/blog/actionscript/flash-javascript-based-streaming-internet-radio-application-hindi-stations/</link>
		<comments>http://www.riaxe.com/blog/actionscript/flash-javascript-based-streaming-internet-radio-application-hindi-stations/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 11:50:29 +0000</pubDate>
		<dc:creator>Riaxe Admin</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://www.riaxe.com/blog/?p=185</guid>
		<description><![CDATA[Flash &#124; Javascript based Streaming Online Radio with Hindi Channels.  Absolutely no server side.]]></description>
			<content:encoded><![CDATA[<p><div class="wp-caption alignnone" style="width: 260px"><a href="http://riaxe.com/demo/radio"><img title="Flash | Javascript AS3 Radio App" src="http://riaxe.com/demo/radio/images/thumb.png" alt="" width="250" height="131" /></a><p class="wp-caption-text">Flash Radio</p></div>
<p>Flash | Javascript based Streaming Online Radio with Hindi Channels.  Absolutely no server side.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.riaxe.com%2Fblog%2Factionscript%2Fflash-javascript-based-streaming-internet-radio-application-hindi-stations%2F&amp;title=Flash%20%7C%20Javascript%20Based%20Streaming%20Internet%20Radio%20Application%20%26%238211%3B%20Hindi%20Stations"><img src="http://www.riaxe.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.riaxe.com/blog/actionscript/flash-javascript-based-streaming-internet-radio-application-hindi-stations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

