Forum de discussion
Forum « Flash et Shockwave » (archives)
Re: Probleme tout bête de trait progressif
Envoyé: 14 mai 2004, 18h34 par ashmallum
Merci pour ta réponse détaillée Oznog ! et pour avoir pris le temps de considérer mon problème.
Juste un petit détail ceci dit :) le copier-coller de ton code ne marchait pas. Alors j'ai un peu tripatouillé et j'ai sorti cette chose :
this.createEmptyMovieClip("ligne",1);
with (this.ligne)
{
var x1 = 50;
var x2 = 500;
var y1 = 100;
var y2 = 200;
lineStyle(3,0x000000,100);
moveTo(this.x1, this.y1);
onEnterFrame = function()
{
this.x1 = this.x1+10;
this.y1 = this.y1+10;
lineTo(this.x1, this.y1);
if (this.x1>this.x2 || this.y1>this.y2) delete this.onEnterFrame;
}
}
Ah oui au fait détail étrange... Si j'initialise une variable speed et que je remplace le this.x1+10 par this.x1+speed l'animation ne fonctionne plus ! >_o ??
Réponses
|