Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Cannot Reproduce
-
Adobe Flex SDK 3.5 (Release)
-
None
-
None
-
Affected OS(s): Windows
Affected OS(s): Windows XP
Language Found: English
Description
Steps to reproduce:
var text:String = "MERCI",
letter:int=0,
l:int = text.length;
for (var i:int=0; i < l; i++)
{
var span: SpanElement = new SpanElement();
span.text = text[i];
textFactory.createTextLines( function( line:TextLine ):void
);
}
Actual Results:
--> trace on WIN :
M
M
E
R
C
I
Expected Results:
--> trace on OSX :
M
E
R
C
I