<?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: Mangled Kerning in Flash HTML Text</title>
	<atom:link href="http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/feed/" rel="self" type="application/rss+xml" />
	<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/</link>
	<description>Navigating the treacherous waters of interactive technology</description>
	<lastBuildDate>Wed,  4 Aug 2010 08:56:23 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: drewb2b</title>
		<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/comment-page-1/#comment-137</link>
		<dc:creator>drewb2b</dc:creator>
		<pubDate>Thu, 11 Jun 2009 13:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://karoshiethos.com/?p=30#comment-137</guid>
		<description>Son... of... a...


That did it!


You would not believe how much this problem has been plaguing me over the last 2 weeks.  I just could not find a solution no matter where I looked.


However big or small... thank you, thank you, thank you.
</description>
		<content:encoded><![CDATA[<p>Son&#8230; of&#8230; a&#8230;</p>
<p>That did it!</p>
<p>You would not believe how much this problem has been plaguing me over the last 2 weeks.  I just could not find a solution no matter where I looked.</p>
<p>However big or small&#8230; thank you, thank you, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Og2t</title>
		<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/comment-page-1/#comment-134</link>
		<dc:creator>Og2t</dc:creator>
		<pubDate>Tue, 09 Jun 2009 15:43:24 +0000</pubDate>
		<guid isPermaLink="false">http://karoshiethos.com/?p=30#comment-134</guid>
		<description>I&#039;ve got a very simple fix to this problem, go to http://play.blog2t.net/fixing-jumpy-htmltext-links and download the linkes .zip file with FixedTextField class. Then replace your example code in the first frame to this:


&lt;pre&gt;
import flash.text.*
import net.blog2t.text.*;

a.autoSize = TextFieldAutoSize.LEFT
b.autoSize = TextFieldAutoSize.LEFT
c.autoSize = TextFieldAutoSize.LEFT
d.autoSize = TextFieldAutoSize.LEFT


var ac:FixedTextField = new FixedTextField(a);
var bc:FixedTextField = new FixedTextField(b);
var cc:FixedTextField = new FixedTextField(c);
var dc:FixedTextField = new FixedTextField(d);


addChild(ac);
addChild(bc);
addChild(cc);
addChild(dc);


var styles = new StyleSheet();
styles.setStyle(&quot;p&quot;, {kerning: false, letterSpacing: 0, color: &#039;#CCCCCC&#039;})
styles.setStyle(&quot;a&quot;, {textDecoration: &#039;underline&#039;, kerning: false, letterSpacing: 0, color: &#039;#FFFFFF&#039;} );
ac.styleSheet = styles 
bc.styleSheet = styles 


ac.htmlText = bc.htmlText = cc.htmlText = dc.htmlText = &quot;&lt;p&gt;This top line is necessary to push the content down because that matters somehow in this simple example of &lt;a href=\&quot;http://google.com\&quot;&gt;Quirky&lt;/a&gt; text in Flash.&lt;/p&gt;&quot;
&lt;/pre&gt;


Voila! :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got a very simple fix to this problem, go to <a href="http://play.blog2t.net/fixing-jumpy-htmltext-links" rel="nofollow">http://play.blog2t.net/fixing-jumpy-htmltext-links</a> and download the linkes .zip file with FixedTextField class. Then replace your example code in the first frame to this:</p>
<p>&lt;pre&gt;<br />
import flash.text.*<br />
import net.blog2t.text.*;</p>
<p>a.autoSize = TextFieldAutoSize.LEFT<br />
b.autoSize = TextFieldAutoSize.LEFT<br />
c.autoSize = TextFieldAutoSize.LEFT<br />
d.autoSize = TextFieldAutoSize.LEFT</p>
<p>var ac:FixedTextField = new FixedTextField(a);<br />
var bc:FixedTextField = new FixedTextField(b);<br />
var cc:FixedTextField = new FixedTextField(c);<br />
var dc:FixedTextField = new FixedTextField(d);</p>
<p>addChild(ac);<br />
addChild(bc);<br />
addChild(cc);<br />
addChild(dc);</p>
<p>var styles = new StyleSheet();<br />
styles.setStyle(&#8220;p&#8221;, {kerning: false, letterSpacing: 0, color: &#8216;#CCCCCC&#8217;})<br />
styles.setStyle(&#8220;a&#8221;, {textDecoration: &#8216;underline&#8217;, kerning: false, letterSpacing: 0, color: &#8216;#FFFFFF&#8217;} );<br />
ac.styleSheet = styles<br />
bc.styleSheet = styles </p>
<p>ac.htmlText = bc.htmlText = cc.htmlText = dc.htmlText = &#8220;&lt;p&gt;This top line is necessary to push the content down because that matters somehow in this simple example of &lt;a href=\&#8221;http://google.com\&#8221;&gt;Quirky&lt;/a&gt; text in Flash.&lt;/p&gt;&#8221;<br />
&lt;/pre&gt;</p>
<p>Voila! <img src='http://karoshiethos.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wagster</title>
		<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/comment-page-1/#comment-120</link>
		<dc:creator>wagster</dc:creator>
		<pubDate>Wed, 27 May 2009 13:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://karoshiethos.com/?p=30#comment-120</guid>
		<description>I had dancing text when I rolled over links - only by a pixel or so but still horrible to look at.  I fixed it by changing TextFieldAutoSize.LEFT to TextFieldAutoSize.CENTRE.  It was a fixed width field that expanded downwards so it made no difference functionally, but I shouldn&#039;t have had to...</description>
		<content:encoded><![CDATA[<p>I had dancing text when I rolled over links &#8211; only by a pixel or so but still horrible to look at.  I fixed it by changing TextFieldAutoSize.LEFT to TextFieldAutoSize.CENTRE.  It was a fixed width field that expanded downwards so it made no difference functionally, but I shouldn&#8217;t have had to&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lauritz</title>
		<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/comment-page-1/#comment-97</link>
		<dc:creator>lauritz</dc:creator>
		<pubDate>Wed, 18 Mar 2009 10:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://karoshiethos.com/?p=30#comment-97</guid>
		<description>thanks for this great post! i had exactly the same problem with jumpig text links. unfortunately the error issn&#039;t corrected in flash 10.</description>
		<content:encoded><![CDATA[<p>thanks for this great post! i had exactly the same problem with jumpig text links. unfortunately the error issn&#8217;t corrected in flash 10.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mauricio giraldo</title>
		<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/comment-page-1/#comment-51</link>
		<dc:creator>mauricio giraldo</dc:creator>
		<pubDate>Wed, 03 Dec 2008 01:02:05 +0000</pubDate>
		<guid isPermaLink="false">http://karoshiethos.com/?p=30#comment-51</guid>
		<description>dude... thanks! darn issue! too bad anti-alias for animation isn&#039;t as crisp</description>
		<content:encoded><![CDATA[<p>dude&#8230; thanks! darn issue! too bad anti-alias for animation isn&#8217;t as crisp</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karoshi Ethos &#187; Mangled Kerning Revisited—Now with Workaround!</title>
		<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/comment-page-1/#comment-8</link>
		<dc:creator>Karoshi Ethos &#187; Mangled Kerning Revisited—Now with Workaround!</dc:creator>
		<pubDate>Thu, 14 Aug 2008 19:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://karoshiethos.com/?p=30#comment-8</guid>
		<description>[...] the original Mangled Kerning [...]</description>
		<content:encoded><![CDATA[<p>[...] the original Mangled Kerning [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [#FP-520] Mangled Kerning in HTML textfields - Adobe Bug System</title>
		<link>http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/comment-page-1/#comment-7</link>
		<dc:creator>[#FP-520] Mangled Kerning in HTML textfields - Adobe Bug System</dc:creator>
		<pubDate>Wed, 06 Aug 2008 11:07:36 +0000</pubDate>
		<guid isPermaLink="false">http://karoshiethos.com/?p=30#comment-7</guid>
		<description>&lt;!--%kramer-ref-pre%--&gt;[...] change, and sometimes the new layout is also incorrect.   More info, screenshot, sample FLA/SWF:  http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/     Show &#187;   Note: broken in both v9 and v10 beta 2 Steps to reproduce: 1. Multiline HTML [...]&lt;!--%kramer-ref-post%--&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://dev.wp-plugins.org/wiki/Kramer"><img src="http://karoshiethos.com/wp-content/plugins/kramer.php?kramer=gif-icon" class="technorati-balloon" alt="Kramer auto Pingback" style="border:0;" /></a>[...] change, and sometimes the new layout is also incorrect.   More info, screenshot, sample FLA/SWF:  <a href="http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/" rel="nofollow">http://karoshiethos.com/2008/07/26/mangled-kerning-in-flash-html-text/</a>     Show &raquo;   Note: broken in both v9 and v10 beta 2 Steps to reproduce: 1. Multiline HTML [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
