Can someone let me know the solution to this?
I have a combobox in a movieclip attached dynamically. It works well for the first time but when attached in the same movieclip once again... it does not show the selected item of the combobox.... here is simple code for the same
I have tried removeMovieClip as well but it does not work. If I use onEnterFrame to ensure that the movieclip has been removed or not .. it works but for some scenarios and also makes execution slow. Any suggestions?
var objMain = this;
objMain.a_mc.attachMovie("notesNewNotesControls_mc", "new1", 1);
objMain.a_mc.attachMovie("notesNewNotesControls_mc", "new2", 2);
if you make two MC with the same name, the later with replace the first, of course? You need diffrent names for different instances (like different depths for them)