buondi'..chiedo gentilmente...il perche'se ho questo script:
function getdistance(x, y, x1, y1) {
var run, rise;
run = x1-x;
rise = y1-y;
return (_root.hyp(run, rise));
}
function hyp(a, b) {
return (Math.sqrt(a*a+b*b));
}
MovieClip.prototype.reset = function() {
// specify the width and height of the movie
width = 1024;
height = 20;
// -------------------
var dist, norm;
this.x = this._x;
this.y = this._y;
this.speed = Math.random()*2+2;
this.targx = Math.random()*width;
this.targy = Math.random()*height;
dist = _root.getdistance(this.x, this.y, this.targx, this.targy);
norm = this.speed/dist;
this.diffx = (this.targx-this.x)*norm;
this.diffy = (this.targy-this.y)*norm;
};
MovieClip.prototype.move = function() {
if (_root.getdistance(this.x, this.y, this.targx, this.targy)>this.speed) {
this.x += this.diffx;
this.y += this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if (getTimer()-this.t>1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
gli oggetti che devo far muover in random mi si muovono in random ma dove vogliono loro e nn nello spazio che gli ho detto io...
io vogluio che mi si muovino in uno spazio con altezza 20 e lunghezza 1024...ma mi si muovono dove vogliono loro...cosa c'e' fda cambiare nello script...nn capisco!
ho gia' cambiato questo parametro....
// specify the width and height of the movie
width = 1024;
height = 20;
ma senza risultati eppure mi era sembrato che fosse questo il parametro da cambiare!!!!
qualcuno saprebbe aiutarmi...
graxie come sempre a tutti.....![]()

Rispondi quotando
nn capisco come faccio a trovare l'asse assoluto x e y....aitateme........aiuto.......
