<?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>Designscripting &#187; Flex</title>
	<atom:link href="http://www.designscripting.com/category/flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designscripting.com</link>
	<description>Latest in flash, Free slideshow, Flash tutorials, advance flash, actionscript, Adobe Air, flash slideshow, New technology, RIA, Abstract wall paper</description>
	<lastBuildDate>Thu, 17 Jun 2010 09:48:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>To find percentage between two given values</title>
		<link>http://www.designscripting.com/2010/06/to-find-percentage-between-two-given-values/</link>
		<comments>http://www.designscripting.com/2010/06/to-find-percentage-between-two-given-values/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 09:48:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=426</guid>
		<description><![CDATA[Formulae:
((X &#8211; minValue)/(maxValue &#8211; minValue)) * 100
Suppose we need to convert 14 &#8211; 100 as 0% &#8211; 100%
X may be any input from 14 to 100, and the calculation is 
((X &#8211; 14)/(100 &#8211; 14)) * 100
This might be usefull in scrollBar calculations or when we want to restrict size of Image and so on.
]]></description>
			<content:encoded><![CDATA[<p>Formulae:<br />
((X &#8211; minValue)/(maxValue &#8211; minValue)) * 100</p>
<p>Suppose we need to convert 14 &#8211; 100 as 0% &#8211; 100%</p>
<p>X may be any input from 14 to 100, and the calculation is </p>
<p>((X &#8211; 14)/(100 &#8211; 14)) * 100</p>
<p>This might be usefull in scrollBar calculations or when we want to restrict size of Image and so on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/06/to-find-percentage-between-two-given-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mx_internal in Flex</title>
		<link>http://www.designscripting.com/2010/03/mx_internal-in-flex/</link>
		<comments>http://www.designscripting.com/2010/03/mx_internal-in-flex/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 10:28:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=406</guid>
		<description><![CDATA[I came across a nice topic in Flex today its &#8220;mx_internal&#8221;.
mx_internal is a access modifier in Flex source code, since Flex is an open source you can look into the code. Adobe has encapsulated some variables in Flex Framework that will change in future release of Flex, So its good to avoid using mx_internal in projects.
mx_internal is a way to access variables that are hidden but available to use for developers.
we can use the variables in the code before that we need to import.
import mx.core.mx_internal;
< ?xml version="1.0" encoding="utf-8"?>


	
		< ![CDATA[
			import mx.controls.TextInput;
			import ...]]></description>
			<content:encoded><![CDATA[<p>I came across a nice topic in Flex today its &#8220;mx_internal&#8221;.<br />
mx_internal is a access modifier in Flex source code, since Flex is an open source you can look into the code. Adobe has encapsulated some variables in Flex Framework that will change in future release of Flex, So its good to avoid using mx_internal in projects.</p>
<p>mx_internal is a way to access variables that are hidden but available to use for developers.</p>
<p>we can use the variables in the code before that we need to import.</p>
<p>import mx.core.mx_internal;</p>
<pre class="brush:as3">< ?xml version="1.0" encoding="utf-8"?>
<mx :Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="1024" minHeight="768">

	</mx><mx :Script>
		< ![CDATA[
			import mx.controls.TextInput;
			import mx.core.mx_internal;

			protected function initButton():void
			{
				var tf:TextField = bt.mx_internal::getTextField()
				tf.visible = false;
			}
		]]&gt;
	</mx>
	<mx :Button id="bt" initialize="initButton()" label="asdasd"/>
</pre>
<p>Here we are accesing the TextField from button and making it invisible. So this is just an easy way to access all the variables of a component.</p>
<p>Note:<br />
Adobe uses the mx_internal namespace to mark things that may change in future versions of the framework , so you have to use it at your own risk.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/03/mx_internal-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe have released Flash player 10.1 for Mobiles</title>
		<link>http://www.designscripting.com/2010/03/adobe-have-released-flash-player-10-1-for-mobiles/</link>
		<comments>http://www.designscripting.com/2010/03/adobe-have-released-flash-player-10-1-for-mobiles/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 07:23:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=346</guid>
		<description><![CDATA[Adobe have released Flash player 10.1 for Mobiles. The full Flash Player will be available on smartphones and other Internet-connected mobile devices, To deliver on a high level of consistency and move onto mobile platforms with limited memory and processing resources, Flash Player 10.1 leverages hardware acceleration of graphics and video and many other performance improvements, such as rendering, scripting, memory utilization, start-up time, battery and CPU optimizations.

Flash Player 10.1 is also designed to take advantage of media delivery with HTTP streaming, including integration of content protection powered by Adobe ...]]></description>
			<content:encoded><![CDATA[<p>Adobe have released Flash player 10.1 for Mobiles. The full Flash Player will be available on smartphones and other Internet-connected mobile devices, To deliver on a high level of consistency and move onto mobile platforms with limited memory and processing resources, Flash Player 10.1 leverages hardware acceleration of graphics and video and many other performance improvements, such as rendering, scripting, memory utilization, start-up time, battery and CPU optimizations.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/03/Player_10.1.jpg"><img class="aligncenter size-full wp-image-347" title="Player_10.1" src="http://www.designscripting.com/wp-content/uploads/2010/03/Player_10.1.jpg" alt="Player_10.1" width="300" height="358" /></a></p>
<p>Flash Player 10.1 is also designed to take advantage of media delivery with HTTP streaming, including integration of content protection powered by Adobe Flash Access 2.0. This initiative, codenamed Zeri, will be an open format based on industry standards and will provide content publishers, distributors and partners the tools they need to utilize HTTP infrastructures for high-quality media delivery in Flash Player 10.1 and Adobe Air 2.0 software.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/03/adobe-have-released-flash-player-10-1-for-mobiles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>To use Flex SWC files in Flash CS4</title>
		<link>http://www.designscripting.com/2010/02/to-use-flex-swc-files-in-flash-cs4/</link>
		<comments>http://www.designscripting.com/2010/02/to-use-flex-swc-files-in-flash-cs4/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 07:20:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=339</guid>
		<description><![CDATA[Now we can use the SWC files created for Flex applications in Flash.
Just we need to add the SWC to Flash compiler. Follow the steps to use Flex SWC files in Flash development.
1. Open new File Flash CS4.
 2. Select File &#62; Publish Settings or Press Ctrl + Shift + F12, Publish Settings window will Popup.
 3. Click on Settings&#8230;  and Select Library path

4. Click on Plus Symbol to add SWC path or File.

5. Copy and Paste the Flex SWC files Path.
For example:C:\Program Files\Adobe\Adobe Flash Builder Beta 2\sdks\4.0.0\frameworks\libs
Thats it ...]]></description>
			<content:encoded><![CDATA[<p>Now we can use the SWC files created for Flex applications in Flash.<br />
Just we need to add the SWC to Flash compiler. Follow the steps to use Flex SWC files in Flash development.</p>
<p><strong>1.</strong> Open new File Flash CS4.<br />
<strong> 2.</strong> Select File &gt; Publish Settings or Press Ctrl + Shift + F12, Publish Settings window will Popup.<br />
<strong> 3.</strong> Click on Settings&#8230;  and Select Library path</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/publish-settings.jpg"><img class="aligncenter size-full wp-image-340" title="publish-settings" src="http://www.designscripting.com/wp-content/uploads/2010/02/publish-settings.jpg" alt="publish-settings" width="449" height="308" /></a></p>
<p><strong>4.</strong> Click on Plus Symbol to add SWC path or File.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/Settings.jpg"><img class="aligncenter size-full wp-image-341" title="Settings" src="http://www.designscripting.com/wp-content/uploads/2010/02/Settings.jpg" alt="Settings" width="449" height="308" /></a></p>
<p><strong>5</strong>. Copy and Paste the Flex SWC files Path.</p>
<p><span style="color: #993300;">For example:</span><em><span style="color: #808080;">C:\Program Files\Adobe\Adobe Flash Builder Beta 2\sdks\4.0.0\frameworks\libs</span></em></p>
<p>Thats it now we can compile SWC files created for Flex Applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/02/to-use-flex-swc-files-in-flash-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create First Java Application in Red5 Server</title>
		<link>http://www.designscripting.com/2010/02/create-first-java-application-in-red5-server/</link>
		<comments>http://www.designscripting.com/2010/02/create-first-java-application-in-red5-server/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 08:28:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RED5]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=328</guid>
		<description><![CDATA[Last we have seen how to Install/Setup Red5 Server. If you dont have the Red5 Setup in your system click here.
In this tutorial we are going to see how to make new Red5 Project.
Before trying this tutorial, make sure the Red5 Server and its sample runs.
Type http://127.0.0.1:5080/ in address bar of your browser and you will see the page below.

Next we will see how to setup server-side code in Eclipse.
Download and install Eclipse for Java EE.
1. Create new Java Project in Eclipse. delete the src folder
 2. Create WEB-INF folder ...]]></description>
			<content:encoded><![CDATA[<p>Last we have seen <a href="http://www.designscripting.com/2009/03/installing-and-deploying-red5-server-in-tomcat-server/" target="_blank">how to Install/Setup Red5 Serve</a>r. If you dont have the Red5 Setup in your system <a href="http://www.designscripting.com/2009/03/installing-and-deploying-red5-server-in-tomcat-server/" target="_blank">click here</a>.</p>
<p>In this tutorial we are going to see how to make new Red5 Project.</p>
<p>Before trying this tutorial, make sure the Red5 Server and its sample runs.</p>
<p>Type <span style="color: #003366;">http://127.0.0.1:5080/</span> in address bar of your browser and you will see the page below.</p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/StartPage.png"><img class="aligncenter size-full wp-image-330" title="StartPage" src="http://www.designscripting.com/wp-content/uploads/2010/02/StartPage.png" alt="StartPage" width="400" height="193" /></a></p>
<p><strong><em>Next we will see how to setup server-side code in Eclipse.</em></strong></p>
<p>Download and install Eclipse for Java EE.</p>
<p><strong>1.</strong> Create new Java Project in Eclipse. delete the src folder<br />
<strong> 2.</strong> Create WEB-INF folder under the project with sub-folders src and classes<br />
<strong> 3. </strong>Right click src folder under the project then select- Build path &gt; use as source folder.<br />
<strong> 4.</strong> Again right click WEB-INF/src folder under the project then select- Build path &gt; Configure Output Folder.<br />
<strong> 5.</strong> Right click Project &gt; Properties from the Menu. Select Java Build Path from Left Menu.<br />
<strong> 6</strong>. On Right side tabs click on Libraries &gt; Add External Jars.. Select red5.jar from Red5 root installation folder(example: C:\Program Files\Red5\red5.jar)<br />
<strong> 7.</strong> Right Click on src &gt; new &gt; Class. Type the Package name like org.red5.sample, Class name then click on Finish.<br />
<strong> 8.</strong> Type some Java code and compile the application by Run Menu/ Run Icon.<br />
<strong> 9.</strong> Navigate to Red 5&gt; Doc &gt; Templates &gt; MyApp &gt; WEB-INF copy the four files into your newly created WEB-INF folder under the Project.<br />
<strong> 10.</strong> Refresh your project in eclipse so you can now see the four files.</p>
<p><strong><em>Now we need to deploy the application to Red5 Server.</em></strong></p>
<p><strong>11</strong>. Create Folder and name it like Red5App under Red5 &gt; webapps folder<br />
<strong> 12.</strong> Copy the WEB-INF folder in to Red5App now the folder structure will be like Red5 &gt; webapps &gt; WEB-INF under that will be Classes and src Folders.<br />
<strong> 13.</strong> Edit red5-web.properties using Notepad to.</p>
<p><em><span style="color: #333333;">webapp.contextPath=/Red5App<br />
webapp.virtualHosts=localhost, 127.0.0.1</span></em></p>
<p><em><span style="color: #993300;">Note:</span></em> Red5App is the Folder Name created in Step11.</p>
<p><strong>14.</strong> Edit red5-web.xml look for bean id =&#8221;web.handler&#8221; add the package name and class name we have give in step7 here.</p>
<p><em><span style="color: #333333;">&lt;bean id=&#8221;web.handler&#8221;<br />
class=&#8221;org.red5.sample.ClassName&#8221;<br />
singleton=&#8221;true&#8221; /&gt;</span></em></p>
<p><strong>15.</strong> Edit web.xml look for &lt;param-name&gt;webAppRootKey&lt;/param-name&gt; and change the param-value below that to</p>
<p><em><span style="color: #333333;">&lt;context-param&gt;<br />
&lt;param-name&gt;webAppRootKey&lt;/param-name&gt;<br />
&lt;param-value&gt;/Red5App&lt;/param-value&gt;<br />
&lt;/context-param&gt;</span></em></p>
<p>Thats it we have created a server-side Java application for Red5 Server.</p>
<p><strong>Below is the entire application Folder structure:</strong></p>
<p><a href="http://www.designscripting.com/wp-content/uploads/2010/02/Folder_Structure.jpg"><img class="aligncenter size-full wp-image-329" title="Folder_Structure" src="http://www.designscripting.com/wp-content/uploads/2010/02/Folder_Structure.jpg" alt="Folder_Structure" width="400" height="364" /></a></p>
<p>In next tutorial we will see How to create client side application.</p>
<p><strong> <img src='http://www.designscripting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2010/02/create-first-java-application-in-red5-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Flash/Flex Preloaders</title>
		<link>http://www.designscripting.com/2009/12/free-flashflex-preloaders/</link>
		<comments>http://www.designscripting.com/2009/12/free-flashflex-preloaders/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 06:36:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=288</guid>
		<description><![CDATA[Preloaders are much needed for Flash/Flex RIA&#8217;s.
Here some of the free preloader animations created by me this morning.

Idea of preloader is indicating the user that some assets are being loaded, and making them to wait.
But we should keep in mind that the user may lost their patience, so keeping the Flash assets filesize minimal is much important while making Flash websites or Flash applications.

]]></description>
			<content:encoded><![CDATA[<p>Preloaders are much needed for Flash/Flex RIA&#8217;s.</p>
<p>Here some of the free preloader animations created by me this morning.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="310" height="87" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="StageResize" /><param name="bgcolor" value="#666666" /><param name="align" value="middle" /><param name="src" value="http://www.designscripting.com/wp-content/uploads/2009/12/Preloader_Symbols.swf" /><param name="allowfullscreen" value="false" /><param name="quality" value="high" /><embed type="application/x-shockwave-flash" width="310" height="87" src="http://www.designscripting.com/wp-content/uploads/2009/12/Preloader_Symbols.swf" quality="high" allowfullscreen="false" align="middle" bgcolor="#666666" name="StageResize"></embed></object></p>
<p>Idea of preloader is indicating the user that some assets are being loaded, and making them to wait.<br />
But we should keep in mind that the user may lost their patience, so keeping the Flash assets filesize minimal is much important while making Flash websites or Flash applications.</p>
<p style="text-align: center;"><a href="http://www.designscripting.com/wp-content/uploads/2009/12/Preloader_Symbols.zip"><img class="aligncenter" src="http://www.designscripting.com/wp-content/uploads/2008/12/download.jpg" alt="" width="239" height="54" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2009/12/free-flashflex-preloaders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Stage resize + AS3</title>
		<link>http://www.designscripting.com/2009/12/dynamic-stage-resize-as3/</link>
		<comments>http://www.designscripting.com/2009/12/dynamic-stage-resize-as3/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:48:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=273</guid>
		<description><![CDATA[Changing the size of flash document from Javascript will be handy in many situations like creating Flash widgets like

News scroller
Flash Banners

..
In this article we are going to create that effect.
First we need to import necessary classes.
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.display.MovieClip;
The next step is to align the stage to TOP LEFT and scalemode  to no scale.
Means we are aligning the stage to topleft even if we resize it and not scaling the contents on resize
stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
The final step is to add Event listener for stage resize
stage.addEventListener(Event.RESIZE, handleResize);
function handleResize(e:Event):void
{
	//The ...]]></description>
			<content:encoded><![CDATA[<p>Changing the size of flash document from Javascript will be handy in many situations like creating Flash widgets like</p>
<ul>
<li>News scroller</li>
<li>Flash Banners</li>
</ul>
<p>..</p>
<p>In this article we are going to create that effect.</p>
<p>First we need to import necessary classes.</p>
<pre class="brush:as3">import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.display.MovieClip;</pre>
<p>The next step is to align the stage to TOP LEFT and scalemode  to no scale.<br />
Means we are aligning the stage to topleft even if we resize it and not scaling the contents on resize</p>
<pre class="brush:as3">stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;</pre>
<p>The final step is to add Event listener for stage resize</p>
<pre class="brush:as3">stage.addEventListener(Event.RESIZE, handleResize);
function handleResize(e:Event):void
{
	//The resize code goes here
}</pre>
<p>Note:<br />
In the sample files I added code that creates a rectangle equal of stage size.</p>
<p>In Html, We are resizing the Flash using StageResize.width = Value.<br />
Here,</p>
<p>StageResize is the name of the Flash movie create when publishing the Flash.</p>
<pre class="brush:html"> onclick="StageResize.width = '150';StageResize.height =  '150';" href="#"&gt;Change W:150 X H:150</pre>
<p><a href="http://www.designscripting.com/wp-content/uploads/2009/11/StageResize1.zip"><img src="http://www.designscripting.com/wp-content/uploads/2008/12/download.jpg" alt="Download Source Files" width="239" height="54" /></a><br />
<a href="http://www.designscripting.com/wp-content/uploads/2009/11/StageResize.html" target="_blank"><img src="http://www.designscripting.com/wp-content/uploads/2009/11/Demo.jpg" alt="" width="128" height="54" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2009/12/dynamic-stage-resize-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlexPMD to audit AS3/Flex source</title>
		<link>http://www.designscripting.com/2009/12/flexpmd-to-audit-as3flex-source/</link>
		<comments>http://www.designscripting.com/2009/12/flexpmd-to-audit-as3flex-source/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 16:16:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=259</guid>
		<description><![CDATA[Now we can create optimized Actionscript and flex code. Adobe has released FlexPMD to audit Actionscript (AS3) or Flex source.
FlexPMD uses a part of PMD, which used to analyse Java sources.
FlexPMD detects unused codes(like functions variables), inefficient code, complex loops..
FlexPMD can be invoked from
    * The command line
    * Maven
    * Ant
    * Automator on Mac OS X
    * Eclipse new
    * TextMate on Mac OS X new
    * ...]]></description>
			<content:encoded><![CDATA[<p>Now we can create optimized Actionscript and flex code. Adobe has released FlexPMD to audit Actionscript (AS3) or Flex source.</p>
<p>FlexPMD uses a part of PMD, which used to analyse Java sources.</p>
<p>FlexPMD detects unused codes(like functions variables), inefficient code, complex loops..</p>
<p>FlexPMD can be invoked from</p>
<p>    * The command line<br />
    * Maven<br />
    * Ant<br />
    * Automator on Mac OS X<br />
    * Eclipse new<br />
    * TextMate on Mac OS X new<br />
    * FlashDevelop new</p>
<p>A report will be generated against our flash project. Report can be view using <a href="http://opensource.adobe.com/svn/opensource/flexpmd/bin/flex-pmd-violations-viewer.html" target='_blank'>PMD viewer</a></p>
<p>Article Source<br />
http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2009/12/flexpmd-to-audit-as3flex-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActionScript3.0 Quiz</title>
		<link>http://www.designscripting.com/2009/11/actionscript3-0-quiz/</link>
		<comments>http://www.designscripting.com/2009/11/actionscript3-0-quiz/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 10:30:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash CS4]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=156</guid>
		<description><![CDATA[Today I came across the wonderful website(learningactionscript3.com) for actionscript,
I have taken the quiz section where we can see questions from chapters of the book Learning ActionScript3.0, It covers all the chapters from

ActionScript Overview,
Events,
Display List,
OOP,
Text,
Sound,
Video,
XML,
Advance Actionscript.

Below is the screenshot of the result.

From the result I need to concentrate in XML and Prgramming Design.
I encourage you people to participate in the Quiz and post me the Screenshot to publish here in the blog.
All the best guys&#8230;
cheers  
]]></description>
			<content:encoded><![CDATA[<p>Today I came across the wonderful website(learningactionscript3.com) for actionscript,</p>
<p>I have taken the quiz section where we can see questions from chapters of the book Learning ActionScript3.0, It covers all the chapters from</p>
<ul>
<li>ActionScript Overview,</li>
<li>Events,</li>
<li>Display List,</li>
<li>OOP,</li>
<li>Text,</li>
<li>Sound,</li>
<li>Video,</li>
<li>XML,</li>
<li>Advance Actionscript.</li>
</ul>
<p>Below is the screenshot of the result.</p>
<p><img class="aligncenter size-full wp-image-157" title="Actionscript-Quiz" src="http://www.designscripting.com/wp-content/uploads/2009/11/Actionscript-Quiz.jpg" alt="Actionscript-Quiz" width="546" height="445" /></p>
<p>From the result I need to concentrate in XML and Prgramming Design.</p>
<p>I encourage you people to participate in the Quiz and post me the Screenshot to publish here in the blog.</p>
<p>All the best guys&#8230;</p>
<p>cheers <img src='http://www.designscripting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2009/11/actionscript3-0-quiz/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adobe Flash Builder</title>
		<link>http://www.designscripting.com/2009/07/adobe-flash-builder/</link>
		<comments>http://www.designscripting.com/2009/07/adobe-flash-builder/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 16:41:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Adobe Flash Builder]]></category>

		<guid isPermaLink="false">http://www.designscripting.com/?p=151</guid>
		<description><![CDATA[Adobe flexbuilder 4 name has been changed to Adobe Flash Builder4, just to distinguish the Flex open source framework and Commercial IDE..
the three main feature themes you will find in this release:

 designer/developer workflow
 data-centric development
 IDE productivity and testing

more to come  
]]></description>
			<content:encoded><![CDATA[<p>Adobe flexbuilder 4 name has been changed to Adobe Flash Builder4, just to distinguish the Flex open source framework and Commercial IDE..</p>
<p>the three main feature themes you will find in this release:</p>
<ul>
<li> designer/developer workflow</li>
<li> data-centric development</li>
<li> IDE productivity and testing</li>
</ul>
<p>more to come <img src='http://www.designscripting.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.designscripting.com/2009/07/adobe-flash-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
