<?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 on: ForcibleLoader: Loads AVM1 SWF files into AVM2</title>
	<atom:link href="http://blog.jactionscripters.com/2009/05/18/forcibleloader/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jactionscripters.com/2009/05/18/forcibleloader/</link>
	<description>More than 20 Japanese flash coders share the blog/ You will be junkie for this crazy Japanese Flash news</description>
	<lastBuildDate>Tue, 26 Jan 2010 13:26:06 +0900</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Patrick</title>
		<link>http://blog.jactionscripters.com/2009/05/18/forcibleloader/comment-page-1/#comment-83</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Thu, 04 Jun 2009 21:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=317#comment-83</guid>
		<description>One more thing I noticed, that i loaded in a clip and it can&#039;t seem to go  to go back again to the second frame of a 2 frame movieclip.  I am using your code to work with pdfToSWF...   When there are only two frames, i can go forward the first  time, just not back, however, 3 frames seem to work fine. haven&#039;t tested others amounts yet.  

Also, the loaded clip&#039;s height is 3000000 pixels wide and tall... some weirdness there.

Thanks for your time</description>
		<content:encoded><![CDATA[<p>One more thing I noticed, that i loaded in a clip and it can&#8217;t seem to go  to go back again to the second frame of a 2 frame movieclip.  I am using your code to work with pdfToSWF&#8230;   When there are only two frames, i can go forward the first  time, just not back, however, 3 frames seem to work fine. haven&#8217;t tested others amounts yet.  </p>
<p>Also, the loaded clip&#8217;s height is 3000000 pixels wide and tall&#8230; some weirdness there.</p>
<p>Thanks for your time</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://blog.jactionscripters.com/2009/05/18/forcibleloader/comment-page-1/#comment-82</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Thu, 04 Jun 2009 17:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=317#comment-82</guid>
		<description>Thanks, i made a couple changes to your script to handle a byteArray 


private function completeHandler(event:Event):void
		{
			loadBytes();	
		}
		
		public function loadBytes(bytes:ByteArray=null):void
		{
			var inputBytes:ByteArray;
			if (!bytes)
			{
				inputBytes 			 = new ByteArray();
				_stream.readBytes(inputBytes);
				_stream.close();
			
			} else 
			{
				inputBytes = bytes;
			}

w00t!</description>
		<content:encoded><![CDATA[<p>Thanks, i made a couple changes to your script to handle a byteArray </p>
<p>private function completeHandler(event:Event):void<br />
		{<br />
			loadBytes();<br />
		}</p>
<p>		public function loadBytes(bytes:ByteArray=null):void<br />
		{<br />
			var inputBytes:ByteArray;<br />
			if (!bytes)<br />
			{<br />
				inputBytes 			 = new ByteArray();<br />
				_stream.readBytes(inputBytes);<br />
				_stream.close();</p>
<p>			} else<br />
			{<br />
				inputBytes = bytes;<br />
			}</p>
<p>w00t!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yoshihiro Shindo</title>
		<link>http://blog.jactionscripters.com/2009/05/18/forcibleloader/comment-page-1/#comment-41</link>
		<dc:creator>Yoshihiro Shindo</dc:creator>
		<pubDate>Fri, 22 May 2009 12:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=317#comment-41</guid>
		<description>Thank you!
I fixed it. :)</description>
		<content:encoded><![CDATA[<p>Thank you!<br />
I fixed it. <img src='http://blog.jactionscripters.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Till Schneidereit</title>
		<link>http://blog.jactionscripters.com/2009/05/18/forcibleloader/comment-page-1/#comment-40</link>
		<dc:creator>Till Schneidereit</dc:creator>
		<pubDate>Fri, 22 May 2009 11:16:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=317#comment-40</guid>
		<description>meh, the comment system seems to strip out html entities. Maybe this version works:

			if (version &lt; 9) {
				updateVersion(inputBytes, 9);
			}
			if (version &gt; 7) {
				flagSWF9Bit(inputBytes);
			}
			else {
				insertFileAttributesTag(inputBytes);
			}</description>
		<content:encoded><![CDATA[<p>meh, the comment system seems to strip out html entities. Maybe this version works:</p>
<p>			if (version &lt; 9) {<br />
				updateVersion(inputBytes, 9);<br />
			}<br />
			if (version &gt; 7) {<br />
				flagSWF9Bit(inputBytes);<br />
			}<br />
			else {<br />
				insertFileAttributesTag(inputBytes);<br />
			}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Till Schneidereit</title>
		<link>http://blog.jactionscripters.com/2009/05/18/forcibleloader/comment-page-1/#comment-39</link>
		<dc:creator>Till Schneidereit</dc:creator>
		<pubDate>Fri, 22 May 2009 11:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=317#comment-39</guid>
		<description>Hi Yoshihiro,

thanks for this very useful class!
In using it, I&#039;ve found a small/ missing feature: SWF files with version 9 but AVM1 script tag won&#039;t be converted to AVM2. To fix this, I&#039;ve modified the lines starting at 97 to the following:


			if (version  7) {
				flagSWF9Bit(inputBytes);
			}
			else {
				insertFileAttributesTag(inputBytes);
			}



cheers and thanks,
till</description>
		<content:encoded><![CDATA[<p>Hi Yoshihiro,</p>
<p>thanks for this very useful class!<br />
In using it, I&#8217;ve found a small/ missing feature: SWF files with version 9 but AVM1 script tag won&#8217;t be converted to AVM2. To fix this, I&#8217;ve modified the lines starting at 97 to the following:</p>
<p>			if (version  7) {<br />
				flagSWF9Bit(inputBytes);<br />
			}<br />
			else {<br />
				insertFileAttributesTag(inputBytes);<br />
			}</p>
<p>cheers and thanks,<br />
till</p>
]]></content:encoded>
	</item>
</channel>
</rss>
