• User

    Fermare scrolling immagine

    Salve,

    Come far fermare uno scrolling immagine orizzontale per farlo partire solo quando il mouse si muove a destra o sinistra sulla foto?

    Questo AS fa partire l'immagine al caricamento del clip mentre vorrei far partire lo scorrimento solo al movimento del mouse.
    Grazie,

    onClipEvent(load){
    speed = 150;
    Stage.scaleMode = "noScale";
    w = Stage.width;
    boundsStage = _root.bordi.getBounds(_root);
    }
    onClipEvent(enterFrame){
    boundsSlide = this.getBounds(_root);
    xmouse = _level0._xmouse;
    move = -(xmouse-(w/2))/speed;
    if ((boundsSlide.xMax < boundsStage.xMax) && (xmouse > (w/2))){
    move = 0;
    } else if ((boundsSlide.xMin > boundsStage.xMin) && (xmouse < (w/2))) {
    move = 0;
    }
    this._x += move;
    }