Re: Run a handler each time a handler/function within current script is run?

2015-02-12 Thread Geoff Canyon
On Wed, Feb 11, 2015 at 11:55 PM, Lyn Teyla lyn.te...@gmail.com wrote: I'm looking for a proper/non-clumsy way of implementing the following: At first blush I'd do exactly what you're doing: insert a call to the must be called every time handler in every other handler.

Run a handler each time a handler/function within current script is run?

2015-02-11 Thread Lyn Teyla
Hi all, How does one automatically run a handler each time a handler/function within the current script is run? I'm looking for a proper/non-clumsy way of implementing the following: private command doSomeStuff -- stuff that must be done each time _any_ -- handler

Re: Run a handler each time a handler/function within current script is run?

2015-02-11 Thread Richard Gaskin
Lyn Teyla wrote: How does one automatically run a handler each time a handler/function within the current script is run? If you turn on the messageMessages global property, all handler activity can be monitored in a frontScript with a messageHandled handler. This is global, however. I