Re: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Janis Radins
That code is so retard, get moving away from flash 4 syntax, it's 2006 out there! Try this: line._y += 4; line.duplicateMovieClip(tope+t, t); t++; if(line._y 75) { stop(); } And frame loops are bad fasion btw. Use SomeMovieClip.onEnterFrame or setInterval() for timed loop. One more thing is

Re: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Ricardo M. Portilho
27, 2006 6:10 AM Subject: Re: [Flashcoders] Flash8: Duplicate Movie problem That code is so retard, get moving away from flash 4 syntax, it's 2006 out there! Try this: line._y += 4; line.duplicateMovieClip(tope+t, t); t++; if(line._y 75) { stop(); } And frame loops are bad fasion btw. Use

RE: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Mike Mountain
Whichever way you want to do it, in flash 8 you need to instantiate t Try adding: var t= line.getNextHighestDepth(); To the begging of this line._y += 4; line.duplicateMovieClip(tope+t, t); if(line._y 75) { stop(); } Or: var t=0; To the beginning of the original Cheers M -Original

RE: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Mike Mountain
Sorry var t= this.getNextHighestDepth(); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 27 November 2006 15:15 To: Flashcoders mailing list Subject: RE: [Flashcoders] Flash8: Duplicate Movie problem Whichever way you

Re: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Ricardo M. Portilho
, November 27, 2006 12:20 PM Subject: RE: [Flashcoders] Flash8: Duplicate Movie problem Sorry var t= this.getNextHighestDepth(); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 27 November 2006 15:15 To: Flashcoders mailing list