i am trying to dynamically create a text field using the following code…
galleryMenuMc.createEmptyMovieClip(“t”+k, galleryMenuMc.getNextHighestDepth());
target_mc = eval(“galleryMenuMc.t”+k)
target_mc.createTextField(“my_txt”, 1, 0, 0, 350, 22);
target_mc.my_txt.text = “this is my text field text”;
the text field appears to be created at runtime in the debugger and the string “this is my text field text” is assigned to the text property of the text field as well, however, i don’t see any text.
can anybody tell me what i’m doing wrong? i’m going crazy!