lets jsut say like were randomly moving a moveclip around how do i click on it and stop it?
Care to give some more information ? About the random moving script, perhaps ;)
its jsut a the random movement script of this site with the lil witches hats but yeah ive got the script on my main timeline and on the movieclip the call function and yeah so when i click on it i jsut want the moveclip to stop movement
Delete all the codes from your movieclips, give them the instance names cone1, cone2, … cone15 for example. Then place this underneath all your code in the timeline:
for(i=1;i<=15;i++){
this["cone"+i].onEnterFrame = move
this["cone"+i].onRelease = function(){
delete this.onEnterFrame
}
}
Untested, but should work.