Here's the solution I'm using.
It's rather simple, it catches any character with accent,
as well as any delete action by end users.
the variable theString always contains the latest content
of the field.
The following handlers should be put in the field's script :


on openfield
  send "check_fld" to me in 0.1 seconds
end openfield

on check_fld
  global theString
  put fld "Myfld" into theString
  if (the long id of me) = (the focusedobject) then
    send "check_fld" to me in 0.1 seconds
  end if
end check_fld

Hope that helps

JB

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

Reply via email to