Play instance of movie clip

hi all - -

i have created a movie clip and want it to play when a particular button is released. i also want to be able to control its x & y coordinates. i tried attachMovie but i don’t think that’s the function for what I’m trying to do. any help would be much appreciated, thank you!

myButton.onRealease = function(){
myMc.play();
}

myMc._x = 10;
myMc._y = 20

If you don’t want to just “play” it, and are using it in the form of a button, then define your labels within the movie clip and go to the over state upon the rollover.

movieclip.onRollOver = function () {
gotoAndPlay("_over")
}

Where as “_over” is what you labeled that segment of your clip.

Sorry for the lack of verbosity, half asleep.