Re: running handlers

2006-10-14 Thread Mark Schonewille
Hi Jon, Dar already mentioned the executionContexts. Another useful function is the pendingmessages. The pendingmessges contains a list of handlers waiting to execute after the send command was executed. Best, Mark -- Economy-x-Talk Consultancy and Software Engineering

running handlers

2006-10-13 Thread Jon Seymour
Is there a way to find out the names of all handlers currently running, that is, those that have started but not yet finished? ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: running handlers

2006-10-13 Thread Dar Scott
On Oct 13, 2006, at 7:09 PM, Jon Seymour wrote: Is there a way to find out the names of all handlers currently running, that is, those that have started but not yet finished? There is only one thread in Revolution so all handlers that are currently running are those on the call stack. The

Re: running handlers

2006-10-13 Thread Dar Scott
On Oct 13, 2006, at 7:48 PM, Dar Scott wrote: Item -1 is the line number within the handler, -2 is the name of the handler and item 1 to -3 is the long id of the object the handler is in. Whoops. I mean for each line with the first line being the top and the bottom line being the one