Ya he encontrado una solución, bueno yo no... ji ji ji, me han ayudado (pk), que a mi me funciona porque ya se me queda en el centro de todo.
Código PHP:
on (press) {
startDrag(this, true, 770, 40, 940, 560);
}
on (release) {
stopDrag();
_root.createEmptyMovieClip("holder", 100);
_root.holder._x = Stage.width/2;
_root.holder._y = Stage.height/2;
_root.holder.loadMovie("003.gif");
_root.onEnterFrame = function() {
if (_root.holder._width>0) {
delete _root.onEnterFrame;
_root.holder._x -= _root.holder._width/2;
_root.holder._y -= _root.holder._height/2;
}
};
}
Gracias.
De todos modos, si se sabe alguna otra solución también es bien recibida.