I would suggest trying it without passing the rawKeyDown message if you have already handled it i.e. if RAWK = 0

Cheers,
Sarah


Sent from my iPhone

On 21/09/2009, at 11:17 PM, Richmond Mathewson <[email protected] > wrote:

'Tis michty queer:

This works:

on mouseUp
set the useUnicode to true
set the unicodeText of fld "BLURB" to the unicodeText of fld "BLURB" & numToChar(2000)
select after fld "BLURB"
end mouseUp

this appends the unicode char 2000 to my textField

BUT this doesn't:

on rawKeyDown RAWK
 set the useUnicode to true
    if RAWK = 0 then
      set the useUnicode to true
set the unicodeText of fld "BLURB" to the unicodeText of fld "BLURB" & numToChar(2000)
      select after fld "BLURB"
   end if
   pass rawKeyDown
end rawKeyDown

this appends the ascii equivalent (i.e. rem 2000)

a richt scunner!

Any helpful suggestions welcomed with open arms . . .  :)

sincerely, Richmond.
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to