<?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: Dual Image Flow Example</title>
	<atom:link href="http://guyinthechair.com/2010/08/dual-image-flow-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://guyinthechair.com/2010/08/dual-image-flow-example/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dual-image-flow-example</link>
	<description>//the blog of Paul Taylor</description>
	<lastBuildDate>Tue, 24 Apr 2012 02:07:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Paul Taylor</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-1162</link>
		<dc:creator>Paul Taylor</dc:creator>
		<pubDate>Wed, 03 Nov 2010 22:11:04 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-1162</guid>
		<description>Thanks Stephen, I&#039;ve fixed this particular issue. Honestly, it was a hack to get around some limitations in the layouts. Since then I&#039;ve seriously advanced the layout algorithms and there&#039;s no need for this workaround.</description>
		<content:encoded><![CDATA[<p>Thanks Stephen, I&#8217;ve fixed this particular issue. Honestly, it was a hack to get around some limitations in the layouts. Since then I&#8217;ve seriously advanced the layout algorithms and there&#8217;s no need for this workaround.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-1093</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Sat, 16 Oct 2010 05:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-1093</guid>
		<description>This library rocks by the way.  Great effort.

Here&#039;s a bug fix:

In HTMLImageAdapter in the ImageLoader onComplete() handler get rid of the padding measurements when creating the BitmapData.  If you keep the padding there it will draw a white gap next to the image where the padding should be.  It&#039;s not noticeable on your site since it uses a white background anyway.  But with other color backgrounds it is apparent.

Change:
var bmd:BitmapData = new BitmapData(lp.width + lp.paddingRight + lp.paddingLeft - 10, lp.height + lp.paddingTop + lp.paddingBottom);

To:
var bmd:BitmapData = new BitmapData(lp.width, lp.height);</description>
		<content:encoded><![CDATA[<p>This library rocks by the way.  Great effort.</p>
<p>Here&#8217;s a bug fix:</p>
<p>In HTMLImageAdapter in the ImageLoader onComplete() handler get rid of the padding measurements when creating the BitmapData.  If you keep the padding there it will draw a white gap next to the image where the padding should be.  It&#8217;s not noticeable on your site since it uses a white background anyway.  But with other color backgrounds it is apparent.</p>
<p>Change:<br />
var bmd:BitmapData = new BitmapData(lp.width + lp.paddingRight + lp.paddingLeft &#8211; 10, lp.height + lp.paddingTop + lp.paddingBottom);</p>
<p>To:<br />
var bmd:BitmapData = new BitmapData(lp.width, lp.height);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Taylor</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-1074</link>
		<dc:creator>Paul Taylor</dc:creator>
		<pubDate>Sun, 10 Oct 2010 08:09:37 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-1074</guid>
		<description>Alan,
Unfortunately in the cases you&#039;ve highlighted, the TLMRs aren&#039;t mirroring the mouseOut event to the event mirrors. I&#039;m working on a solution to manually take over the mirroring task. I&#039;m also working on a few new line rendering algorithms, and I&#039;m exploring the possibility of blitting the lines to a Bitmap, to cut down on the load of lots of lines on the display list.

Thanks, P.</description>
		<content:encoded><![CDATA[<p>Alan,<br />
Unfortunately in the cases you&#8217;ve highlighted, the TLMRs aren&#8217;t mirroring the mouseOut event to the event mirrors. I&#8217;m working on a solution to manually take over the mirroring task. I&#8217;m also working on a few new line rendering algorithms, and I&#8217;m exploring the possibility of blitting the lines to a Bitmap, to cut down on the load of lots of lines on the display list.</p>
<p>Thanks, P.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Stearns</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-1067</link>
		<dc:creator>Alan Stearns</dc:creator>
		<pubDate>Wed, 06 Oct 2010 22:22:24 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-1067</guid>
		<description>Roberto - once I manually created a &quot;report&quot; directory I was able to use the ant build to make the swcs.

Paul - I notice that some of the link states in the example above have different mouseout behaviors depending on which way you leave the link - up, down, left and right. It looks like if the mouse moves from a link to an adjacent line the mouseout may not be handled.</description>
		<content:encoded><![CDATA[<p>Roberto &#8211; once I manually created a &#8220;report&#8221; directory I was able to use the ant build to make the swcs.</p>
<p>Paul &#8211; I notice that some of the link states in the example above have different mouseout behaviors depending on which way you leave the link &#8211; up, down, left and right. It looks like if the mouse moves from a link to an adjacent line the mouseout may not be handled.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jadd</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-1043</link>
		<dc:creator>jadd</dc:creator>
		<pubDate>Sun, 26 Sep 2010 09:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-1043</guid>
		<description>Hi Paul, again
I&#039;m fighitin with your ant build file! I guess is not updated!
True? or what I&#039;m missing?
roberto.</description>
		<content:encoded><![CDATA[<p>Hi Paul, again<br />
I&#8217;m fighitin with your ant build file! I guess is not updated!<br />
True? or what I&#8217;m missing?<br />
roberto.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jadd</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-1040</link>
		<dc:creator>jadd</dc:creator>
		<pubDate>Sat, 25 Sep 2010 17:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-1040</guid>
		<description>hello Paul,
I&#039;m sorry about my question but ... I can&#039;t figure out how to make an SWC of your library. Can you point me in the right direction? Or provide in the download (easier!) an SWC?.
Thanks a lot.
Roberto.</description>
		<content:encoded><![CDATA[<p>hello Paul,<br />
I&#8217;m sorry about my question but &#8230; I can&#8217;t figure out how to make an SWC of your library. Can you point me in the right direction? Or provide in the download (easier!) an SWC?.<br />
Thanks a lot.<br />
Roberto.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enrique</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-1035</link>
		<dc:creator>Enrique</dc:creator>
		<pubDate>Sat, 25 Sep 2010 02:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-1035</guid>
		<description>Hi Paul!
When I select the text and right click it, the common FLash context menu appears, there isn&#039;t any &quot;copy&quot; option, is possible to add that? also, is possible to copy or save the images too?</description>
		<content:encoded><![CDATA[<p>Hi Paul!<br />
When I select the text and right click it, the common FLash context menu appears, there isn&#8217;t any &#8220;copy&#8221; option, is possible to add that? also, is possible to copy or save the images too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Taylor</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-747</link>
		<dc:creator>Paul Taylor</dc:creator>
		<pubDate>Fri, 03 Sep 2010 01:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-747</guid>
		<description>Ha oh man I&#039;m working on this exact feature right now. This will actually be the topic of my next example post. There are a few things I&#039;m working on that I need before I can efficiently resize the TextContainers.</description>
		<content:encoded><![CDATA[<p>Ha oh man I&#8217;m working on this exact feature right now. This will actually be the topic of my next example post. There are a few things I&#8217;m working on that I need before I can efficiently resize the TextContainers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://guyinthechair.com/2010/08/dual-image-flow-example/comment-page-1/#comment-739</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 02 Sep 2010 14:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://guyinthechair.com/?p=566#comment-739</guid>
		<description>Great!!

I&#039;ve been playing around a little bit now, trying to build a resizeable UIComponent around it and implement measure() and updateDisplayList(), and that&#039;s what I&#039;ve come across:
- when I set the width, the height always remains 0.
- getBoundingBox().width and height are o.k., but there update asynchronously, when you render the TextField. It would be nice if there would be an event to listen after the TextField is rendered.
- I don&#039;t seem to be able to change the width once after style and text have been set - although it&#039;s rendered again, there&#039;s no change in the appearance and in the boundingBox.width/height either. Is this supposed behaviour?

Looking forward to your next postings!

- David</description>
		<content:encoded><![CDATA[<p>Great!!</p>
<p>I&#8217;ve been playing around a little bit now, trying to build a resizeable UIComponent around it and implement measure() and updateDisplayList(), and that&#8217;s what I&#8217;ve come across:<br />
- when I set the width, the height always remains 0.<br />
- getBoundingBox().width and height are o.k., but there update asynchronously, when you render the TextField. It would be nice if there would be an event to listen after the TextField is rendered.<br />
- I don&#8217;t seem to be able to change the width once after style and text have been set &#8211; although it&#8217;s rendered again, there&#8217;s no change in the appearance and in the boundingBox.width/height either. Is this supposed behaviour?</p>
<p>Looking forward to your next postings!</p>
<p>- David</p>
]]></content:encoded>
	</item>
</channel>
</rss>

