Hi, I have many MCs on the stage ,I just dont want to paste the same code to all MCs one by one…so I want to use the following loop but not sure where to paste the following code…could anyone help ?
thanks
myArray=new Array("mc1","mc2","mc3","mc4","mc5","mc6","mc7","mc8","mc9","mc10")
for(i=0; i<=myArray.length; i++){
myArray*.onPress=function(){
this.startDrag();
}
myArray*.onRelease=function(){
this.stopDrag();
}
}