Hello. I find strange bug in Scaleform TextArea with links.
I'm adding htmlText:
It converts in TextArea to:
It's ok. Link is clicking, text is text.
But if I click at link and add some new line:
Then text converts in TextArea to:
It's wrong, Scaleform adds additional <a href...> tags to normal text!
Anybody know how I can fix it?
Added attach with simple test: LinkBug.zip (in this exaple two textFields: standart flash textField and CLICK textArea - both have a bug)
Thanks a lot!
I'm adding htmlText:
Code:
<span class='default'>Text <a href='asfunction:_root.fromA, LINK#Text0'>[Link]</a>: line0</span>
Code:
<TEXTFORMAT INDENT="0" LEFTMARGIN="0" RIGHTMARGIN="0" LEADING="2"> <P ALIGN="LEFT"> <FONT FACE="Arial" SIZE="14" COLOR="#000000" KERNING="0">Text </FONT> <FONT FACE="Arial" SIZE="14" COLOR="#000000" KERNING="0"><A HREF="asfunction:_root.fromA, LINK#Text0">[Link]</A></FONT> <FONT FACE="Arial" SIZE="14" COLOR="#000000" KERNING="0">: line0</FONT> </P> </TEXTFORMAT>
But if I click at link and add some new line:
Code:
<span class='default'>Text <a href='asfunction:_root.fromA, LINK#Text0'>[Link]</a>: line0</span> <span class='default'>Text <a href='asfunction:_root.fromA, LINK#Text1'>[Link]</a>: line1</span>
Code:
<TEXTFORMAT INDENT="0" LEFTMARGIN="0" RIGHTMARGIN="0" LEADING="2"> <P ALIGN="LEFT"> <FONT FACE="Arial" SIZE="14" COLOR="#000000" KERNING="0"><A HREF="asfunction:_root.fromA, LINK#Text0">Text [Link]: line0</A></FONT> </P> </TEXTFORMAT> <TEXTFORMAT INDENT="0" LEFTMARGIN="0" RIGHTMARGIN="0" LEADING="2"> <P ALIGN="LEFT"> <FONT FACE="Arial" SIZE="14" COLOR="#000000" KERNING="0"><A HREF="asfunction:_root.fromA, LINK#Text0">Text </A></FONT> <FONT FACE="Arial" SIZE="14" COLOR="#000000" KERNING="0"><A HREF="asfunction:_root.fromA, LINK#Text1">[Link]</A></FONT> <FONT FACE="Arial" SIZE="14" COLOR="#000000" KERNING="0"><A HREF="asfunction:_root.fromA, LINK#Text0">: line1</A></FONT> </P> </TEXTFORMAT>
Anybody know how I can fix it?
Added attach with simple test: LinkBug.zip (in this exaple two textFields: standart flash textField and CLICK textArea - both have a bug)
Thanks a lot!
Comment