MC buttons

Hi everyone,
I made a couple of buttons that play a small MC (about 20 frames) when I do a rollover and it works great, however I want to click the button and view a different MC (about 20 frames also) and its not happening. If I click the button and hold it down then the MC plays but as soon as I let go of the button it dissapears. Anyway to just click the button once and see the MC play in its entirety?

u4eka

try to change order for button…:slight_smile:

I don´t know how you done that, but I would do like this:

Actios for the button:

on (rollOver){
movieClip1.play;
}
on (press){
movieClip2.play;
}

=)