[Flashcoders] setInterval inside created Clip

2006-02-24 Thread Kevin Aebig
Hey All, I'm looping through a structure adding movieclips along the way for each element. I need to setup a separate interval inside each new clip. If I call the function directly, I need this to be constantly updating without an onEnterFrame. _root.work.createEmptyMovieClip( newName,

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Byron Canfield
newClip.intervalid = setInterval(newClip.doSomething, 200); -- Byron Barn Canfield Hey All, I'm looping through a structure adding movieclips along the way for each element. I need to setup a separate interval inside each new clip. If I call the function directly, I need this to be

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Nick Gerig
] On Behalf Of Byron Canfield Sent: February 24, 2006 11:01 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] setInterval inside created Clip newClip.intervalid = setInterval(newClip.doSomething, 200); ___ Flashcoders

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Ettwein, Josh
] On Behalf Of Kevin Aebig Sent: Friday, February 24, 2006 9:27 AM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] setInterval inside created Clip Nope... didn't work. This is weird because a call to newClip.doSomething() works exactly as expected... Cheers, Kevin -Original Message

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Kevin Aebig
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Gerig Sent: February 24, 2006 12:10 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] setInterval inside created Clip maybe: newClip.intervalid = setInterval(newClip,doSomething, 200); Kevin Aebig wrote

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread eric dolecki
] On Behalf Of Ettwein, Josh Sent: February 24, 2006 12:29 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] setInterval inside created Clip How about... Note I added some dummy values to vars to get it to work in my environment. The last param is optional, but I figured I'd throw

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread jim
Try mx.utils.Delegate might be the scope. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Aebig Sent: 24 February 2006 19:59 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] setInterval inside created Clip I gave it a try

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread jim
February 2006 20:00 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] setInterval inside created Clip Nope... still won't go. I actually decided to do a little test and when I set the function to be onEnterFrame instead of doSomething, it performs well. The only problem is that I'm unsure how

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread eric dolecki
] [mailto:[EMAIL PROTECTED] On Behalf Of Byron Canfield Sent: February 24, 2006 11:01 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] setInterval inside created Clip newClip.intervalid = setInterval(newClip.doSomething, 200

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Kevin Aebig
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of eric dolecki Sent: February 24, 2006 2:04 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] setInterval inside created Clip var vItemCount:Number = 2; var newName = test; this.createEmptyMovieClip(work, 1