RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Kevin Aebig
ggestions guys... Cheers, !k -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

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread eric dolecki
rk. This is weird because a call to newClip.doSomething > () > >works exactly as expected... > > > >Cheers, > > > >Kevin > > > >-Original Message- > >From: [EMAIL PROTECTED] > >[mailto:[EMAIL PROTECTED] On Behalf Of Byron > >Canf

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Kevin Aebig
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jim Sent: February 24, 2006 2:11 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] setInterval inside created Clip Give me more of the code, what exactly are you trying to do? Can you keep all of the crated mc&#x

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread jim
ebig Sent: 24 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 pr

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

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread eric dolecki
ng properly. > > !k > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Ettwein, > Josh > Sent: February 24, 2006 12:29 PM > To: Flashcoders mailing list > Subject: RE: [Flashcoders] setInterval inside created Clip > > How ab

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Kevin Aebig
-Original 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", 2

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Kevin Aebig
2: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 that in there in case you weren't aware of that one. var

RE: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Ettwein, Josh
essage- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 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.doSomethi

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Nick Gerig
L 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
f.com Subject: Re: [Flashcoders] setInterval inside created Clip 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 s

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