Well, I'm using "libURLSetLogField" to handle the messages. I did manage to
setup a idle handler that works pretty well, but I really do hate using idle
messages.


Use send in time instead of idle e.g.

on checkField
  -- see if your field has changed
  -- do stuff if it has
  send "checkField" to me in 5 ticks  -- or whatever interval suits
end checkField

This is much better than idle as it doesn't hog the processor.

Cheers,
Sarah

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to