Hi,
I am having trouble loading dynamic text with html content specifically
<br>. If i have the rendered as html option checked the bold property of the font i initially set goes away and instead of making new line the <br> is replaced with br (no brackets). am i doing something wrong?
heres the code:
also the text has multiline option selected.
I am having trouble loading dynamic text with html content specifically
<br>. If i have the rendered as html option checked the bold property of the font i initially set goes away and instead of making new line the <br> is replaced with br (no brackets). am i doing something wrong?
heres the code:
Code:
popinfo = _root.txt_tour.show_mc.show_txt;
showPop1_btn.onRollOver= function(){
popinfo.text = "Featuring Sarah Bettens, Christine Baze and Jesse Ciarmataro. <br> 630 N. High Street - 10pm - $12-$15<br> call: 614.930.2260 for tickets";
showinfo();
};
showPop1_btn.onRollOut = function(){
show_mc._visible = false;
};
Comment