Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Bad accent causes problem

From: SunandaDH:aol at: 13-Oct-2003 5:58

Carlos:
> Do you think REBOL uses it own keyboard character maps? Is there any > hack to be made? I can't enter words Portuguese words in text fields such
as
> "coração" (heart) or "pé " (foot) they are echoed as coraç~ao and p'e :(
Like Ingo, I can't help you on this. You can see all the characters that REBOL supports on your system by running this View script: ===== rebol [] hex-lo: copy [across banner "ASCII Chart" return box 25x25 red "\"] hex-chars: "0123456789ABCDEF" for n 1 16 1 [ append hex-lo [box 25x25 green] append hex-lo form hex-chars/:n ] append hex-lo 'return for hn 0 15 1 [ append hex-lo [box 25x25 green] append hex-lo form pick hex-chars (hn + 1) for ln 0 15 1 [append hex-lo [box 25x25 blue] append hex-lo form (to-char 16 * hn + ln) ] append hex-lo 'return ] unview/all view layout hex-lo ===== But I don't know any way of hacking the keyboard scheme (if there is such a thing) to input extended characters, Sorry! Sunanda.