Ci ho pensato un po' su...
ecco un'idea (ma non so se si possa adattare al tuo filmato non conoscendo come hai sviluppato il resto)
sul pulsante (in questo caso zoom-in):
codice:
on (rollOver) {
if (!_root.zoom_in) {
// è appena stato attivato lo zoom-in
_root.zoom_in = true;
_root.coordX = _root.museo._x;
_root.coordy = _root.museo._y;
}
}
on (rollOut) {
_root.zoom_in = false;
}
associato al movieclip:
codice:
onClipEvent (enterFrame) {
if (_root.zoom_in) {
this._xscale +=2;
this._yscale +=2;
this._x = _root.coordx;
this._y = _root.coordy;
}
}
che ne dici? provalo!