<?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>Web Development - Programming - Coding Recipes &#187; Actionscript</title>
	<atom:link href="http://codingrecipes.com/category/actionscript/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 19:58:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A Way To Send A Message To Apple About Flash</title>
		<link>http://codingrecipes.com/a-way-to-send-a-message-to-apple-about-flash</link>
		<comments>http://codingrecipes.com/a-way-to-send-a-message-to-apple-about-flash#comments</comments>
		<pubDate>Sat, 10 Apr 2010 20:55:50 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=876</guid>
		<description><![CDATA[Here is what can be done, someone could write a piece of JS code and make a big Flash banner, big I mean very big and then the JavaScript could check for iPad and iPhone and try to show the banner to them&#8230;
You can then urge web developers and web masters to put it on [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/a-way-to-send-a-message-to-apple-about-flash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Actions &#8211; Button&#8221; Window In Flash</title>
		<link>http://codingrecipes.com/actions-button-window-in-flash</link>
		<comments>http://codingrecipes.com/actions-button-window-in-flash#comments</comments>
		<pubDate>Mon, 26 Oct 2009 22:15:22 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=717</guid>
		<description><![CDATA[If you are editing a Flash file like a menu and you can&#8217;t open the &#8220;Actions &#8211; Button&#8221; panel and only you see is &#8220;Actions &#8211; Frame&#8221; and you are 100% sure that you are dealing with actual buttons here is what you do:
Where you can see the layers, there is a lock icon, for [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/actions-button-window-in-flash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viewing Actionscript within .fla file</title>
		<link>http://codingrecipes.com/viewing-actionscript-within-fla-file</link>
		<comments>http://codingrecipes.com/viewing-actionscript-within-fla-file#comments</comments>
		<pubDate>Wed, 08 Jul 2009 00:37:17 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=660</guid>
		<description><![CDATA[It&#8217;s very simple, hit F9  
I wish it was more obvious to beginners though.
]]></description>
		<wfw:commentRss>http://codingrecipes.com/viewing-actionscript-within-fla-file/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calling JavaScript Functions</title>
		<link>http://codingrecipes.com/calling-javascript-functions</link>
		<comments>http://codingrecipes.com/calling-javascript-functions#comments</comments>
		<pubDate>Fri, 22 May 2009 21:38:16 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://recipes.code-head.com/?p=19</guid>
		<description><![CDATA[
import flash.external.ExternalInterface;
...
ExternalInterface.call&#40;&#34;your_javascript_function()&#34;&#41;;

Get the return value:

var x:int = ExternalInterface.call&#40;&#34;get_x()&#34;&#41;;

]]></description>
		<wfw:commentRss>http://codingrecipes.com/calling-javascript-functions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calling a JavaScript function from Actionscript 3 (Flash)</title>
		<link>http://codingrecipes.com/calling-a-javascript-function-from-actionscript-3-flash</link>
		<comments>http://codingrecipes.com/calling-a-javascript-function-from-actionscript-3-flash#comments</comments>
		<pubDate>Wed, 22 Oct 2008 07:51:16 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=460</guid>
		<description><![CDATA[It&#8217;s very easy:

import flash.external.ExternalInterface;
...
ExternalInterface.call&#40;&#34;your_javascript_function()&#34;&#41;;

You can even get a return value:

var x:int = ExternalInterface.call&#40;&#34;get_x()&#34;&#41;;

To pass an argument try:

var retval:int = ExternalInterface.call&#40;&#34;some_js_function()&#34;, &#34;the-argument&#34;&#41;;

]]></description>
		<wfw:commentRss>http://codingrecipes.com/calling-a-javascript-function-from-actionscript-3-flash/feed</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Flash CS3 is slow on Windows Vista</title>
		<link>http://codingrecipes.com/flash-cs3-is-slow-on-windows-vista</link>
		<comments>http://codingrecipes.com/flash-cs3-is-slow-on-windows-vista#comments</comments>
		<pubDate>Thu, 02 Oct 2008 04:15:42 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=422</guid>
		<description><![CDATA[Here is how to fix it:
1 &#8211; Right click on Flash&#8217;s desktop (or whatever) icon and then click &#8220;Properties&#8221;
2 &#8211; Go to compatibility tab
3 &#8211; Check the box &#8220;Run this program in compatibility mode for:&#8221;
4 &#8211; From the drop down select &#8220;Windows XP (Service Pack 2)&#8221;
5 &#8211; Open Flash
And that&#8217;s it, it will run smoothly, [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/flash-cs3-is-slow-on-windows-vista/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Red5 flash server problems; impossible to get it working</title>
		<link>http://codingrecipes.com/red5-flash-server-problems-impossible-to-get-it-working</link>
		<comments>http://codingrecipes.com/red5-flash-server-problems-impossible-to-get-it-working#comments</comments>
		<pubDate>Tue, 30 Sep 2008 02:14:58 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=393</guid>
		<description><![CDATA[I worked 2 full days to get Red5 0.7.0 working with custom applications but I had no luck.
I couldn&#8217;t even get the tutorials written by Red5 developers working, it doesn&#8217;t have proper documentation either so it was a real nightmare.
So many other people have these problems too and there seem to be no answer to [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/red5-flash-server-problems-impossible-to-get-it-working/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetStream.publish Actionscript 3, recording with the best quality</title>
		<link>http://codingrecipes.com/netstreampublish-actionscript-3-recording-with-the-best-quality</link>
		<comments>http://codingrecipes.com/netstreampublish-actionscript-3-recording-with-the-best-quality#comments</comments>
		<pubDate>Fri, 26 Sep 2008 18:56:30 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=386</guid>
		<description><![CDATA[After some time of working on this I found that with the following code, I could get the best quality when recording videos with Flash:

camera.setMode&#40;300, 240, 30&#41;;
// camera.setKeyFrameInterval(CAMERA_KEY_FRAME_INTERVAL); /* Comment this out */
camera.setQuality&#40;0, 0&#41;;

Funny, with 15 frames per second, there was a lot of problems, but 30 frames per second fixed all the issues for [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/netstreampublish-actionscript-3-recording-with-the-best-quality/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Detecting the end of FLV stream in Actionscript 3, part 2</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3-part-2</link>
		<comments>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3-part-2#comments</comments>
		<pubDate>Wed, 24 Sep 2008 20:42:00 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=378</guid>
		<description><![CDATA[Read this post first:
http://blog.code-head.com/detecting-the-end-of-flv-stream-in-actionscript-3
Funny today, I get the events in reverse order:
NetStream.Buffer.Empty
NetStream.Buffer.Flush
Yesterday it was:
NetStream.Buffer.Flush
NetStream.Buffer.Empty
I will find the solution though  
]]></description>
		<wfw:commentRss>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3-part-2/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Detecting the end of FLV stream in Actionscript 3</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3</link>
		<comments>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3#comments</comments>
		<pubDate>Wed, 24 Sep 2008 18:33:36 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=373</guid>
		<description><![CDATA[There is an issue with this post, read it and then read this:
http://blog.code-head.com/detecting-the-end-of-flv-stream-in-actionscript-3-part-2
This is also one of those things that I couldn&#8217;t really find a real solution to online, so with some tests and experiments, I came up with this solution which I&#8217;m not sure if it&#8217;s the best solution.
First you will need to attach [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
