Hey!
Can anyone help me? Having some trouble here, but I guess it’s just a simple problem. However, I want to create some instances of a movieclip thats in my library.
for (var i = 0; i<3; i++) {
this.attachMovie(“klump”, “k”+i, i, {_x:100+i*100, _y:100});
}
This code works. Then I want to startDrag all of them, in the same loop. How to?
I’vre tried “k”+i.startDrag(this) but that won’t work. Any other good guesses?
Thanks in advance