ho un movie che viene mosso a seconda del movimento del mouse...
solo che se mi metto in basso a sx, quando l'immagine arriva alla fine mi scrolla verso dx oltre la sua area... xke?!?!?

questo è il link per vedere il problema:
TEST

e questo è il codice:
onClipEvent(load){
speed = 50; Stage.scaleMode = "noScale";
w = Stage.width;
k = Stage.height;
boundsStage = _root.bordi.getBounds(_root); ***bordi è una clip grande quanto lo stage***
}
onClipEvent(enterFrame){
boundsSlide = this.getBounds(_root);
_xmouse = _level0._xmouse;
_ymouse = _level0._ymouse;
xmove = -(_xmouse-(w/2))/speed;
ymove = -(_ymouse-(k/2))/speed;
if ((boundsSlide.xMax < boundsStage.xMax) && (_xmouse > (w/2))){
xmove = 0;}
if((boundsSlide.yMax < boundsStage.yMax) && (_ymouse > (k/2))){
ymove = 0;
} else if ((boundsSlide.xMin > boundsStage.xMin) && (_xmouse < (w/2))){
xmove = 0;}
if ((boundsSlide.yMin > boundsStage.yMin) && (_ymouse < (k/2))){
ymove = 0;
}
this._x += xmove;
this._y += ymove;
}
------------------------------------------
quale puo' essere il problema?!?!

tnx!!