la cuestion es q esa imagen tiene un boton y hace hacer click me debe llevar a otra animacion, funciona perfectamente, solo que al irse a esa animacion el movimiento que trae de la panoramica no se detiene. como hago para q se detenga esa funcion?
adjunto el codigo q crea el despalzamiento de la panoramica. GRACIAS
Código ActionScript :
function mover() { barraqueanda(); panoramica_mc.onEnterFrame = function () { if (_xmouse != mitad) { if (_xmouse < mitad && _ymouse < 200) { if (panoramica_mc._x < 0) { inc = Math.abs(_xmouse - mitad) * (acel / 10); panoramica_mc._x = panoramica_mc._x + inc; } return; } inc = Math.abs(_xmouse - mitad) * (acel / 10); if (panoramica_mc._x > -477 && _ymouse < 477) { panoramica_mc._x = panoramica_mc._x - inc; } } } ; } function init() { barraqueanda(); this.onEnterFrame = function () { if (iniciado) { if (panoramica_mc._x > -477) { panoramica_mc._x = panoramica_mc._x - 1.8; } return; } delete (this.onEnterFrame); } ; } function anda(obj, lugar) { obj._x = lugar; } function barraqueanda() { _root.slider.bar.onEnterFrame = function () { this._x = _root.panoramica_mc._x / 5.5 * -1; } ; } anchoPelicula = 500; altoPelicula = 346; acel = 10; iniciado = true; fondo_mc._width = anchoPelicula; fondo_mc._height = altoPelicula; fondo_mc._x = 0; fondo_mc._y = 0; acel = acel / 50; panoramica_mc._y = 0; panoramica2_mc._y = 0; mitad = anchoPelicula / 2; ancho = panoramica_mc._width; panoramica_mc._x = 0; panoramica2_mc._x = 0 - ancho; fondo_mc.onRollOver = function () { iniciado = false; mover(); } ; fondo_mc.onRollOut = function () { } ; init(); maior = _root.panoramica_mc._width; menor = _root.slider._width; desl = maior - Stage.width + 0; var prop = desl / menor;