duplicate movie clip problem
I can't believe as simple as it may sound I needed help!
on stage:
#1 button1
#2 clipT ( this is what I want to copy)
#3 mc ( target mc that i want copy clipT to)
stop();
button1.onRelease = function () {
duplicateMovieClip (clipT, "clipT2", 0);
mc.attachMovie(clipT2);
}
it doesn't do anything, if I use mc.loadMovie(clipT2), it gives me error cannot find **/**/***/***/level0.clipT2
whats going on?
