<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for kenny bunch</title>
	<atom:link href="http://www.kennybunch.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kennybunch.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 12 Feb 2010 13:47:41 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Importance of Event.clone by Sergei</title>
		<link>http://www.kennybunch.com/blog/2009/01/importance-of-eventclone/comment-page-1/#comment-1150</link>
		<dc:creator>Sergei</dc:creator>
		<pubDate>Fri, 12 Feb 2010 13:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=98#comment-1150</guid>
		<description>Thank you. It helped me to understand why Cairngorm events always have to be cloned.</description>
		<content:encoded><![CDATA[<p>Thank you. It helped me to understand why Cairngorm events always have to be cloned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Project: Adult Swim Video 2.0 by jim r</title>
		<link>http://www.kennybunch.com/blog/2007/07/project-adult-swim-video-20/comment-page-1/#comment-1149</link>
		<dc:creator>jim r</dc:creator>
		<pubDate>Fri, 29 Jan 2010 07:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=60#comment-1149</guid>
		<description>Dude I dig the new site -- took a while but it it grew on me.

Now all you need is (ahem) an iPhone / iPad app to let people view the videos on their Apple devices :) 

Please?  I&#039;ll buy it in an instant!</description>
		<content:encoded><![CDATA[<p>Dude I dig the new site &#8212; took a while but it it grew on me.</p>
<p>Now all you need is (ahem) an iPhone / iPad app to let people view the videos on their Apple devices <img src='http://www.kennybunch.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Please?  I&#8217;ll buy it in an instant!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Aligning Videos in FLVPlayback (AS2 version) by oblong</title>
		<link>http://www.kennybunch.com/blog/2008/05/aligning-videos-in-flvplayback-as2-version/comment-page-1/#comment-1148</link>
		<dc:creator>oblong</dc:creator>
		<pubDate>Wed, 20 Jan 2010 16:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=83#comment-1148</guid>
		<description>HI.
This looks like it may be a solution to my problem, since i cannot find a way to auto position the FLVPlayback, even when i set values using width etc, the update doesnt happen immediately.
I am new to AS coding - can you explain how I implement this class ??? I currently have an FLVPlayback component on the stage.Thanks.</description>
		<content:encoded><![CDATA[<p>HI.<br />
This looks like it may be a solution to my problem, since i cannot find a way to auto position the FLVPlayback, even when i set values using width etc, the update doesnt happen immediately.<br />
I am new to AS coding &#8211; can you explain how I implement this class ??? I currently have an FLVPlayback component on the stage.Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embedding JavaScript into a SWF by Russ</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/comment-page-1/#comment-1147</link>
		<dc:creator>Russ</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272#comment-1147</guid>
		<description>So is the js eval function build it to the browser?  It&#039;s not in the html file included in you source, so I assume it is, but I can&#039;t get it to work.</description>
		<content:encoded><![CDATA[<p>So is the js eval function build it to the browser?  It&#8217;s not in the html file included in you source, so I assume it is, but I can&#8217;t get it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embedding JavaScript into a SWF by Tad</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/comment-page-1/#comment-1140</link>
		<dc:creator>Tad</dc:creator>
		<pubDate>Thu, 29 Oct 2009 21:22:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272#comment-1140</guid>
		<description>You can also embed the script without using eval, by having vars set up in a simple .js file or in the wrapper.

For example:

in a  .js file:

var myFunction;
var otherFunction;

from a AS3 call:

ExternalInterface.call(setVariables);

when wrapping javascript calls in XML use cdata blocks like this:


var setVariables:XML=


;

now myFunction and otherFunction can be called from both the wrapper and the flash. and no eval command was used.

ExternalInterface.call(&quot;myFunction&quot;);

in the wrapper you can call myFunction(); after it has been initiated by the flash.</description>
		<content:encoded><![CDATA[<p>You can also embed the script without using eval, by having vars set up in a simple .js file or in the wrapper.</p>
<p>For example:</p>
<p>in a  .js file:</p>
<p>var myFunction;<br />
var otherFunction;</p>
<p>from a AS3 call:</p>
<p>ExternalInterface.call(setVariables);</p>
<p>when wrapping javascript calls in XML use cdata blocks like this:</p>
<p>var setVariables:XML=</p>
<p>;</p>
<p>now myFunction and otherFunction can be called from both the wrapper and the flash. and no eval command was used.</p>
<p>ExternalInterface.call(&#8221;myFunction&#8221;);</p>
<p>in the wrapper you can call myFunction(); after it has been initiated by the flash.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embedding JavaScript into a SWF by Kenny Bunch</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/comment-page-1/#comment-1110</link>
		<dc:creator>Kenny Bunch</dc:creator>
		<pubDate>Tue, 06 Oct 2009 02:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272#comment-1110</guid>
		<description>SixFingers, 
I&#039;ll try and update the article with the XML based solution, as we&#039;ve used it too. The basics are you put the script inline in your code by wrapping it in XML.

For example:
// your script in XML
var script:XML =
  
    
  

// embed the script
ExternalInterface.call(&quot;eval&quot;, script);

// use the script
ExternalInterface.call(&quot;hello&quot;);</description>
		<content:encoded><![CDATA[<p>SixFingers,<br />
I&#8217;ll try and update the article with the XML based solution, as we&#8217;ve used it too. The basics are you put the script inline in your code by wrapping it in XML.</p>
<p>For example:<br />
// your script in XML<br />
var script:XML =</p>
<p>// embed the script<br />
ExternalInterface.call(&#8221;eval&#8221;, script);</p>
<p>// use the script<br />
ExternalInterface.call(&#8221;hello&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embedding JavaScript into a SWF by sixfngers</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/comment-page-1/#comment-1109</link>
		<dc:creator>sixfngers</dc:creator>
		<pubDate>Mon, 05 Oct 2009 22:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272#comment-1109</guid>
		<description>@senocular, I am curious how you did this with XML CDATA. I ask because I am using cs3 and can&#039;t use the embed tag like Kenny shows in his example. Wondering if you have an example? Thx.</description>
		<content:encoded><![CDATA[<p>@senocular, I am curious how you did this with XML CDATA. I ask because I am using cs3 and can&#8217;t use the embed tag like Kenny shows in his example. Wondering if you have an example? Thx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embedding JavaScript into a SWF by 【好消息】可以把javaScript嵌入到swf里了 at Adobe Show Center</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/comment-page-1/#comment-1094</link>
		<dc:creator>【好消息】可以把javaScript嵌入到swf里了 at Adobe Show Center</dc:creator>
		<pubDate>Sun, 27 Sep 2009 17:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272#comment-1094</guid>
		<description>[...] 来源页面: http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/ [...]</description>
		<content:encoded><![CDATA[<p>[...] 来源页面: <a href="http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/"  rel="nofollow">http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embedding JavaScript into a SWF by Adobe Flex Tutorial</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/comment-page-1/#comment-1093</link>
		<dc:creator>Adobe Flex Tutorial</dc:creator>
		<pubDate>Sun, 27 Sep 2009 12:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272#comment-1093</guid>
		<description>That&#039;s a great trick, i&#039;ve been looking for something like this for a long time now (for dynamically loaded flex modules). 
I translated your article for french folks here:
http://www.flex-tutorial.fr/2009/09/27/flex-tips-embarquer-un-fichier-javascript-dans-un-swf-embed/

Thx again
Fabien
http://www.flex-tutorial.fr</description>
		<content:encoded><![CDATA[<p>That&#8217;s a great trick, i&#8217;ve been looking for something like this for a long time now (for dynamically loaded flex modules).<br />
I translated your article for french folks here:<br />
<a href="http://www.flex-tutorial.fr/2009/09/27/flex-tips-embarquer-un-fichier-javascript-dans-un-swf-embed/" onclick="javascript:pageTracker._trackPageview('/outbound/comment/http://www.flex-tutorial.fr/2009/09/27/flex-tips-embarquer-un-fichier-javascript-dans-un-swf-embed/');" rel="nofollow">http://www.flex-tutorial.fr/2009/09/27/flex-tips-embarquer-un-fichier-javascript-dans-un-swf-embed/</a></p>
<p>Thx again<br />
Fabien<br />
<a href="http://www.flex-tutorial.fr" onclick="javascript:pageTracker._trackPageview('/outbound/comment/http://www.flex-tutorial.fr');" rel="nofollow">http://www.flex-tutorial.fr</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Embedding JavaScript into a SWF by Flex Tips - Embarquer un fichier JavaScript dans un SWF (Embed) - Adobe Flex Tutorial - Tutoriaux Flex Builder, MXML, ActionScript, AS3</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/comment-page-1/#comment-1092</link>
		<dc:creator>Flex Tips - Embarquer un fichier JavaScript dans un SWF (Embed) - Adobe Flex Tutorial - Tutoriaux Flex Builder, MXML, ActionScript, AS3</dc:creator>
		<pubDate>Sun, 27 Sep 2009 12:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272#comment-1092</guid>
		<description>[...] Voici une technique très intéressante permettant d&#039;embarquer (embedding) un fichier JS dans un SWF pour pouvoir ensuite appeler des fonctions JS qui vont réagir avec le conteneur HTML. J&#039;ai découvert cette technique ce matin (comme quoi on en apprend tous les jours) sur le blog de Kenny Bunch. [...]</description>
		<content:encoded><![CDATA[<p>[...] Voici une technique très intéressante permettant d&#39;embarquer (embedding) un fichier JS dans un SWF pour pouvoir ensuite appeler des fonctions JS qui vont réagir avec le conteneur HTML. J&#39;ai découvert cette technique ce matin (comme quoi on en apprend tous les jours) sur le blog de Kenny Bunch. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
