<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Image smoothing in Flex</title>
	<link>http://www.craftymind.com/2008/03/10/image-smoothing-in-flex/</link>
	<description>Hacking away at UI development</description>
	<pubDate>Fri, 21 Nov 2008 17:31:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Chetan Sachdev</title>
		<link>http://www.craftymind.com/2008/03/10/image-smoothing-in-flex/#comment-2521</link>
		<dc:creator>Chetan Sachdev</dc:creator>
		<pubDate>Sat, 02 Aug 2008 17:52:28 +0000</pubDate>
		<guid>http://www.craftymind.com/2008/03/10/image-smoothing-in-flex/#comment-2521</guid>
		<description>Very nice example..

Thanks</description>
		<content:encoded><![CDATA[<p>Very nice example..</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lance</title>
		<link>http://www.craftymind.com/2008/03/10/image-smoothing-in-flex/#comment-949</link>
		<dc:creator>Lance</dc:creator>
		<pubDate>Fri, 13 Jun 2008 19:27:37 +0000</pubDate>
		<guid>http://www.craftymind.com/2008/03/10/image-smoothing-in-flex/#comment-949</guid>
		<description>How would this work with an image that is being defined in the CSS file? 

This is great BTW -- something I as a designer first, seriously need to bring my artwork into flex!

Thanks</description>
		<content:encoded><![CDATA[<p>How would this work with an image that is being defined in the CSS file? </p>
<p>This is great BTW &#8212; something I as a designer first, seriously need to bring my artwork into flex!</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fedlarm</title>
		<link>http://www.craftymind.com/2008/03/10/image-smoothing-in-flex/#comment-350</link>
		<dc:creator>Fedlarm</dc:creator>
		<pubDate>Fri, 09 May 2008 13:09:03 +0000</pubDate>
		<guid>http://www.craftymind.com/2008/03/10/image-smoothing-in-flex/#comment-350</guid>
		<description>very cool:)

Here is it as a class:

package ipaper.framework
{
	import mx.controls.Image;
	import flash.display.Bitmap;
	
	public class SmoothImage extends Image
	{
		override protected function updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void
		{
			super.updateDisplayList(unscaledWidth, unscaledHeight);
			if(content is Bitmap)
			{
				var bmp:Bitmap = Bitmap(content);
				if(bmp &#38;&#38; bmp.smoothing == false)
					bmp.smoothing = true;
			}
		}
	}
}</description>
		<content:encoded><![CDATA[<p>very cool:)</p>
<p>Here is it as a class:</p>
<p>package ipaper.framework<br />
{<br />
	import mx.controls.Image;<br />
	import flash.display.Bitmap;</p>
<p>	public class SmoothImage extends Image<br />
	{<br />
		override protected function updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void<br />
		{<br />
			super.updateDisplayList(unscaledWidth, unscaledHeight);<br />
			if(content is Bitmap)<br />
			{<br />
				var bmp:Bitmap = Bitmap(content);<br />
				if(bmp &amp;&amp; bmp.smoothing == false)<br />
					bmp.smoothing = true;<br />
			}<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
