htmlText Funktioniert nicht richtig Hi Leute,
ich bin auf ein sehr Interessantes Problem gestoßen. Ich definiere einen String ink. HTML tags und hau das Ganze dann in ein Textfeld mit htmlText trotzdem bekomm ich dann ein Textfeld mit allen tags drin und keinem link Oo
ActionScript:1 2 3 4 5 6 7 8 | text[counter] = "<a href='"+_level0.hostUrl + config["uid"+counter] +"' target='_blank'>"+config["title" + counter]+"</a>";
this.navLayer[counter].setText(text[counter]);
//Dann auf dem Button
function setText(text){
this.textMc.text.htmlText = text;
}
|
|