How about this: (untested code)

-- set the font of (fld "convertToHTML" ) to the target field's font

put "  Ä Å Ç É Ñ Ö Ü á à â ä ã å ç é è ê ë í ì î ï ñ ó ò ô ö õ ú ù û ü † ° ¢ £ § • ¶ ß ® © ™ ´ ¨  Æ Ø  ±   ¥ µ      ª º  æ ø ¿ ¡ ¬  ƒ   « » …   À Ã Õ Œ œ – — “ ” ‘ ’ ÷  ÿ Ÿ  ¤ ‹ ›   ‡ · ‚ „ ‰ Â Ê Á Ë È Í Î Ï Ì Ó Ô € Ò Ú Û Ù  ˆ ˜ ¯  Ž  ¸   ž " into checkKeySet

-- these checkKeySet vars can be made on the fly prier to use.

on keyDown theKey
  put theKey into fld "convertToHTML"
  put the htmlText of fld "convertToHTML" into goodBadKey
  if checkKeySet contains goodBadKey then
    pass keyDown
  else
   -- or here if you want those checkKeySet keys to be stopped
  end if
end keyDown

Mark

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

Reply via email to