Watchdog
- Posted by Irv Mullins <irv at ELLIJAY.COM> Nov 02, 1998
- 800 views
If you are trying to track down a pesky bug, or want to observe changes in something like mouse coordinates in real time (without using the trace) - here's how: type watch (object x) position(1,1) -- or wherever puts(1," ") -- clear a space for new text position(1,1) ? x end type Now, just change your variable declaration from, for example, atom z to watch z or from object mousecoords to watch mousecoords Voila! You now have a real-time watchdog. Irv

