Re: [Flashcoders] Textfield optimizes itself in a weird way

2006-08-19 Thread GregoryN
>> It doesn't happen with Flash 8. Nope. I have 8.0.24 player and this problem is here. Haven't tested with FP v.9 (the target player is v.7). -- Best regards, GregoryN http://GOusable.com Flash components development. Usability services

RE: [Flashcoders] Textfield optimizes itself in a weird way

2006-08-19 Thread GregoryN
The only workaround I've found so far is: var myHtmlText:String = "show text text to me"; // my own optimization myHtmlText = myHtmlText.split(" ").join(" "); myTxt.htmlText = myHtmlText; trace(myTxt.htmlText); // now traces: "[textformat, font etc.]show text text to me [/textformat, font etc.]"