<?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; Actionscript 3</title>
	<atom:link href="http://creative-geeks.com/blog/tag/actionscript-3/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>ActionScript 3.0 &#8211; RGB Separator &#8211; 3D Effect</title>
		<link>http://creative-geeks.com/blog/2011/02/05/actionscript-3-0-rgb-separator-3d-effect/</link>
		<comments>http://creative-geeks.com/blog/2011/02/05/actionscript-3-0-rgb-separator-3d-effect/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 15:02:33 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[3D]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[Effects]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[Utils]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=953</guid>
		<description><![CDATA[With this ActionScript 3.0 class you can extract the RGB channels of a specified Bitmap. After the extraction, which returns an array with the different color channels, you can use each color channel for animation, or combine the channels to create a fake 3D-effect like below or go nasty with your own ideas &#8230;. If [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2011/02/05/actionscript-3-0-rgb-separator-3d-effect/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>IPinfodb ActionScript 3.0 &#8211; NEW API!</title>
		<link>http://creative-geeks.com/blog/2011/01/30/ipinfodb-actionscript-3-0-new-api/</link>
		<comments>http://creative-geeks.com/blog/2011/01/30/ipinfodb-actionscript-3-0-new-api/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 22:38:54 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Creativity]]></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[Geo Information]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[Web Service]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=934</guid>
		<description><![CDATA[Are you looking for the geographical location of an IP address? IPinfodb offers a you that service, for FREE! We just ported the service to an ActionScript 3.0 API to open it up for other Flash and Flex developers &#8230; Example: Download source files Important that you set the the api key(_api_key) in the IpToLocation.as [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2011/01/30/ipinfodb-actionscript-3-0-new-api/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<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>Manipulate multiple objects with less Actionscript 3.0 code</title>
		<link>http://creative-geeks.com/blog/2009/06/29/manipulate-multiple-objects-with-less-code/</link>
		<comments>http://creative-geeks.com/blog/2009/06/29/manipulate-multiple-objects-with-less-code/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 21:12:16 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flas]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=460</guid>
		<description><![CDATA[Often, I am looking for ways to do things faster and more effecient Here is a thing that I would like to share with you. If you are creating a navigation bar for example, you need to assign event listeners to each element in the navigation bar. This takes 3 rules per item or more&#8230; [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/06/29/manipulate-multiple-objects-with-less-code/feed/</wfw:commentRss>
		<slash:comments>1</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>TourDeFlex &#8211; Top 10 Components</title>
		<link>http://creative-geeks.com/blog/2009/06/23/tourdeflex-top-10-components/</link>
		<comments>http://creative-geeks.com/blog/2009/06/23/tourdeflex-top-10-components/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 17:59:33 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Components]]></category>
		<category><![CDATA[Top 10]]></category>
		<category><![CDATA[Tour De Flex]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=411</guid>
		<description><![CDATA[A short while ago i posted a post about TourDeFlex. In this post I would like to adress my top 10 components of the TourDeFlex community. 1. Axiis Horizontal Chart &#8211; Lines And Area (Data Visualization &#62; Axiis Open Source Project) 2. Axiis Absolute Chart &#8211; Bubble Plot (Data Visualization &#62; Axiis Open Source Project) [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/06/23/tourdeflex-top-10-components/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IPinfodb ActionScript 3.0 API</title>
		<link>http://creative-geeks.com/blog/2009/06/09/ipinfodb-actionscript-30-api/</link>
		<comments>http://creative-geeks.com/blog/2009/06/09/ipinfodb-actionscript-30-api/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 20:12:12 +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[RIA]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Geo Information]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[Web Service]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=343</guid>
		<description><![CDATA[Please read this post, this API has been updated! Are you looking for the geographical location of an IP address? IPinfodb offers a you that service, for FREE! We just ported the service to an ActionScript 3.0 API to open it up for other Flash and Flex developers &#8230; Get your SWC library here. Online [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/06/09/ipinfodb-actionscript-30-api/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Yahoo! Map custom markers with Flash and Actionscript 3.0</title>
		<link>http://creative-geeks.com/blog/2009/05/26/yahoo-map-custom-markers-with-flash-and-actionscript-30/</link>
		<comments>http://creative-geeks.com/blog/2009/05/26/yahoo-map-custom-markers-with-flash-and-actionscript-30/#comments</comments>
		<pubDate>Mon, 25 May 2009 23:40:52 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=308</guid>
		<description><![CDATA[In this post i will show you briefly on how you can change the standard map marker of a Yahoo map component inside Flash, into any custom marker. Basically we can just sent a movieclip to the map marker manager to attach as marker. Below is the Actionscript code you can use to achieve a [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/05/26/yahoo-map-custom-markers-with-flash-and-actionscript-30/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Rotate Text Using Embedded Fonts in Actionscript 3</title>
		<link>http://creative-geeks.com/blog/2009/05/26/rotate-text-using-embedded-fonts/</link>
		<comments>http://creative-geeks.com/blog/2009/05/26/rotate-text-using-embedded-fonts/#comments</comments>
		<pubDate>Mon, 25 May 2009 23:04:20 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Fonts]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=290</guid>
		<description><![CDATA[I am working on a new AIR application where I will post more information about in the future&#8230; I needed the ability to rotate text which I created dynamically, the answer was embedding! Embedding fonts let&#8217;s you use custom fonts which must not be installed on a user his machine or PC , so there [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/05/26/rotate-text-using-embedded-fonts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TourDeFlex</title>
		<link>http://creative-geeks.com/blog/2009/05/25/tour-de-flex/</link>
		<comments>http://creative-geeks.com/blog/2009/05/25/tour-de-flex/#comments</comments>
		<pubDate>Mon, 25 May 2009 21:04:43 +0000</pubDate>
		<dc:creator>Daan</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[MXML]]></category>
		<category><![CDATA[Tour De Flex]]></category>

		<guid isPermaLink="false">http://creative-geeks.com/blog/?p=278</guid>
		<description><![CDATA[Tour De Flex is a great Flex application that lets you explore the Flex capabilities and resources. As a beginning Flex developer this can really come in handy , to get to know all the functionalities inside Flex. Download this component inspector , and have fun getting to know some new functions! Not only for [...]]]></description>
		<wfw:commentRss>http://creative-geeks.com/blog/2009/05/25/tour-de-flex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

