Re: [Flashcoders] setInterval intervalID type?

2006-04-19 Thread Julian 'Julik' Tarkhanov
On 19-apr-2006, at 18:08, Merrill, Jason wrote: May be a dumb question, but what type of object is the intervalId that gets returned from setInterval()? It's a Number. -- Julian 'Julik' Tarkhanov me at julik.nl ___ Flashcoders@chattyfig.figleaf

RE: [Flashcoders] setInterval intervalID type?

2006-04-19 Thread Merrill, Jason
:flashcoders- >>[EMAIL PROTECTED] On Behalf Of Geoff Stearns >>Sent: Wednesday, April 19, 2006 12:11 PM >>To: Flashcoders mailing list >>Subject: Re: [Flashcoders] setInterval intervalID type? >> >>it returns a number. >> >> >>On Apr 19, 2006, at 12:08

Re: [Flashcoders] setInterval intervalID type?

2006-04-19 Thread Dimitrios Bendilas
It's a Number Regards, Dimitrios Bendilas - Original Message - From: "Merrill, Jason" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, April 19, 2006 7:08 PM Subject: [Flashcoders] setInterval intervalID type? May be a dumb quest

RE: [Flashcoders] setInterval intervalID type?

2006-04-19 Thread Michael Trim
>>what type of object is the intervalId that gets returned from setInterval()? Number ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

Re: [Flashcoders] setInterval intervalID type?

2006-04-19 Thread Geoff Stearns
it returns a number. On Apr 19, 2006, at 12:08 PM, Merrill, Jason wrote: May be a dumb question, but what type of object is the intervalId that gets returned from setInterval()? I thought I could declare it a generic object, but no: var checkId:Object; checkId = setInterval(myFunction, 100);

[Flashcoders] setInterval intervalID type?

2006-04-19 Thread Merrill, Jason
May be a dumb question, but what type of object is the intervalId that gets returned from setInterval()? I thought I could declare it a generic object, but no: var checkId:Object; checkId = setInterval(myFunction, 100); clearInterval(checkId);//The compiler throws a type mismatch error on this