Hello, I would like to know how to give an action to a Movie Clip Button.
Right now the movieclip is an instance named “button_mc”, and I wrote this code in the main timeline.
stop();
this.button_mc.onRollOver = function() {
button_mc.gotoAndPlay("_over");
};
this.button_mc.onRollOut = function() {
button_mc.gotoAndPlay("_out");
};
This script is only for onrollover and rollout events.
It works, but I don’t know what script to add (and where) for the “button” to react to the tipical “on(release)” action.
If someone can help me, would be greaaaat!!