Forum Moderators: open
I have a htmltext that displays html tags, but not images. It displays in the following example "a b". (bold a)
The image is non-progressive, and in the same directory. I have tried locally and on the server. If you guys can offer any advice I would be most appreciative. thanks in advance
It loads it from the file with the following script
script
----------------------------------------------
DynText = new LoadVars();
DynText.load("host.html");
DynText.onLoad = function (success){
if (success){
hosts.html = true;
hosts.htmlText = DynText.host
trace(hosts.htmlText);
}else{
trace ("not loaded");
}
}
----------------------------------------------
hosts.html
----------------------------------------------
host=<b>a</b><IMG SRC="picture.jpg">b
----------------------------------------------
trace
----------------------------------------------
<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="14" COLOR="#172B84"><B>a</B><FONT SIZE="2"><IMG SRC="picture.jpg"> <FONT SIZE="14">b</FONT></FONT></FONT></P></TEXTFORMAT>