<?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>Christoph Peter &#187; AS3</title>
	<atom:link href="http://www.chrillo.info/tag/as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrillo.info</link>
	<description>code and ideas</description>
	<lastBuildDate>Mon, 22 Feb 2010 15:51:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-RC1</generator>
		<item>
		<title>adding Mac OS X like Application Behaviour to your Air Application</title>
		<link>http://www.chrillo.info/2009/03/31/adding-mac-os-x-like-application-behaviour-to-your-air-application/</link>
		<comments>http://www.chrillo.info/2009/03/31/adding-mac-os-x-like-application-behaviour-to-your-air-application/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 09:24:09 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Tech Questions]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[autoexit]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/?p=411</guid>
		<description><![CDATA[In Mac OS X when you close the window of an application the app usually keeps running in the dock. Wheter this is a good thing or not is totally different story, but for apps like mail and ical it certainly is since I want my mail app to keep checking for new mail without [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2009/03/31/adding-mac-os-x-like-application-behaviour-to-your-air-application/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>onReleaseOutside in Actionscript 3</title>
		<link>http://www.chrillo.info/2009/01/29/onreleaseoutside-in-actionscript-3/</link>
		<comments>http://www.chrillo.info/2009/01/29/onreleaseoutside-in-actionscript-3/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 20:21:28 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Tech Questions]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/?p=336</guid>
		<description><![CDATA[actionscript 3 does not nativly support a onReleaseOutside Event. When creating things like a scrollBar or other UI elements this can be quite annoying. Here is a simple work around that uses a simple movieClip as a button: import flash.display.MovieClip import flash.events.* var myBtn:MovieClip=new MovieClip() myBtn.graphics.beginFill(0x003366,1) myBtn.graphics.drawRect(0,0,50,50) addChild(myBtn) myBtn.addEventListener(MouseEvent.MOUSE_DOWN,downHandler) function downHandler(event:MouseEvent):void{ stage.addEventListener(MouseEvent.MOUSE_UP,upHandler) trace(&#34;mouse went down&#34;) [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2009/01/29/onreleaseoutside-in-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript 3 3D with Flash CS4</title>
		<link>http://www.chrillo.info/2008/11/26/actionscript-3-3d-with-flash-cs4/</link>
		<comments>http://www.chrillo.info/2008/11/26/actionscript-3-3d-with-flash-cs4/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 20:56:19 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Tech Questions]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Adobe CS4]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[flash CS4]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/?p=236</guid>
		<description><![CDATA[I finally got a copy of adobe flash cs4. In addition to the great new user interface flash cs4 can compile flashplayer 10 content which enables the new actionscript 3 3D methods. with only the three simply rotationX, rotationY and rotationZ properties one can quickly create really nice 3D animations. This is my first test. [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2008/11/26/actionscript-3-3d-with-flash-cs4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>migrating from Actionscript 2 to Actionscript 3</title>
		<link>http://www.chrillo.info/2008/01/31/migrating-from-actionscript-2-to-actionscript-3/</link>
		<comments>http://www.chrillo.info/2008/01/31/migrating-from-actionscript-2-to-actionscript-3/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 21:03:06 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Actionscript 2]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[document class]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[migrating]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[package]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/2008/01/31/migrating-from-actionscript-2-to-actionscript-3/</guid>
		<description><![CDATA[&#160;I just recently bought the book Essential Actionscript 3&#160;&#160;by Collin Mook. I havent gotten really far into the book yet but there are few things that one must understand in order to get even started with actionscript 3. The first thing is AS 3 is pretty much OOP only, which means for you to forget [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2008/01/31/migrating-from-actionscript-2-to-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
