Making a movie play on a click of a button

Hi I want a feature, that when the user clicks on a button a movie plays, what would i need to put into the actions for that button? Ps I don’t know **** about flash so explain it like I am a baby!

To make a button:

draw a shape on the stage (the big white square, hehe).
With the black arrow tool select the whole shape and press ctrl+F8. Then choose button as your symbol, give it a name like myButton.

Put your movie clip on the stage also. Click on it, and in the property inspector give it an instance name, something like myMovie.

Then click on the button and in the actions panel for that button add the following:

on(release) {
_root.myMovie.play();
}

Regards.
Viru.

Thats great man, but when i run the file the movie automatically plays by itself, how do i make it run only on the click of the button?

Also I want the movie to be invisible until the user has clicked on it how do i go about doing that,sorry for the questions!

Inside your movie clip add a stop action to the 1st frame like this:

Double click your movie clip so that you can edit it. Then in the 1st frame open the actions panel and add this:
stop();

That will stop is from playing.

Now, go back on to your stage, and add the following action script by click on the movieclip instance ONCE:

onClipEvent(load) {
this._visible = false;
}

Then add to the button this:
on(release) {
_root.myMovie._visible = true;
_root.myMovie.play();
}

Regards,
Viru.