a ver tu quieres una accion para que con un boton haga play()
con otro que reproduzca hacia hacia atras
y sino esta sobre ninguno se detenga ese clip de pelicula?
puedes hacer asi
accion para el boton que hace play() al movieclip
Código:
on (rollOver) {
clip_mc.onEnterFrame = function() {
if (clip_mc._currentframe<clip_mc._totalframes) {
clip_mc.nextFrame();
} else {
delete (clip_mc.onEnterFrame);
}
};
}
on (rollOut) {
clip_mc.stop();
delete (clip_mc.onEnterFrame);
}
accion que reproduce hacia atras al movieclip
Código:
on (rollOver) {
clip_mc.onEnterFrame = function() {
if (clip_mc._currentframe>1) {
clip_mc.prevFrame();
} else {
delete (clip_mc.onEnterFrame);
}
};
}
on (rollOut) {
clip_mc.stop();
delete (clip_mc.onEnterFrame);
}
cualquier duda o sino te funciona avisa
sldos