<?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>labs.hellokeita.com &#187; AVM1</title>
	<atom:link href="http://labs.hellokeita.com/category/avm1/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.hellokeita.com</link>
	<description>Yet another labs blog</description>
	<lastBuildDate>Thu, 01 Dec 2011 20:14:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Launching my public subversion</title>
		<link>http://labs.hellokeita.com/2007/10/24/launching-my-public-subversion/</link>
		<comments>http://labs.hellokeita.com/2007/10/24/launching-my-public-subversion/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 18:32:55 +0000</pubDate>
		<dc:creator>keita</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[AVM1]]></category>
		<category><![CDATA[AVM2]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/24/launching-my-public-subversion/</guid>
		<description><![CDATA[http://code.hellokeita.in/public/
People, I&#8217;m launching my codes on public subversion repository.
It&#8217;s almost nothing there&#8230; but, how people claimed for the source (here), there is it.
Hope you enjoy it&#8230;
PS: If there&#8217;s any bug or anything I forgot, apologize me&#8230; I still don&#8217;t get much time to review my codes&#8230;
 Vote]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.hellokeita.in/public/" target="_blank">http://code.hellokeita.in/public/</a></p>
<p>People, I&#8217;m launching my codes on public subversion repository.<br />
It&#8217;s almost nothing there&#8230; but, how people claimed for the source (<a href="http://labs.hellokeita.com/2007/09/20/textanimation/#comments" target="_blank">here</a>), there is it.</p>
<p>Hope you enjoy it&#8230;</p>
<p>PS: If there&#8217;s any bug or anything I forgot, apologize me&#8230; I still don&#8217;t get much time to review my codes&#8230;</p>
<a href='http://www.hexosearch.com/se/submit.aspx?zlvz=2&zqz=&zurlz=http://labs.hellokeita.com/2007/10/24/launching-my-public-subversion/&ztz=Launching my public subversion'><img src='http://labs.hellokeita.com/wp-content/plugins/hexosearch-button/logo16x16.png' width='16' height='16' border='0' style='padding:0px 5px 0px 0px;vertical-align:middle' alt='Vote in HexoSearch' title='Vote in HexoSearch' /></a> <span style='vertical-align:middle'><a href='http://www.hexosearch.com/se/submit.aspx?zlvz=2&zqz=&zurlz=http://labs.hellokeita.com/2007/10/24/launching-my-public-subversion/&ztz=Launching my public subversion'>Vote</a></span>]]></content:encoded>
			<wfw:commentRss>http://labs.hellokeita.com/2007/10/24/launching-my-public-subversion/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>AS3 AVM1 Loader</title>
		<link>http://labs.hellokeita.com/2007/10/15/as3-avm1-loader/</link>
		<comments>http://labs.hellokeita.com/2007/10/15/as3-avm1-loader/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 07:36:52 +0000</pubDate>
		<dc:creator>keita</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[AVM1]]></category>
		<category><![CDATA[AVM2]]></category>

		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/15/as3-avm1-loader/</guid>
		<description><![CDATA[I&#8217;ve been working on a project that needs to load FFmpeg generated SWF.
FFmpeg generates Flash 6 SWF. And there I got the problem, because AS3 can&#8217;t control AVM1 movies.
I googled and I found this AVM2Loader Class from Fladdict.
Simply talking, it loads the SWF and rewrites the necessary bytes to convert it to AVM2.
But, the problem [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a project that needs to load FFmpeg generated SWF.<br />
FFmpeg generates Flash 6 SWF. And there I got the problem, because AS3 can&#8217;t control AVM1 movies.</p>
<p>I googled and I found this <a href="http://www.fladdict.net/blog-en/2007/06/avm2loader_class.html" target="_blank">AVM2Loader Class</a> from Fladdict.<br />
Simply talking, it loads the SWF and rewrites the necessary bytes to convert it to AVM2.<br />
But, the problem was that this class just converts Flash 8 compiled AVM1.</p>
<p>So, I restarted my research.<br />
Tried with Localconnection, but I got some delay on it&#8217;s response.</p>
<p>So I used ExternalInterface, and so far, it was working fine, until some guy tested on Safari 3 and got some slow script error.<br />
Huh of course&#8230; I was loading douzens of avm1, everyone calling ExternalInterface on EnterFrame.</p>
<p>Thanks to google, I found the ultimate solution.<br />
I found this other class <a href="http://snippets.libspark.org/trac/wiki/yossy/ForcibleLoader" target="_blank">ForcibeLoader</a> that really converts any SWF versions to AVM2.</p>
<p>I rewrote this class for an easier syntax, but&#8230; I&#8217;ll be posting it when I get my svn and some kind of trac system ready.</p>
<p>So&#8230; thanks for all those byte eaters.</p>
<a href='http://www.hexosearch.com/se/submit.aspx?zlvz=2&zqz=&zurlz=http://labs.hellokeita.com/2007/10/15/as3-avm1-loader/&ztz=AS3 AVM1 Loader'><img src='http://labs.hellokeita.com/wp-content/plugins/hexosearch-button/logo16x16.png' width='16' height='16' border='0' style='padding:0px 5px 0px 0px;vertical-align:middle' alt='Vote in HexoSearch' title='Vote in HexoSearch' /></a> <span style='vertical-align:middle'><a href='http://www.hexosearch.com/se/submit.aspx?zlvz=2&zqz=&zurlz=http://labs.hellokeita.com/2007/10/15/as3-avm1-loader/&ztz=AS3 AVM1 Loader'>Vote</a></span>]]></content:encoded>
			<wfw:commentRss>http://labs.hellokeita.com/2007/10/15/as3-avm1-loader/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

