I have a TextField and I am trying to display embedded images using htmlText:
var test:TextField = new TextField();
test.multiline = true;
test.wordWrap = true;
test.htmlText =
"<b>Texttextext:</b> <br> \
<br> <br> test <img src = '" + "Assets_raftImg" + "'/>sfsf";
In this case the raftImg is in the Assets class. The problem is that the image does not align as it should (it always stays in upper left corner). If I load it using "../blah/img.gif" it works properly.
Any suggestions? Thanks!