<?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>Jonnie Spratley &#187; Snippets</title>
	<atom:link href="http://jonniespratley.com/category/snippets-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonniespratley.com</link>
	<description>Programming with Flash, Flex and PHP</description>
	<lastBuildDate>Sat, 03 Apr 2010 05:02:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Adobe Air &#8211; Connection Manager</title>
		<link>http://jonniespratley.com/2008/10/08/adobe-air-connection-manager/</link>
		<comments>http://jonniespratley.com/2008/10/08/adobe-air-connection-manager/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 10:51:58 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://jonniespratley.com/2008/10/08/adobe-air-connection-manager/</guid>
		<description><![CDATA[Here is a very useful script that I re-use and re-use when building Air applications. Its a simple script I am sure you can make out what is going on here. ConnectionManager.as package com.jonniespratley.air.managers { import air.net.URLMonitor; import flash.events.StatusEvent; import flash.net.URLRequest; import mx.controls.Alert; public class ConnectionManager { private var statusEvent:StatusEvent; private var urlMonitor:URLMonitor; private var [...]]]></description>
		<wfw:commentRss>http://jonniespratley.com/2008/10/08/adobe-air-connection-manager/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Adobe Flex &#8211; Introduction to XML-RPC</title>
		<link>http://jonniespratley.com/2008/10/02/adobe-flex-using-xml-rpc/</link>
		<comments>http://jonniespratley.com/2008/10/02/adobe-flex-using-xml-rpc/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 07:50:34 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[API]]></category>

		<guid isPermaLink="false">http://jonniespratley.com/2008/10/02/adobe-flex-using-xml-rpc/</guid>
		<description><![CDATA[When developers start building web applications with Flex or desktop applications with Air, you come to the point when you want to do more with your application. For instance if you are working for a company and you just got finished building a product manager for SandKicker clothing, and he decided since you did such [...]]]></description>
		<wfw:commentRss>http://jonniespratley.com/2008/10/02/adobe-flex-using-xml-rpc/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Adobe Flex &#8211; Amfphp Service Class</title>
		<link>http://jonniespratley.com/2008/09/21/adobe-flexair-creating-a-serviceproxy-for-amfphp/</link>
		<comments>http://jonniespratley.com/2008/09/21/adobe-flexair-creating-a-serviceproxy-for-amfphp/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 19:48:55 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[advanced flex]]></category>
		<category><![CDATA[as3]]></category>

		<guid isPermaLink="false">http://jonniespratley.com/2008/09/21/adobe-flexair-creating-a-serviceproxy-for-amfphp/</guid>
		<description><![CDATA[Here is a very helpful script for creating a connection between your Flex/Flash application and amfphp. We are mimicking the available methods that are on our server. You could easily add methods to both ends to create more functionality. Code is used as follows: 1: package com.jonniespratley.snippr.services 2: { 3: import com.jonniespratley.snippr.model.ModelLocator; 4: import com.jonniespratley.snippr.vo.SnippetVO; [...]]]></description>
		<wfw:commentRss>http://jonniespratley.com/2008/09/21/adobe-flexair-creating-a-serviceproxy-for-amfphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Air &#8211; Saving Preferences</title>
		<link>http://jonniespratley.com/2008/09/19/adobe-air-saving-preferences/</link>
		<comments>http://jonniespratley.com/2008/09/19/adobe-air-saving-preferences/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 11:26:24 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://jonniespratley.com/2008/09/19/adobe-air-saving-preferences/</guid>
		<description><![CDATA[Its always good to remember a users preferences, so here is a quick code snip of how to do exactly that. import com.adobe.air.preferences.PreferenceChangeEvent; import com.adobe.air.preferences.Preference; /* Create a new prefernce variable and give it a name */ private var prefs:Preference = new Preference( "settings.obj" ); /* Create a new bytearry to store the data */ [...]]]></description>
		<wfw:commentRss>http://jonniespratley.com/2008/09/19/adobe-air-saving-preferences/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adobe Air- Using SQLite</title>
		<link>http://jonniespratley.com/2008/09/19/adobe-air-using-sqlite-extended/</link>
		<comments>http://jonniespratley.com/2008/09/19/adobe-air-using-sqlite-extended/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 19:17:38 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://jonniespratley.com/2008/09/19/adobe-air-using-sqlite-extended/</guid>
		<description><![CDATA[Here I will provide all necessary files for creating, and executing statements from Air to your newly created SQLite database, I have commented all of my code, so you will be able to get the idea of how things are working. If you need some more help, feel free to leave me a comment and [...]]]></description>
		<wfw:commentRss>http://jonniespratley.com/2008/09/19/adobe-air-using-sqlite-extended/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adobe Flex &#8211;  Presentation &amp; Cookbook</title>
		<link>http://jonniespratley.com/2008/09/19/flex-and-amfphp-mini-cookbook/</link>
		<comments>http://jonniespratley.com/2008/09/19/flex-and-amfphp-mini-cookbook/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 08:31:05 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://jonniespratley.com/2008/09/19/flex-and-amfphp-mini-cookbook/</guid>
		<description><![CDATA[Here is a little thing that I made up for people using Flex/Flash and amfphp a little cheat sheet to use as a reference. I have two different versions of this: Is use without any framework and without a services-config.xml file in the compiler. Second version is for use with the Cairngorm Framework. These example [...]]]></description>
		<wfw:commentRss>http://jonniespratley.com/2008/09/19/flex-and-amfphp-mini-cookbook/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
