Mmh, il movimento non è preciso quanto quello dell'esempio, ma ecco cosa ho ottenuto usando le caurina.
Codice PHP:
bg.onPress = function () {
this.prevX = this._xmouse;
this.prevY = this._ymouse;
this.onEnterFrame = function () {
caurina.transitions.Tweener.addTween(this, {_x:this._xmouse-this.prevX+this._x, _y:this._ymouse-this.prevY+this._y, time:0.5, transition:"easeoutcirc"});
}
}
bg.onRelease = bg.onReleaseOutside = function () {
this.onEnterFrame = undefined;
}
Ovviamente bg è il nome di istanza del clip che si sposta.