<?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: AS3 bitmap mosaic class</title>
	<atom:link href="http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/</link>
	<description></description>
	<lastBuildDate>Tue, 01 May 2012 18:41:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Georg Graf</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-183</link>
		<dc:creator>Georg Graf</dc:creator>
		<pubDate>Mon, 23 Apr 2012 14:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-183</guid>
		<description>Good job on that class.

Troubles I got with it, my movieclip, which was drawn from, was centered - so all content from the left side of the pivot point wasn rendered.
Just replace the first 2 lines of the constructor with this to remove this effect:

bmd = new BitmapData(srcDispObj.width, srcDispObj.height);
var m:Matrix = new Matrix();
m.translate(-srcDispObj.getRect(srcDispObj).x, -srcDispObj.getRect(srcDispObj).y);
bmd.draw(srcDispObj, m);</description>
		<content:encoded><![CDATA[<p>Good job on that class.</p>
<p>Troubles I got with it, my movieclip, which was drawn from, was centered &#8211; so all content from the left side of the pivot point wasn rendered.<br />
Just replace the first 2 lines of the constructor with this to remove this effect:</p>
<p>bmd = new BitmapData(srcDispObj.width, srcDispObj.height);<br />
var m:Matrix = new Matrix();<br />
m.translate(-srcDispObj.getRect(srcDispObj).x, -srcDispObj.getRect(srcDispObj).y);<br />
bmd.draw(srcDispObj, m);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafael Rinaldi</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-80</link>
		<dc:creator>Rafael Rinaldi</dc:creator>
		<pubDate>Tue, 03 Apr 2012 20:41:42 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-80</guid>
		<description>It works. Thanks.</description>
		<content:encoded><![CDATA[<p>It works. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-79</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Tue, 08 Nov 2011 15:42:53 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-79</guid>
		<description>Maybe it has something to do with loading an image across different domains? I&#039;d have to know your specific case.</description>
		<content:encoded><![CDATA[<p>Maybe it has something to do with loading an image across different domains? I&#8217;d have to know your specific case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twan</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-78</link>
		<dc:creator>Twan</dc:creator>
		<pubDate>Mon, 07 Nov 2011 23:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-78</guid>
		<description>This class is awesome! Thanks so much for sharing.

I did ran into a problem. The Mosaic filter works fine when running locally, but as soon as I place the swf on a webserver, the Flash movie halts at the moment of creating the class instance. Any clue what goes wrong here?</description>
		<content:encoded><![CDATA[<p>This class is awesome! Thanks so much for sharing.</p>
<p>I did ran into a problem. The Mosaic filter works fine when running locally, but as soon as I place the swf on a webserver, the Flash movie halts at the moment of creating the class instance. Any clue what goes wrong here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ??? &#187; Blog Archive &#187; ??bitmap???</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-77</link>
		<dc:creator>??? &#187; Blog Archive &#187; ??bitmap???</dc:creator>
		<pubDate>Sun, 06 Mar 2011 13:03:34 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-77</guid>
		<description>[...] AS3 bitmap mosaic class ???????????????? [...] </description>
		<content:encoded><![CDATA[<p>[...] AS3 bitmap mosaic class ???????????????? [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VJ Woody</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-76</link>
		<dc:creator>VJ Woody</dc:creator>
		<pubDate>Tue, 01 Feb 2011 09:34:49 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-76</guid>
		<description>@Josh, Julian

Great class, very nice work - short, sweet and effective!

One question, though - the pixelation happens from top-left (0,0). Any chance of pointers to get it working from another position, say perhaps the centre (but ideally any co-ordinate)?

thanks</description>
		<content:encoded><![CDATA[<p>@Josh, Julian</p>
<p>Great class, very nice work &#8211; short, sweet and effective!</p>
<p>One question, though &#8211; the pixelation happens from top-left (0,0). Any chance of pointers to get it working from another position, say perhaps the centre (but ideally any co-ordinate)?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AS???????? ? ???????</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-75</link>
		<dc:creator>AS???????? ? ???????</dc:creator>
		<pubDate>Mon, 13 Dec 2010 10:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-75</guid>
		<description>[...] AS3 bitmap mosaic class ???????????????? [...] </description>
		<content:encoded><![CDATA[<p>[...] AS3 bitmap mosaic class ???????????????? [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 8?bitmap??? - ChinemitBlog</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-74</link>
		<dc:creator>8?bitmap??? - ChinemitBlog</dc:creator>
		<pubDate>Mon, 01 Nov 2010 04:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-74</guid>
		<description>[...] AS3 bitmap mosaic class ???????????????? [...] </description>
		<content:encoded><![CDATA[<p>[...] AS3 bitmap mosaic class ???????????????? [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ????? &#187; AS????????</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-73</link>
		<dc:creator>????? &#187; AS????????</dc:creator>
		<pubDate>Mon, 20 Sep 2010 06:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-73</guid>
		<description>[...] AS3 bitmap mosaic class ???????????????? [...] </description>
		<content:encoded><![CDATA[<p>[...] AS3 bitmap mosaic class ???????????????? [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: as518.com</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comment-72</link>
		<dc:creator>as518.com</dc:creator>
		<pubDate>Thu, 19 Aug 2010 01:56:37 +0000</pubDate>
		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82#comment-72</guid>
		<description>[...] AS3 bitmap mosaic class ???????????????? [...] </description>
		<content:encoded><![CDATA[<p>[...] AS3 bitmap mosaic class ???????????????? [...] </p>
]]></content:encoded>
	</item>
</channel>
</rss>

