Okay now i'm getting mad

wtf is flash over complicating things for? or HTML or XML… something is pissing me off

why does this code not work to show multiple images inside a dynamic text field?

txtPortfolio.html = true;
txtPortfolio.wordWrap = true;
txtPortfolio.multiline = true;
txtPortfolio.label.condenseWhite=true;
txtPortfolio.multiline = “true”;
txtPortfolio.scroll = “true”;

txtPortfolio.htmlText = “<img src=‘1.jpg’><br>”
txtPortfolio.htmlText += “<img src=‘2.jpg’><br>”
txtPortfolio.htmlText += “<img src=‘3.jpg’><br>”
txtPortfolio.htmlText += “<img src=‘4.jpg’><br>”
txtPortfolio.htmlText += “<img src=‘5.jpg’><br>”

it shows the first image and no more… WHY??? but yet if i put text in the place
of the 2 - 5 img tags… the text will all show… like this:

txtPortfolio.htmlText= “hello this text works for some reason!<br>”
txtPortfolio.htmlText += “<img src=‘1.jpg’><br>”
txtPortfolio.htmlText += “hello this text works for some reason!”

ugh… okay now i’m really getting frustrated… i just tested my prediction with the text being in place of the 2nd to 5th image… and flash seems to treat the 1.jpg as
if it isn’t even there… and starts putting text above it… that i want to be after it…

i know what is wrong… but why did they make it like this??? i have to count how many lines… and put in <br>'s ??? to have the text appear AFTER the <img> ??? arg!!!