Hi all,
I have an MC-Menuitems and I would like that I load this MC 5 times and write a 5 different text in it- for 5 menu links and save it under 5 diferent mc_names. The main idea ist after the text ist loaded I should use this menu items in another script, where all these menus mc are rotating (this works So I need them only in the library-5 mc with names let’s say: name1,name2,name3 etc. and text1,text2 etc. respectively inside the MC. The problem is that the code under makes this only for 1 MC…I tried with For loop -but the MC are overlapping…
I am not sure if I should load the text with CreateTextField or smth else…? I already tried with XML data, but there I managed just to load the text auf the stage, not inside the MC
Here is my code
_root.attachMovie(“menuitems”,“menuitems_t”,3);
_root.menuitems_t._x= -150;
_root.menuitems_t._y= 150;
_root.menuitems_t.menutitle.createTextField (“title”, 4, 0, 0, 40, 20);
_root.menuitems_t.menutitle.title.autoSize = true;
_root.menuitems_t.menutitle.title.text = “TestTest”;
trace (_root.menuitems_t.menutitle.title.text);
_root.menuitems_t.menutitle.title.border = true;
greetings and thanks a lot in advance(-:
Merenra