<?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>Suketu Vyas&#039;s Blog &#187; Flex 3</title>
	<atom:link href="http://www.suketuvyas.com/category/flash-platform/flex-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.suketuvyas.com</link>
	<description>Website Under Maintenance........</description>
	<lastBuildDate>Fri, 13 Nov 2009 14:33:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex 3 Beta 3 Developers Guide on liveDocs</title>
		<link>http://www.suketuvyas.com/2008/02/07/flex-3-beta-3-developers-guide-on-livedocs/</link>
		<comments>http://www.suketuvyas.com/2008/02/07/flex-3-beta-3-developers-guide-on-livedocs/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 17:12:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2008/02/07/flex-3-beta-3-developers-guide-on-livedocs/</guid>
		<description><![CDATA[I have just found out Flex 3 Developers Guide on liveDocs
Flex Developer Guide is best resource to learn flex and prepare for Adobe Certified Flex Developer Exam.
Here is a link
]]></description>
			<content:encoded><![CDATA[<p>I have just found out Flex 3 Developers Guide on <a href="http://livedocs.adobe.com/" target="_blank">liveDocs</a></p>
<p>Flex Developer Guide is best resource to learn flex and prepare for Adobe Certified Flex Developer Exam.</p>
<p>Here is a <a href="http://livedocs.adobe.com/labs/flex3/html/help.html?content=Part2_DevApps_1.html" target="_blank">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2008/02/07/flex-3-beta-3-developers-guide-on-livedocs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex Component Class Hierarchy</title>
		<link>http://www.suketuvyas.com/2008/02/06/flex-component-class-hierarchy/</link>
		<comments>http://www.suketuvyas.com/2008/02/06/flex-component-class-hierarchy/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 16:42:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articals]]></category>
		<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2008/02/06/flex-component-class-hierarchy/</guid>
		<description><![CDATA[This article is all about presenting the visual component hierarchy this is basic thing in flex which shows how different properties, method and evens added to the component at various levels and this give knowledge to the lower level of abstraction.
Flex Visual component are created with the class hierarchy of several ActionScript class to provide [...]]]></description>
			<content:encoded><![CDATA[<p>This article is all about presenting the visual component hierarchy this is basic thing in flex which shows how different properties, method and evens added to the component at various levels and this give knowledge to the lower level of abstraction.</p>
<p>Flex Visual component are created with the class hierarchy of several ActionScript class to provide more flexibility and add more features at the different level of hierarchy.</p>
<p>Following is a visual representation of class hierarchy of Flex Visual Components:</p>
<p><img title="Flex Component Class Hierarchy" src="http://i181.photobucket.com/albums/x141/suketuvyas/componentHirarchy.jpg" alt="Flex Component Class Hierarchy" align="left" /><span style="font-weight: bold">Object</span>:  Object is a Top/Root Level class of AactionScript class hierarchy. | <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Object.html" target="_blank">More Info&#8230;</a></p>
<p><span style="font-weight: bold">EventDispatcher</span>:  EventDispatcher class extends object class. EvenDispacher class allows any object on the display list to be an event target. | <a href="http://livedocs.adobe.com/flex/2/langref/flash/events/EventDispatcher.html" target="_blank">More Info</a></p>
<p><span style="font-weight: bold">DisplayObject</span>: Display Object class extends object and this is the base class for all objects which can be added in the DisplayList. Display object class allows some properties (x, y, width, height )for components/Objects like MovieClip, Button, TextField etc. | <a href="http://livedocs.adobe.com/labs/flex3/langref/flash/display/DisplayObject.html" target="_blank">More Info</a></p>
<p><span style="font-weight: bold">InteractiveObject</span>: InteractiveObject extends DisplayObject and it is an abstract base class for all DisplayObject with which user can interact. InteractiveObject provides some common properties like doubleClickEnabled, focusRect, tabIndex etc&#8230; and Events like all mouse Events, Keyboard Events. | <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html" target="_blank">More Info</a></p>
<p><span style="font-weight: bold">DisplayObjectContainer</span>: DisplayObjectContainer extends InteractiveObject class and it is a base shell for all containers which adds display objects in the container shell. . DisplayObjectContainer provides some common properties like numChildren, tabChildren etc and methods like addChild(), removeChilld() method related to the child display object management. .. | <a href="http://livedocs.adobe.com/flex/2/langref/flash/display/DisplayObjectContainer.html" target="_blank">More Info</a></p>
<p><span style="font-weight: bold">FlexSprite</span>: FlexSprite is a subclass of the Player&#8217;s Sprite class and the superclass of UIComponent. It overrides the toString() method to return a string indicating the location of the object within the hierarchy of DisplayObjects in the application. The Sprite class is a basic display list building block: a display list node that can display graphics and can also contain children. | <a href="http://livedocs.adobe.com/flex/201/langref/mx/core/FlexSprite.html" target="_blank">More Info<br />
</a><br />
<span style="font-weight: bold">UIComponent</span>: UIComponent extends Sprite and it is a base class for all Interactive and non Interactive component. The UIComponent class is not used as an MXML tag, but is used as a base class for other classes. | <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/core/UIComponent.html" target="_blank">More Info</a></p>
<p>All Visual Components like VBox, HBox, Canvas, Button etc. extends UIComponent.</p>
<p>Hope this article will help you. Any Comments?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2008/02/06/flex-component-class-hierarchy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resolving Flex 3 &#8220;Beta Expired&#8221; Error</title>
		<link>http://www.suketuvyas.com/2008/02/05/resolving-flex-3-%e2%80%9cbeta-expired%e2%80%9d-error%e2%80%a6/</link>
		<comments>http://www.suketuvyas.com/2008/02/05/resolving-flex-3-%e2%80%9cbeta-expired%e2%80%9d-error%e2%80%a6/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 16:22:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2008/02/05/resolving-flex-3-%e2%80%9cbeta-expired%e2%80%9d-error%e2%80%a6/</guid>
		<description><![CDATA[Problem:
Today morning I have open my flex builder IDE and created a new project. New project creation was giving strange Error &#8220;Beta Expired&#8221;. My Flex builder status bar was showing &#8220;Flex Builder 3 will expire in 39 Days&#8221; this seems to be a strange behavior.
Solution:
I found out that I was using Flex builder Beta 2 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong><br />
Today morning I have open my flex builder IDE and created a new project. New project creation was giving strange Error &#8220;Beta Expired&#8221;. My Flex builder status bar was showing &#8220;Flex Builder 3 will expire in 39 Days&#8221; this seems to be a strange behavior.<br />
<strong>Solution:</strong><br />
I found out that I was using Flex builder Beta 2 and adobe has set some date for Flex beta 2 SDK Expiry. (This means Your Flex SDK has expired not Flex builder &#8220;Flex Builder 3 will expire in 39 Days™ as mention above.<br />
To solve this problem I have downloaded new <a href="http://labs.adobe.com/technologies/flex/sdk/flex3sdk.html">Flex 3 Beta 3 SDK</a> and added to flex builder and compiling my projects with Beta 3 SDK<br />
Now, it works fine Hope this helps to some one facing same problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2008/02/05/resolving-flex-3-%e2%80%9cbeta-expired%e2%80%9d-error%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Speaking @ 360&#124;Flex on &#8220;Creating cool front-end Apps using Flex and JavaScript&#8221;</title>
		<link>http://www.suketuvyas.com/2008/01/29/speaking-360flex-on-creating-cool-front-end-apps%e2%80%a6-using-flex-and-javascript/</link>
		<comments>http://www.suketuvyas.com/2008/01/29/speaking-360flex-on-creating-cool-front-end-apps%e2%80%a6-using-flex-and-javascript/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 13:47:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2008/01/29/speaking-360flex-on-creating-cool-front-end-apps%e2%80%a6-using-flex-and-javascript/</guid>
		<description><![CDATA[I am glad to announce that I will be speaking at 360Flex on â€œCreating cool front-end Apps using Flex and JavaScript.
My topic will be covering following points and much more.

Flex and JavaScript Hand in Hand.
Integration and communication between Flex and JavaScript.
Flex and Ajax Bridge.
Simple approaches to achieve most usable UI using Flex and JavaScript.
Building word [...]]]></description>
			<content:encoded><![CDATA[<p>I am glad to announce that I will be speaking at 360Flex on â€œCreating cool front-end Apps using Flex and JavaScript.</p>
<p>My topic will be covering following points and much more.</p>
<ul>
<li>Flex and JavaScript Hand in Hand.</li>
<li>Integration and communication between Flex and JavaScript.</li>
<li>Flex and Ajax Bridge.</li>
<li>Simple approaches to achieve most usable UI using Flex and JavaScript.</li>
<li>Building word processor using flex and javascript.</li>
<li>Drag and Drop management between Flex Component and JavaScript component.</li>
<li>Some Examples</li>
<li>Q and A</li>
</ul>
<p>This session will bring up light on many good technique and challenges while working with flex and JavaScript.</p>
<p>See you @ 360Flex Atlanta.</p>
<p>Register for <a href="http://www.360flex.com/">360Flex Atlanta / Europe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2008/01/29/speaking-360flex-on-creating-cool-front-end-apps%e2%80%a6-using-flex-and-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Open Source Flex Development Framework</title>
		<link>http://www.suketuvyas.com/2008/01/19/open-source-flex-development-framework/</link>
		<comments>http://www.suketuvyas.com/2008/01/19/open-source-flex-development-framework/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 15:12:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Flex 4]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2008/01/19/open-source-flex-development-framework/</guid>
		<description><![CDATA[Moxie Zhang has posted a nice article in infoq about Open Source Flex development frame works.Â  In his post Moxie has listed 10 Open source frameworks for Flex Development.
Following are top Open Source Frameworks:

Cairngorm
&#8220;The Cairngorm micro architecture is intended as a framework for Enterprise RIA developers. If you are writing a very simple application [...]]]></description>
			<content:encoded><![CDATA[<p>Moxie Zhang has posted a nice <a title="Open Source Flex Development Frameworks Show that Platform is Gaining Momentum" href="http://www.infoq.com/news/2008/01/flex-mvc" target="_blank">article in infoq about Open Source Flex development frame works</a>.Â  In his post Moxie has listed 10 Open source frameworks for Flex Development.</p>
<p>Following are top Open Source Frameworks:</p>
<ol>
<li><strong><a title="Cairngorm" href="http://labs.adobe.com/wiki/index.php/Cairngorm" target="_blank">Cairngorm</a><br />
</strong><em>&#8220;The Cairngorm micro architecture is intended as a framework for Enterprise RIA developers. If you are writing a very simple application (such as a prototype application) or an application with only a single view, then you might consider a &#8220;Model 1&#8243; solution that doesn&#8217;t strive for the same separation of model, view, and control that Cairngorm advocates. The benefits of the Cairngorm architecture are realized when developing complex RIA applications with multiple use-cases and views, with a team of developers, and with a multi-disciplinary development team that includes designers as well as creative and technical developers.&#8221;</em> by Adobe<br />
<a title="Download Cairngorm" href="http://labs.adobe.com/wiki/index.php/Cairngorm:Downloads" target="_blank">Download Cairngorm</a>.</li>
<li><strong><a title="PureMVC" href="http://puremvc.org/" target="_blank">PureMVC</a><br />
</strong>&#8220;<em>PureMVC is a lightweight framework for creating applications in ActionScript 3, based upon the classic Model-View-Controller design meta-pattern.This free, open source framework does not depend on any Flash, Flex or Apollo classes, and is therefore suitable for architecting applications on any platform running AS3.&#8221;</em> By PureMVC<br />
<a href="http://puremvc.org/pages/downloads/PureMVC.zip" target="_blank">Download PureMVC</a></li>
<li><a href="http://www.model-glue.com/flex.cfm" target="_blank">Model-Glue<br />
</a>&#8220;<em>The Model-Glue family of frameworks support Web application developers by making the construction of Object-Oriented Web and Rich Internet Applications a straightforward process.<br />
Through a simple implementation of Implicit Invocation and Model-View-Controller, they allow applications to be well organized without sacrificing flexibility.&#8221;</em> By Model-Glue<br />
<a href="http://www.model-glue.com/downloads/modelglueflex_0.0.zip" target="_blank">Download Model-Glue<br />
</a></li>
<li><strong><a href="http://www.servebox.com/foundry/doku.php?id=" target="_blank">Foundry</a><br />
</strong></li>
<li><strong><a href="http://www.guasax.com/guasax/web/en/index.php" target="_blank">Guasax Flex Framework<br />
</a></strong></li>
<li><strong><a href="http://osflash.org/projects/arp" target="_blank">ARP</a><br />
</strong></li>
<li><strong><a href="http://code.google.com/p/flest/" target="_blank">Flest Framework</a><br />
</strong></li>
<li><strong><a href="http://projects.simb.net/easyMVC/" target="_blank">EasyMVC</a><br />
</strong></li>
<li><strong><a href="http://www.adobe.com/devnet/flex/articles/fast_userguide.html" target="_blank">Adobe FAST</a></strong></li>
<li><strong><a href="http://www.adobe.com/devnet/flex/articles/blueprint.html" target="_blank">Joeberkovitz&#8217;s framework</a></strong></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2008/01/19/open-source-flex-development-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>James Gosling on JavaFX and Adobe Flash / Flex / AIR</title>
		<link>http://www.suketuvyas.com/2008/01/08/james-gosling-on-javafx-and-adobe-flash-flex-air/</link>
		<comments>http://www.suketuvyas.com/2008/01/08/james-gosling-on-javafx-and-adobe-flash-flex-air/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 18:14:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Flex 4]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2008/01/08/james-gosling-on-javafx-and-adobe-flash-flex-air/</guid>
		<description><![CDATA[Kathleen Richards has posted notes of interview with James Gosling (Creator of the java programming language).
Here are some Q&#038;A Discussed with James Gosling which are specifically for Adobe Flash / Flex / AIR.

How will JavaFX be positioned with regard to Microsoft Silverlight and Adobe AIR?
[James] : It certainly competes with both of those. I think [...]]]></description>
			<content:encoded><![CDATA[<p>Kathleen Richards has <a title="James Gosling On JavaFX" target="_blank" href="http://reddevnews.com/qandas/article.aspx?editorialsid=121">posted notes of interview with James Gosling (Creator of the java programming language)</a>.</p>
<p>Here are some Q&#038;A Discussed with James Gosling which are specifically for <a title="Adobe Flash / Flex / AIR" target="_blank" href="http://www.adobe.com">Adobe Flash / Flex / AIR</a>.<br />
<img style="width: 138px; height: 138px" src="http://i181.photobucket.com/albums/x141/suketuvyas/Fx.png" /><img style="width: 137px; height: 137px" src="http://i181.photobucket.com/albums/x141/suketuvyas/java.jpg" /><img src="http://i181.photobucket.com/albums/x141/suketuvyas/logo_air_156x136_2.jpg" /></p>
<p><strong>How will JavaFX be positioned with regard to Microsoft Silverlight and Adobe AIR?<br />
</strong>[James] : It certainly competes with both of those. I think we have a much broader and more capable API set. We&#8217;ve got a much stronger security story and cross-platform story and a really strong performance story. And I think our deliverable will be really nice.</p>
<p><strong>As organizations think about building rich Internet applications or rich client applications, when should developers look at JavaFX over competing technologies?<br />
</strong>[James] :Â  <em>&#8220;<strong>If you look at something like Flash, when you get to the much more advanced stuff &#8212; richer interfaces, more complex network protocols, more complex APIs &#8212; it really falls short.</strong></em>&#8221; We&#8217;ve had a platform for years that can build rich Internet applications that are extremely sophisticated.<br />
Our issue hasn&#8217;t really been, can you build interesting rich Internet applications? But that it&#8217;s difficult. And most of our efforts really are around making a lot of it easier.</p>
<p>In RIA technology space Flash Platform and AJAX are leader and Microsoft (Silverlight) and SUN (JavaFX) are just coming in action.</p>
<p>I am sure that Flash/Flex Platform Community will have some reaction on this.</p>
<p>You can read full article <a target="_blank" href="http://reddevnews.com/qandas/article.aspx?editorialsid=121">here&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2008/01/08/james-gosling-on-javafx-and-adobe-flash-flex-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>subclipse: SVN Plug-in for Flex Builder (Eclipse)</title>
		<link>http://www.suketuvyas.com/2007/12/18/subclipse-svn-plug-in-for-flex-builder-eclipse/</link>
		<comments>http://www.suketuvyas.com/2007/12/18/subclipse-svn-plug-in-for-flex-builder-eclipse/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 14:35:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Flex 4]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2007/12/18/subclipse-svn-plug-in-for-flex-builder-eclipse/</guid>
		<description><![CDATA[subclipse is an open source SVN plug-in for Flex Builder (eclipse).
Find out more details hereâ€¦
How to install subclipse in Flex Builder (eclipse).
]]></description>
			<content:encoded><![CDATA[<p>subclipse is an open source SVN plug-in for <a target="_blank" title="Flex Builder" href="http://www.adobe.com/products/flex/flexbuilder/">Flex Builder</a> (eclipse).</p>
<p>Find out more details <a target="_blank" title="subclipse" href="http://subclipse.tigris.org">hereâ€¦</a><br />
<a target="_blank" title="How to install subclipse in Flex Builder (eclipse)" href="http://subclipse.tigris.org/install.html">How to install subclipse in Flex Builder (eclipse)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2007/12/18/subclipse-svn-plug-in-for-flex-builder-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex 3 on RAD way</title>
		<link>http://www.suketuvyas.com/2007/09/26/flex-3-on-rad-way/</link>
		<comments>http://www.suketuvyas.com/2007/09/26/flex-3-on-rad-way/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 23:48:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/2007/09/26/flex-3-on-rad-way/</guid>
		<description><![CDATA[Ted Patrick has posted the new feature for Flex 3 Beta 2 CURD wizard for ASP .NET, PHP, JAVA and WSDL Introspection.
Flex 3 Beta 2 will have the feature to generate server side Code for data exchange with ASP .NET, PHP, JAVA. Where you can simply select the database and select the table and you [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Ted Patrick" href="http://www.onflex.org/" target="_blank">Ted Patrick</a> has posted the new feature for Flex 3 Beta 2 <a title="CURD wizard for ASP .NET, PHP, JAVA and WSDL Introspection" href="http://www.onflex.org/ted/2007/09/flex-3beta-2-crud-wizard-for-aspnet-php.php" target="_blank">CURD wizard for ASP .NET, PHP, JAVA and WSDL Introspection</a>.</p>
<p>Flex 3 Beta 2 will have the feature to generate server side Code for data exchange with ASP .NET, PHP, JAVA. Where you can simply select the database and select the table and you will have options to retrieve, create, update and delete record.</p>
<p>This will have the WSDL integration where you have to type WSDL URL in wizard and it will give you all methods exposed by the web service so you can use it.</p>
<p>CURD Generated code will use XML format for exchanging the data between Flex Application and CURD generated scripts.<br />
<strong><br />
On RAD (Rapid Application Development) way:</strong><br />
This feature will be very helpful for creating data driven Rich Internet Application Prototypes in quickly. It will be easy for any entry level developer to understand the Flex by creating small data driven applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2007/09/26/flex-3-on-rad-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex 3 for You *********</title>
		<link>http://www.suketuvyas.com/2007/06/10/flex-3-for-you/</link>
		<comments>http://www.suketuvyas.com/2007/06/10/flex-3-for-you/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 03:44:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/?p=45</guid>
		<description><![CDATA[Flex 3 Beta 1 is released and it is available for download in Adobe Labs.
Some Important Links for Flex 3: 
DOWNLOAD FLEX BUILDER BETA 1
DOWNLOAD FLEX SDK BETA 1
LABS WIKI FLEX 3
Flex Bug Database
Flex Standards and Community Process
Lets do more Flexing&#8230;&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Flex 3 Beta 1 is released and it is available for download in Adobe Labs.</p>
<p><strong>Some Important Links for Flex 3: </strong><br />
<a href="http://labs.adobe.com/technologies/flex/flexbuilder3/">DOWNLOAD FLEX BUILDER BETA 1</a><br />
<a href="http://labs.adobe.com/technologies/flex/sdk/flex3sdk.html">DOWNLOAD FLEX SDK BETA 1</a><br />
<a href="http://labs.adobe.com/wiki/index.php/Flex_3">LABS WIKI FLEX 3</a><br />
<a href="http://bugs.adobe.com/flex/">Flex Bug Database</a><br />
<a href="https://bugs.adobe.com/confluence/display/ADOBE/Home">Flex Standards and Community Process</a></p>
<p>Lets do more Flexing&#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2007/06/10/flex-3-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex 3: * Most Wanted Enhancement* Smaller Flex SWF Files</title>
		<link>http://www.suketuvyas.com/2007/06/08/flex-3-most-wanted-enhancement-smaller-flex-swf-files/</link>
		<comments>http://www.suketuvyas.com/2007/06/08/flex-3-most-wanted-enhancement-smaller-flex-swf-files/#comments</comments>
		<pubDate>Fri, 08 Jun 2007 09:13:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://www.suketuvyas.com/?p=43</guid>
		<description><![CDATA[Like every day in this week we are getting lot of suerprises by looking at new flex 3 features.
Today is Ted Patrik has blogged about the most wanted enhancement in flex 3. which is reduceing swf file size by caching the Flex Framework and Componet in new Flex Player 9 update 3 (FrogStar).
If you create [...]]]></description>
			<content:encoded><![CDATA[<p>Like every day in this week we are getting lot of suerprises by looking at new flex 3 features.</p>
<p>Today is <a title="Ted Patrik" href="http://www.onflex.org/ted/" target="_blank">Ted Patrik</a> has blogged about the most wanted enhancement in flex 3. which is reduceing swf file size by caching the Flex Framework and Componet in new Flex Player 9 update 3 (FrogStar).</p>
<p>If you create a new Flex Project using Flex Builder 2.0.1 (Compile with Flex SDK 2.0.1) then your basic .swf file size will be around 122 kb because by default flex SWF will embed the Flex Framework. .swf  File size will increase dramatically as you use UI components in your project.</p>
<p>According to me this was a drawback for the flex applications where your swf file size likely to be 400 to 500 kb (if you use datagrid and charting components) that will be very heavy for loading.</p>
<p>According to Ted&#8217;s post Flex 3 and Flex Player 9 update 3 (FrogStar) will solve this problem.<br />
<em>Moving forward the Flex Framework will be cached within the Flash Player dramatically reducing the size of the output SWF files. Your application SWF files will only contain your code plus the Flex Preloader containing the caching/loading logic and will exclude by majority the Flex Framework. Simply put, the file size cost of using any additional component adds negligible size to your base SWF files</em> Ted Patrik</p>
<p>For more Information read <a title="Flex 3 - Thursday: Dramatically Smaller Flex SWF Files " href="http://www.onflex.org/ted/2007/06/flex-3-thursday-dramatically-smaller.php" target="_blank">Ted&#8217;s Post..</a></p>
<p>Hmm&#8230;.  now can&#8217;t wait more&#8230; for next release&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suketuvyas.com/2007/06/08/flex-3-most-wanted-enhancement-smaller-flex-swf-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
