<?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>Arno Manders &#187; tutorial</title>
	<atom:link href="http://blog.arnomanders.nl/index.php/archives/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.arnomanders.nl</link>
	<description>Flex, Flash, AIR and everything that is brand new</description>
	<lastBuildDate>Wed, 21 Dec 2011 18:40:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Code snippet: pass preloader flashvars to main swf</title>
		<link>http://blog.arnomanders.nl/index.php/archives/code-snippet-pass-preloader-flashvars-to-main-swf/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/code-snippet-pass-preloader-flashvars-to-main-swf/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 09:45:52 +0000</pubDate>
		<dc:creator>Arno Manders</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/?p=448</guid>
		<description><![CDATA[Needed some way generic way to get my flashvars from the preloader to the loaded swf I just extend the url with the flashvars like this ?View Code ACTIONSCRIPTprivate function addFlashvars&#40;swfUrl:String&#41;:String&#123; swfUrl += &#34;?&#34;; for&#40;var i:String in root.loaderInfo.parameters&#41;&#123; swfUrl += i + &#34;=&#34; +root.loaderInfo.parameters&#91;i&#93; + &#34;&#38;amp;&#34;; &#125; return swfUrl; &#125; No related posts.
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/code-snippet-pass-preloader-flashvars-to-main-swf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distort with drawTriangles()</title>
		<link>http://blog.arnomanders.nl/index.php/archives/distort-with-drawtrangles/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/distort-with-drawtrangles/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 14:10:20 +0000</pubDate>
		<dc:creator>Arno Manders</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[Away3D]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[disort]]></category>
		<category><![CDATA[drawTriangles]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[verticals]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/?p=339</guid>
		<description><![CDATA[There are a growing number of posts about the technique to distort an image with the drawTriangles() function. But most of those examples create a lot of extra vertices that aren&#8217;t needed for displaying the image and more calculation means more CPU consumption. I explain here how to work with verticals and show some basic [...]
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/distort-with-drawtrangles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LineChart datatip with degrafa skin</title>
		<link>http://blog.arnomanders.nl/index.php/archives/linechart-datatip-with-degrafa-skin/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/linechart-datatip-with-degrafa-skin/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 09:16:06 +0000</pubDate>
		<dc:creator>Arno Manders</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[Degrafa]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[DataTip]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/?p=283</guid>
		<description><![CDATA[Here is an example how you skin a DataTip from a LineChart with the help of Degrafa. Source No related posts.
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/linechart-datatip-with-degrafa-skin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to save files from Flex to your server with PHP</title>
		<link>http://blog.arnomanders.nl/index.php/archives/how-to-save-files-from-flex-to-your-server-with-php/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/how-to-save-files-from-flex-to-your-server-with-php/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 07:45:40 +0000</pubDate>
		<dc:creator>Arno Manders</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/?p=227</guid>
		<description><![CDATA[For my AMDawing I searched a lot for . And all the solutions that I found are too complex in my opinion. I saw all the examples with remote objects and AMFphp or ZendAMF. Finally I found the solution at thinkerlog.com. I think it is the most straight forward solution. This are the basics: First [...]
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/how-to-save-files-from-flex-to-your-server-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find an address with Google maps Flash API</title>
		<link>http://blog.arnomanders.nl/index.php/archives/how-to-find-an-address-with-google-maps-flash-api/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/how-to-find-an-address-with-google-maps-flash-api/#comments</comments>
		<pubDate>Mon, 19 May 2008 14:16:34 +0000</pubDate>
		<dc:creator>Arno Manders</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Maps]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/index.php/archives/how-to-find-an-address-with-google-maps-flash-api/</guid>
		<description><![CDATA[After the Flash Google maps API release I spend some time to see what is possible. I started with the documentation from Google. In there documentation they are using the latitude and longitude coordinates to set the center of your map. This is not really a human readable way to do it and personally I [...]
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/how-to-find-an-address-with-google-maps-flash-api/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Air file.nativePath Vs. file.url</title>
		<link>http://blog.arnomanders.nl/index.php/archives/air-filenativepath-vs-fileurl/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/air-filenativepath-vs-fileurl/#comments</comments>
		<pubDate>Thu, 08 May 2008 14:12:35 +0000</pubDate>
		<dc:creator>Arno Manders</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[file.nativePath]]></category>
		<category><![CDATA[file.url]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac os]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/index.php/archives/air-filenativepath-vs-fileurl/</guid>
		<description><![CDATA[Is it me or is file.url a lot easier to use than file.nativePath in Adobe AIR. Maybe I&#8217;m missing something because every tutorial or code snippet I can find uses file.nativePath. I&#8217;m busy building an AIR application that can be used on Windows and Mac OS. I have to take care of the file structure [...]
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/air-filenativepath-vs-fileurl/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Preformance tips Away3D</title>
		<link>http://blog.arnomanders.nl/index.php/archives/preformance-tips-away3d/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/preformance-tips-away3d/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 06:28:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[Away3D]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[FPS]]></category>
		<category><![CDATA[frames per second]]></category>
		<category><![CDATA[preformance]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[tester]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/index.php/archives/preformance-tips-away3d/</guid>
		<description><![CDATA[While I was building my ImageViewer3D I noticed a few things that can make everything just a little bit faster. And for the challenge and for fun I made a sort of testing application. I build it with Flex and Away3D You can change the a few things such as the amount of 3d objects, [...]
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/preformance-tips-away3d/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash in Flex tutorial installation guide</title>
		<link>http://blog.arnomanders.nl/index.php/archives/flash-in-flex-tutorial-installation-guide/</link>
		<comments>http://blog.arnomanders.nl/index.php/archives/flash-in-flex-tutorial-installation-guide/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 19:26:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[boundary box]]></category>
		<category><![CDATA[cs3]]></category>
		<category><![CDATA[guide]]></category>

		<guid isPermaLink="false">http://blog.arnomanders.nl/index.php/archives/flash-in-flex-tutorial-installation-guide/</guid>
		<description><![CDATA[My internship guide Maikel asked me to find out what you have to do to get Flash in Flex. I started to search for a nice tutorial about this but I have to say that there isn&#8217;t a step by step tutorial that is explaining this. Opportunity for me to help people. If you already [...]
No related posts.]]></description>
		<wfw:commentRss>http://blog.arnomanders.nl/index.php/archives/flash-in-flex-tutorial-installation-guide/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

