AS2 Play Movie Clip OnMouseUp not working
- by Mr Vardermier
My plan is to play mc_1 on MouseDown and mc_2 on MouseUp. The trouble I am having is that when I release, mc_2 is not playing.
mc_1 plays fine when MouseDown is initiated. Here's my code:
stop();
slide_mc.stop();
slideback_mc.stop();
onMouseDown = function() {
_root.slide_mc.play();
}
onMouseUp = function() {
_root.slideback_mc.play();
}
I am new to AS2, I have tried looking but can't seem to find anything like this...
Many thanks in advance!