<?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>dropthedigibomb.com &#187; APNG</title>
	<atom:link href="http://dropthedigibomb.com/category/apng/feed/" rel="self" type="application/rss+xml" />
	<link>http://dropthedigibomb.com</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 17:59:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>AS3 GIF Player</title>
		<link>http://dropthedigibomb.com/2008/as3-gif-player/</link>
		<comments>http://dropthedigibomb.com/2008/as3-gif-player/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:20:57 +0000</pubDate>
		<dc:creator>digibomb</dc:creator>
				<category><![CDATA[APNG]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[gif]]></category>

		<guid isPermaLink="false">http://backspacestudios.com/blog/?p=188</guid>
		<description><![CDATA[I came across a great post at ByteArray.org where Thibault Imbert was discussing one of his new AS3 experiments, the AS3 GIF Player Class 0.2. As you may already know, it is not possible to load animated GIF’s into the player. If you load a GIF file with the flash.display.Loader class you will only get [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a great post at <a title="ByteArray.org" href="http://www.bytearray.org/" target="_blank">ByteArray.org</a> where Thibault Imbert  was discussing one of his new AS3 experiments, the AS3 GIF Player Class 0.2. As you may already know, it is not possible to load animated GIF’s into the player. If you load a GIF file with the flash.display.Loader class you will only get the first frame of the animation.</p>
<p>this has all chanegd with the GIFPlayer class!</p>
<p>To load an animated GIF :</p>
<pre>// we create the GIFPlayer, it plays automatically by default
var myGIFPlayer:GIFPlayer = new GIFPlayer();
// we show it
addChild ( myGIFPlayer );
// we load a gif file
myGIFPlayer.load ( new URLRequest ("animation.gif") );
// you can also load any valid GIF stream (ByteArray)
//with the loadBytes method (version 0.2)
myGIFPlayer.loadBytes ( gifStream );
// listen for the IOErrorEvent.IO_ERROR event,
//dispatched when the GIF fails to load
myGIFPlayer.addEventListener ( IOErrorEvent.IO_ERROR, onIOError );
// listen for the GIFPlayerEvent.COMPLETE event,
//dispatched when GIF is loaded
myGIFPlayer.addEventListener ( GIFPlayerEvent.COMPLETE, onCompleteGIFLoad );
// listen for the FrameEvent.FRAME_RENDERED event,
//dispatched when a GIF frame is rendered on screen
myGIFPlayer.addEventListener ( FrameEvent.FRAME_RENDERED, onFrameRendered );
// listen for the FileTypeEvent.INVALID event,
//dispatched when an invalid file is loaded
myGIFPlayer.addEventListener ( FileTypeEvent.INVALID, onInvalidFileLoaded );
// get total frames
myGIFPlayer.totalFrames;
// standard methods
myGIFPlayer.play();
myGIFPlayer.stop();
myGIFPlayer.gotoAndStop(3);
myGIFPlayer.gotoAndPlay(3);</pre>
<p>Here&#8217;s a sample from <a title="ByteArray.org" href="http://www.bytearray.org/" target="_blank">ByteArray.org</a> . Please don’t load huge GIF files!</p>
<p>Online Demo :<br />
***Click on Load GIF File and paste this in the path >> http://www.backspacestudios.com/beaker/GIFPlayer/diego.gif<br />
[kml_flashembed movie="http://backspacestudios.com/beaker/GIFPlayer/GIFPlayer.swf" height="500" width="500" /]</p>
<p>Sources and documentation available at <a href="http://code.google.com/p/as3gif/" target="_blank">http://code.google.com/p/as3gif/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropthedigibomb.com/2008/as3-gif-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APNG Update</title>
		<link>http://dropthedigibomb.com/2007/apng-update/</link>
		<comments>http://dropthedigibomb.com/2007/apng-update/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 02:22:41 +0000</pubDate>
		<dc:creator>digibomb</dc:creator>
				<category><![CDATA[APNG]]></category>

		<guid isPermaLink="false">http://backspacestudios.com/blog/index.php/apng-update/backspaceblabber/</guid>
		<description><![CDATA[Development of the APNG microsite is underway. We hope to have the site up before the end of the week. I will be holding another training ATS ( APNG Training Session ) later this month. Untill then here are a few good links to get you started. http://labs.mozilla.com/2007/08/better-animations-in-firefox-3/ http://wiki.mozilla.org/APNG_Specification http://littlesvr.ca/apng/apngedit.html Also see http://phug.ca/index.php/apng-assembler-andrew-smith/ Here are [...]]]></description>
			<content:encoded><![CDATA[<p>Development of the APNG microsite is underway. We hope to have the site up before the end of the week.</p>
<p>I will be holding another training ATS ( APNG Training Session ) later this month. Untill then here are a few good links to get you started.</p>
<p><a href="http://labs.mozilla.com/2007/08/better-animations-in-firefox-3/">http://labs.mozilla.com/2007/08/better-animations-in-firefox-3/ </a><br />
<a href="http://wiki.mozilla.org/APNG_Specification">http://wiki.mozilla.org/APNG_Specification</a><br />
<a href="http://littlesvr.ca/apng/apngedit.html">http://littlesvr.ca/apng/apngedit.html</a><br />
<em>Also see</em> <a href="http://phug.ca/index.php/apng-assembler-andrew-smith/">http://phug.ca/index.php/apng-assembler-andrew-smith/ </a></p>
<p>Here are a few samples contributed by <a href="http://phug.ca">PHUG</a> members.<br />
You will need a <a href="http://www.mozilla.com/en-US/firefox/all-beta.html">Firefox 3 beta</a> or <a href="http://www.mozilla.org/projects/firefox/3.0a7/releasenotes/">Gran Paradiso</a> to view the APNG files.</p>
<p><a href="http://backspacestudios.com/blog/index.php/apng-update/apng/attachment/103/" rel="attachment wp-att-103" title="daniel_coltri01.png"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/daniel_coltri01.png" alt="daniel_coltri01.png" /></a></p>
<p><a href="http://backspacestudios.com/blog/index.php/apng-update/apng/attachment/104/" rel="attachment wp-att-104" title="daniel_coltri02.png"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/daniel_coltri02.png" alt="daniel_coltri02.png" /></a></p>
<p><a href="http://backspacestudios.com/blog/index.php/apng-update/apng/attachment/105/" rel="attachment wp-att-105" title="william_wong01.png"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/william_wong01.png" alt="william_wong01.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropthedigibomb.com/2007/apng-update/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>APNG Training Session</title>
		<link>http://dropthedigibomb.com/2007/apng-training-session/</link>
		<comments>http://dropthedigibomb.com/2007/apng-training-session/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 03:23:11 +0000</pubDate>
		<dc:creator>digibomb</dc:creator>
				<category><![CDATA[APNG]]></category>

		<guid isPermaLink="false">http://backspacestudios.com/blog/index.php/apng-training-session/backspaceblabber/</guid>
		<description><![CDATA[PHUG (PHP Toronto User Group) , a Toronto based online community, is helping contribute to the APNG open source project in conjunction with Seneca College of Applied Arts and Technology &#8211; School of Computer Studies. APNG (Animated PNG) is a new format based on and compatible with the PNG format. It was developed to overcome [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://backspacestudios.com/blog/index.php/apng-training-session/apng/attachment/74/" rel="attachment wp-att-74" title="apng05.jpg"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng05.thumbnail.jpg" alt="apng05.jpg" /></a></p>
<p><a href="http://www.phug.ca">PHUG</a> (PHP Toronto User Group) , a Toronto based online community, is helping contribute to the APNG open source project in conjunction  with Seneca College of Applied Arts and Technology  &#8211; School of Computer Studies.</p>
<p style="font-style: italic">APNG (Animated PNG) is a new format based on and compatible with the PNG format. It was developed to overcome technical limitations of Animated GIF&#8217;s. The APNG and PNG specs are not legally encumbered.</p>
<p>PHUG will be putting together an APNG showcase site that will demonstrate the power of this new format.</p>
<p>BackSpaceStudios has offered to help train members of PHUG to use the new APNG editor with Mozilla&#8217;s Gran Paradiso browser. training session began this evening at Seneca College with about 30 members in attendance.</p>
<p>We will be holding another training session tomorrow Dec 4th at 6pm, Seneca College of Applied Arts and Technology York Campus RM2046.</p>
<p>For more information on APNG:<br />
<a href="http://littlesvr.ca/apng/demo.php">http://littlesvr.ca/apng/demo.php</a><br />
<a href="http://labs.mozilla.com/2007/08/better-animations-in-firefox-3/">http://labs.mozilla.com/2007/08/better-animations-in-firefox-3/</a><br />
<a href="http://zenit.senecac.on.ca/wiki/index.php/APNG">http://zenit.senecac.on.ca/wiki/index.php/APNG</a></p>
<p><strong>Pictures from the Training session</strong></p>
<p><a href="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng051.jpg" title="apng051.jpg" rel="lightbox[73]"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng051.thumbnail.jpg" alt="apng051.jpg" /></a><a href="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng04.jpg" title="apng04.jpg" rel="lightbox[73]"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng04.thumbnail.jpg" alt="apng04.jpg" /></a><a href="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng03.jpg" title="apng03.jpg" rel="lightbox[73]"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng03.thumbnail.jpg" alt="apng03.jpg" /></a><a href="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng02.jpg" title="apng02.jpg" rel="lightbox[73]"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng02.thumbnail.jpg" alt="apng02.jpg" /></a><a href="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng01.jpg" title="apng01.jpg" rel="lightbox[73]"><img src="/blog///home/users/web/b237/nf.reseller2633-10003/public_html/backspacestudios.com//blog//wp-content/uploads/2007/12/apng01.thumbnail.jpg" alt="apng01.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropthedigibomb.com/2007/apng-training-session/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

