TeCe
Erfahrenes Mitglied
TextFiled::bin ich bekloppt?
Also...meine Wenigkeit hat sich in den Kopf gesetzt ein dynamisches Textfeld zu erstellen...soweit so gut...php spuckt schön fein die Variable für das Textfeld aus...es wird angezeigt...blabla...alles fein.
Aaaaber:
- Das Textfeld nimmt keine Umlaute an(wahrscheinlich weil´s den textFormat.font = "wingdings oder irgendwas anderes" nich schluckt).
- Das Textfeld nimmt keinen Font an(hab ich glaub ich bereits schon erwähnt)
- Das Textfeld nimmt keinne alpha-Wert an(wahrscheinlich weil textFormat.font,wie glaub ich bereits schon erwähnt, nich schluckt).
Frage:
Wie weise ich dem Textfeld einen Font zu(und wie embedde/verlinke ich ihn)?
Also...meine Wenigkeit hat sich in den Kopf gesetzt ein dynamisches Textfeld zu erstellen...soweit so gut...php spuckt schön fein die Variable für das Textfeld aus...es wird angezeigt...blabla...alles fein.
Aaaaber:
- Das Textfeld nimmt keine Umlaute an(wahrscheinlich weil´s den textFormat.font = "wingdings oder irgendwas anderes" nich schluckt).
- Das Textfeld nimmt keinen Font an(hab ich glaub ich bereits schon erwähnt)
- Das Textfeld nimmt keinne alpha-Wert an(wahrscheinlich weil textFormat.font,wie glaub ich bereits schon erwähnt, nich schluckt).
Frage:
Wie weise ich dem Textfeld einen Font zu(und wie embedde/verlinke ich ihn)?
PHP:
//FRAME 1
//this.loadVariables("http://mywebserver/text.php");
//FRAME 3
if (status == "gesendet") { //testVariable - wird von PHP gesendet
this.createTextField("aboutText",3,50,Stage.height,600,5);
aboutText.multiline = true;
aboutText.wordWrap = true;
aboutText.border = false;
aboutText.autosize = true;
aboutFormat = new TextFormat();
aboutFormat.color = 0xffffff;
aboutFormat.bold = true;
aboutFormat.size = 16;
aboutFormat.font = "wingdings";
aboutText.htmlText = about; //die geladene Variable
aboutText.selectable = false;
aboutText.setTextFormat(aboutFormat);
status = "";
stop();
} else {
gotoAndPlay(2);
}