RE: [Flashcoders] hello, and interval management question

2006-10-18 Thread Karina Steffens
I've got a class here that manages intervals as well. It can be used to create intervals that fire off once (after a delay), continuously or a specified number of times. The events can then be applied to the parent object or another target object. Cheers, Karina /** * Delay class - executes

RE: [Flashcoders] hello, and interval management question

2006-10-17 Thread Steven Sacks | BLITZ
Check out Kenny Bunch's interval manager class. http://www.kennybunch.com/index.php?p=16 Might help. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] hello, and interval management question

2006-10-17 Thread Giles Bowkett
cheers! On 10/17/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: Check out Kenny Bunch's interval manager class. http://www.kennybunch.com/index.php?p=16 Might help. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

[Flashcoders] hello, and interval management question

2006-10-16 Thread Øyvind Nordhagen
Hello, Giles! It strikes me that what you have planned is somewhat inefficient. Am I right in suspecting that you need the intervals to keep checking for conditions and the running code accordingly? If so, have you explored the AsBroadcaster. I'm not sure I understand the purpose of your

Re: [Flashcoders] hello, and interval management question

2006-10-15 Thread Janis Radins
yes you can pass that interval ID you can do something like this: var intContainer:Object = new Object(); intContainer.interval = setInterval(someFun, 50, intContainer); in this case intContainer will be to first argument of that functon and you'll be able to refference it anytime as

Re: [Flashcoders] hello, and interval management question

2006-10-15 Thread Andrei Thomaz
hello Gilles, if you are doing an artwork, please, don't miss Processing ( www.processing.org). Maybe it can be useful, if you don't need to deploy a web app that works with Flash Player. []'s andrei On 10/15/06, Janis Radins [EMAIL PROTECTED] wrote: yes you can pass that interval ID you

Re: [Flashcoders] hello, and interval management question

2006-10-15 Thread Giles Bowkett
I've played with Processing but it totally doesn't fit this situation unfortunately. On 10/15/06, Andrei Thomaz [EMAIL PROTECTED] wrote: hello Gilles, if you are doing an artwork, please, don't miss Processing ( www.processing.org). Maybe it can be useful, if you don't need to deploy a web app

[Flashcoders] hello, and interval management question

2006-10-14 Thread Giles Bowkett
Hi, I'm mainly a coder, with some experience on the arts side as well. I've got a site where I need to be able to set and clear a bunch of intervals dynamically. It's a visualization application which involves node-link graphs with a potentially large number of nodes, and in which you can