this.createEmptyMovieClip("laser", 1);
this.laser.lineStyle(0,0x000000,100);
this.laser.moveTo(cursore._x, cursore._y);
this.onEnterFrame = function(){
if(this._currentframe < this._totalframes+1)this.laser.lineTo(cursore._x, cursore._y);
};
posso far in modo che il mio filmato con la scintilla si sovrapponga al filmato "laser" vuoto?