Array nicht durch Komma getrennt...?? Hallo Leute Hab folgendes Script geschrieben...
nun wollte ich fragen wie ich die einzelnen ArrayPunkte ohne Komma trennen kann...?
ActionScript:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | format = new TextFormat()
format.font = "Arial";
format.size = 10;
format.color = 0xFFFFFF;
format.letterSpacing = 2;
myArray = new Array()
myArray[0] = "Home";
myArray[1] = "Bauleistungen";
myArray[2] = "Referenzen";
myArray[3] = "...";
this.createTextField("menu", 0, 50, 50, 400, 15);
menu.setNewTextFormat(format);
menu.text = (myArray);
|
Danke schonmal zum voraus...
Wo ein Wille ist, ist auch ein Weg!!! |