<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Flex Pasta</title>
	<link>http://www.flexpasta.com</link>
	<description>Everything Flex, Java, BlazeDS, AMF, FlexBuilder...</description>
	<pubDate>Sat, 18 Jun 2011 15:18:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Flex 4.5: Currency Formatter Changes</title>
		<link>http://www.flexpasta.com/index.php/2011/06/18/flex-45-currency-formatter-changes/</link>
		<comments>http://www.flexpasta.com/index.php/2011/06/18/flex-45-currency-formatter-changes/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 15:18:40 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Flex 4.5]]></category>

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/06/18/flex-45-currency-formatter-changes/</guid>
		<description><![CDATA[In Flex 3, &#60;mx:CurrencyFormatter /&#62; will format a number 4500 out of the box as $4,500.00.  The precision property controls how many trailing decimals, so &#60;mx:CurrencyFormatter precision=&#8221;0&#8243;/&#62; will do 4500 as $4,500.
In Flex 4.5/Spark, &#60;s:CurrencyFormatter/&#62; will format a number 4500 out of the box as USD4500.  Not really what I had in mind for a [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/06/18/flex-45-currency-formatter-changes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex 4.5: Spark TileLayout Finally Pays off for Multi-Screen Apps</title>
		<link>http://www.flexpasta.com/index.php/2011/05/15/flex-45-spark-tilelayout-finally-pays-off-for-multi-screen-apps/</link>
		<comments>http://www.flexpasta.com/index.php/2011/05/15/flex-45-spark-tilelayout-finally-pays-off-for-multi-screen-apps/#comments</comments>
		<pubDate>Sun, 15 May 2011 22:35:05 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Air 2.5]]></category>

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

		<category><![CDATA[Flex 4.5]]></category>

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

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

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/05/15/flex-45-spark-tilelayout-finally-pays-off-for-multi-screen-apps/</guid>
		<description><![CDATA[Consider from the beginning of Flex, there have always been 4 layout types inside the SDK: Absolute, Horizontal, Vertical, and Tile.  Yes, tile layout(formerly the tilelist in 3.5), the much forgotten child, has been given new life in the Flex 4.5 SDK.  For the most part in applications, I never really had a use for [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/05/15/flex-45-spark-tilelayout-finally-pays-off-for-multi-screen-apps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex 4.5: Using Geolocation(GPS) on a mobile device</title>
		<link>http://www.flexpasta.com/index.php/2011/05/12/flex-45-using-geolocationgps-on-a-mobile-device/</link>
		<comments>http://www.flexpasta.com/index.php/2011/05/12/flex-45-using-geolocationgps-on-a-mobile-device/#comments</comments>
		<pubDate>Fri, 13 May 2011 02:14:03 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Air 2.5]]></category>

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

		<category><![CDATA[Flex 4.5]]></category>

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

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/05/12/flex-45-using-geolocationgps-on-a-mobile-device/</guid>
		<description><![CDATA[When using the Flex 4.5 SDK for mobile application, there is a built in  Geolocation class for reading information about a user&#8217;s current GPS  location.  Here is a simple example of how it works:
private var geo:Geolocation = new Geolocation();
private function gpsRun():void
{				

	geo.addEventListener(GeolocationEvent.UPDATE, updateLocation);

}
private function updateLocation(geoEvent:GeolocationEvent):void
{
geo.removeEventListener(GeolocationEvent.UPDATE, updateLocation);
}
&#8230;
&#160;
s:creationComplete
Geolocation.isSupported =  Is this device a GPS device?
geo.muted = [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/05/12/flex-45-using-geolocationgps-on-a-mobile-device/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex 4.5: Effects on a Mobile Device - A Test Run</title>
		<link>http://www.flexpasta.com/index.php/2011/05/11/flex-45-effects-on-a-mobile-device-a-test-run/</link>
		<comments>http://www.flexpasta.com/index.php/2011/05/11/flex-45-effects-on-a-mobile-device-a-test-run/#comments</comments>
		<pubDate>Wed, 11 May 2011 16:52:38 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Air 2.5]]></category>

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

		<category><![CDATA[Flex 4.5]]></category>

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

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/05/11/flex-45-effects-on-a-mobile-device-a-test-run/</guid>
		<description><![CDATA[There are two big advantages for using the Flex 4.5 SDK for mobile, in my opinion.
1) Code once for multiple platforms, and
2) Reuse existing Flex knowledge have made it easy to create applications quickly.
Today I wanted to put to the test some effects on a mobile device.  Flex offers some great and easy to [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/05/11/flex-45-effects-on-a-mobile-device-a-test-run/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex 4.5: Getting Started with Mobile Projects in Flash Builder</title>
		<link>http://www.flexpasta.com/index.php/2011/05/09/flex-45-getting-started-with-mobile-projects-in-flash-builder/</link>
		<comments>http://www.flexpasta.com/index.php/2011/05/09/flex-45-getting-started-with-mobile-projects-in-flash-builder/#comments</comments>
		<pubDate>Tue, 10 May 2011 01:06:18 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Air 2.5]]></category>

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

		<category><![CDATA[Flex 4.5]]></category>

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

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

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/05/09/flex-45-getting-started-with-mobile-projects-in-flash-builder/</guid>
		<description><![CDATA[Adobe has released Flex and Flash Builder 4.5  With this release, you can now start building AIR apps that can run on android and iPhone devices(including the blackberry playbook).   The upside to Flash Builder 4.5 for mobile devices is that I can build my application once, and deploy it to multiple platforms.  Being [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/05/09/flex-45-getting-started-with-mobile-projects-in-flash-builder/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Awesome Flash Debugging Error From Weather.com</title>
		<link>http://www.flexpasta.com/index.php/2011/05/05/awesome-flash-debugging-error-from-weathercom/</link>
		<comments>http://www.flexpasta.com/index.php/2011/05/05/awesome-flash-debugging-error-from-weathercom/#comments</comments>
		<pubDate>Thu, 05 May 2011 22:15:27 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/05/05/awesome-flash-debugging-error-from-weathercom/</guid>
		<description><![CDATA[Today I was pulling up the radar on weather.com.  I have the flash debug version and got a sweet error:
 
Hello I am the iMap and I would like to discuss something with you.
We are attempting to load an icon library resource from a location that is not currently available.
The reasource url that attempted to load [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/05/05/awesome-flash-debugging-error-from-weathercom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Easily Creating Smooth Transitions/Effects for ViewStacks</title>
		<link>http://www.flexpasta.com/index.php/2011/02/28/easily-creating-smooth-transitionseffects-for-viewstacks/</link>
		<comments>http://www.flexpasta.com/index.php/2011/02/28/easily-creating-smooth-transitionseffects-for-viewstacks/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 03:02:40 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Flex 4]]></category>

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/02/28/easily-creating-smooth-transitionseffects-for-viewstacks/</guid>
		<description><![CDATA[One of the most basic ways to improve the feel of a Flex application, is to add transitions and effects when a change in the viewstack occurs.  Here is an example of the code using the &#8220;showEffect&#8221; and &#8220;hideEffect&#8221; property on the NavigatorContent class.
&#60;mx:ViewStack id=&#8221;vs&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221;&#62;
&#60;fx:Script&#62;
&#60;![CDATA[
import spark.effects.Fade;
]]&#62;
&#60;/fx:Script&#62;
&#60;s:NavigatorContent label=&#8221;Link 1&#8243; width=&#8221;100%&#8221; height=&#8221;100%&#8221; hideEffect=&#8221;{new Fade()}&#8221; showEffect=&#8221;{new [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/02/28/easily-creating-smooth-transitionseffects-for-viewstacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex 4 Application Scrolling with ViewStacks</title>
		<link>http://www.flexpasta.com/index.php/2011/01/27/flex-4-application-scrolling-with-viewstacks/</link>
		<comments>http://www.flexpasta.com/index.php/2011/01/27/flex-4-application-scrolling-with-viewstacks/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 03:27:21 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Flex 3]]></category>

		<category><![CDATA[Flex 4]]></category>

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2011/01/27/flex-4-application-scrolling-with-viewstacks/</guid>
		<description><![CDATA[Tinkering around with the new scrolling method s:Scroller in Flex 4.  I like it much more than Flex 3.  Less overhead and more control of scroll bars.  Still the overall frustrations with scroll bars and where they should appear still remains.  Thought and trial/error are required to get it just right.
I was recently trying to [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2011/01/27/flex-4-application-scrolling-with-viewstacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe AIR Native App Integration Issues</title>
		<link>http://www.flexpasta.com/index.php/2010/12/28/adobe-air-native-app-integration-issues/</link>
		<comments>http://www.flexpasta.com/index.php/2010/12/28/adobe-air-native-app-integration-issues/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 16:31:49 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[Air 2.5]]></category>

		<category><![CDATA[Flex 4]]></category>

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2010/12/28/adobe-air-native-app-integration-issues/</guid>
		<description><![CDATA[A while ago I wrote an example on how to run command line in an AIR app.  This worked great until trying to actually release my application to the world.  The problem:  AIR files cannot run Native processes.  While the AIR app will run fine in Flash Builder, when I try to export a release [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2010/12/28/adobe-air-native-app-integration-issues/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex Model Code Generator (and not just a single use)</title>
		<link>http://www.flexpasta.com/index.php/2010/08/22/flex-model-code-generator-and-not-just-a-single-use/</link>
		<comments>http://www.flexpasta.com/index.php/2010/08/22/flex-model-code-generator-and-not-just-a-single-use/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 20:10:34 +0000</pubDate>
		<dc:creator>Brian Telintelo</dc:creator>
		
		<category><![CDATA[BlazeDS]]></category>

		<category><![CDATA[Flex 3]]></category>

		<category><![CDATA[Flex 4]]></category>

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

		<guid isPermaLink="false">http://www.flexpasta.com/index.php/2010/08/22/flex-model-code-generator-and-not-just-a-single-use/</guid>
		<description><![CDATA[2 1/2 years ago I published annotations for BlazeDS that allowed for placing tags on Java getters/setters to determine if a value is serialized to the Flex client.  Soon I will publish a 3 part BlazeDS extension that does the following(with annotations of course).

Serialization Profiles with BlazeDS - This was mentioned in a previous post [...]]]></description>
		<wfw:commentRss>http://www.flexpasta.com/index.php/2010/08/22/flex-model-code-generator-and-not-just-a-single-use/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

