Re: [flexcoders] Re: help with setInterval...

2005-04-24 Thread dave buhler
: Re: [flexcoders] Re: help with setInterval... Hi Abdul, I ran into a similar issue. In short, whether my code was not scoped in an MXML file or whether it was within a class, I could not pass over a parameter (a number in my case) and have the function called by the setInterval reference

Re: [flexcoders] Re: help with setInterval...

2005-04-23 Thread michael keirnan
: Re: [flexcoders] Re: help with setInterval... Does not work. On 4/12/05, michael keirnan [EMAIL PROTECTED] wrote: it would be good to go through the Flex UG sections on scoping and event listeners. in the long run understanding scope is invaluable. in your test case the following might

RE: [flexcoders] Re: help with setInterval...

2005-04-22 Thread Abdul Qabiz
Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Saturday, April 23, 2005 12:31 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: help with setInterval... Does not work. On 4/12/05, michael keirnan [EMAIL PROTECTED] wrote: it would be good to go through

Re: [flexcoders] Re: help with setInterval...

2005-04-22 Thread dave buhler
Hi Abdul, I ran into a similar issue. In short, whether my code was not scoped in an MXML file or whether it was within a class, I could not pass over a parameter (a number in my case) and have the function called by the setInterval reference the parameter passed over more than 1x. With

Re: [flexcoders] Re: help with setInterval...

2005-04-22 Thread dave buhler
Does not work. On 4/12/05, michael keirnan [EMAIL PROTECTED] wrote: it would be good to go through the Flex UG sections on scoping and event listeners. in the long run understanding scope is invaluable. in your test case the following might work:

RE: [flexcoders] Re: help with setInterval...

2005-04-22 Thread Abdul Qabiz
=true maximum=1000 minimum=0/ /mx:Application -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Saturday, April 23, 2005 7:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: help with setInterval... Hi Abdul

Re: [flexcoders] Re: help with setInterval...

2005-04-12 Thread michael keirnan
it would be good to go through the Flex UG sections on scoping and event listeners. in the long run understanding scope is invaluable. in your test case the following might work: setInterval(mx.utils.Delegate.create(this, upCount, 1000); /mgk terry_hrtn wrote: Matt...now I'm getting