<?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>Creative Geek Talk &#187; Air</title>
	<atom:link href="http://creative-geeks.com/blog/tag/air/feed/" rel="self" type="application/rss+xml" />
	<link>http://creative-geeks.com/blog</link>
	<description>Creativity , Interactivity and Technology</description>
	<lastBuildDate>Mon, 14 Nov 2011 15:16:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Useful String Functions with ActionScript 3.0</title>
		<link>http://creative-geeks.com/blog/2011/01/28/useful-string-functions-with-actionscript-3-0/</link>
		<comments>http://creative-geeks.com/blog/2011/01/28/useful-string-functions-with-actionscript-3-0/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 21:45:19 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Manipulation]]></category>
		<category><![CDATA[String]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=903</guid>
		<description><![CDATA[Some useful String functions that van be used in ActionScript 3.0 projects &#8230; Strip Spaces from a String private function stripSpaces&#40;$myString:String&#41;:String &#123; return $myString.split&#40;&#34; &#34;&#41;.join&#40;&#34;&#34;&#41;; &#125; Get the Last Char in a String private function getLastCharInString&#40;$s:String&#41;:String &#123; return $s.substr&#40;$s.length-1,$s.length&#41;; &#125; Email Validation private function isValidEmail&#40;$email:String&#41;:Boolean &#123; var emailExpression:RegExp = /([a-z0-9._-]+?)@([a-z0-9.-]+)\.([a-z]{2,4})/; return emailExpression.test&#40;$email&#41;; &#125; Number of [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2011/01/28/useful-string-functions-with-actionscript-3-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Restart an Adobe AIR Application with Code!</title>
		<link>http://creative-geeks.com/blog/2009/10/05/restart-an-adobe-air-application-with-code/</link>
		<comments>http://creative-geeks.com/blog/2009/10/05/restart-an-adobe-air-application-with-code/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 19:00:19 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Reboot]]></category>
		<category><![CDATA[Restart Application]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=637</guid>
		<description><![CDATA[For a smaller project, I needed to find a way to restart my Adobe AIR application, this had to be invoked by itself &#8230; After some research I found a working examples, thanks to Flex Internals. [code lang="actionscript"] import mx.core.Application; import mx.core.WindowedApplication; import adobe.utils.ProductManager; public function restart():void { var app:WindowedApplication = WindowedApplication(Application.application); var mgr:ProductManager = [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/10/05/restart-an-adobe-air-application-with-code/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>File Deletion with ActionScript 3.0 and PHP</title>
		<link>http://creative-geeks.com/blog/2009/06/24/file-deletion-with-actionscript-3-0-and-php/</link>
		<comments>http://creative-geeks.com/blog/2009/06/24/file-deletion-with-actionscript-3-0-and-php/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 15:38:33 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Action]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Deletion]]></category>
		<category><![CDATA[File]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=439</guid>
		<description><![CDATA[In a prevouis post I talked about uploading files with ActionScript to a server location. In this post I wil explain, how server files can be easliy erased from the server from inside ActionScript. 1. The File Delete Script This is a simple PHP file, that requires a POST variable. This variable contains the url [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/06/24/file-deletion-with-actionscript-3-0-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Singleton Design Pattern Actionscript 3</title>
		<link>http://creative-geeks.com/blog/2009/05/24/singleton-design-pattern-actionscript-3/</link>
		<comments>http://creative-geeks.com/blog/2009/05/24/singleton-design-pattern-actionscript-3/#comments</comments>
		<pubDate>Sun, 24 May 2009 00:12:43 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Design Pattern]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Singleton]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=25</guid>
		<description><![CDATA[When Classes, Constant variables or functions  are needed throughout the actionscript project freuquently i tend to wrap them into a new, separate Actionscrip class … Within this class i will make an instance of that class , which will only be made once … as a result of this all the declarations will be held [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/05/24/singleton-design-pattern-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

