muchas gracias por la aclaración.. se agradece
al final me resulto algo asi:
acceleration = 10
newpos = function () {
ranx = Math.round((Math.random ()*400));
rany = Math.round ((Math.random ()*1100));
}
newpos();
this.onEnterFrame = function() {
this._x += ((ranx-this._x)/acceleration);
this._y += ((rany-this._y)/acceleration);
if (Math.round(this._x) == ranx || Math.round(this._y) == rany) {
newpos();
}
};
pero me gustaria conseguir un destello..como lo harias??
gracias, un saludo