Hi I have copied code to make my intro text spiral in. However when i move to the next frame it is still there. Can anyone help me to get rid of it?
The code is.
Movie clip (called letter) ( instance name Letter0)
with this code attached
onClipEvent(load) {
startx = Math.random()*550;
starty = -Math.random()100;
this._x = startx;
this._y = starty;
n = 0;
}
Coding in frame is as follows
text = “Family Fortunes!”;
for (i=0;i<text.length;i++) {
if (i > 0) duplicateMovieClip(“Letter0”,“letter”+i,i);
this[“letter”+i].letterText = text.charAt(i);
this[“letter”+i].endx = this[“Letter0”]._x + i19;
this[“letter”+i].endy = this[“Letter0”]._y;
}
stop();
stockdill