I would like to ask how to create a keyboard for ansi fonts with phonetic
for example in unicode i used
+ 'a' > u+565
but how to do it in ansi cz verry hard to find a way to deal with quated text view
is there any code for ansi ??
Topic how to create a ansi phonetic key board
We have two new locations for Keyman technical support:
- SIL Keyman Community - for general Keyman technical support
 - Stack Overflow - for support on creating keyboard layouts with Keyman Developer
 
The Tavultesoft Forums are now read only.
| # how to create a ansi phonetic key board 2006-08-08 20:24:06.130 | |
|---|---|
| Gayan | |
| # RE: how to create a ansi phonetic key board 2006-08-09 09:51:08.667 | |
| Marc Durdin Tavultesoft Staff  | You can use character values in four different ways, for either ANSI or Unicode (although U+xxxx is strictly speaking only really for Unicode):
 + 'a' > d192 c decimal value 192 = 0xC0 + 'b' > xC3 c hexadecimal value 0xC3 = 195 + 'c' > 306 c octal value 306 = 198 + 'd' > U+00C9 c hexadecimal value 0xC9 = 201 We recommend either (a) or (b) above for non-Unicode values (octal is only supported for legacy reasons!)  | 
| # RE: how to create a ansi phonetic key board 2006-08-09 11:08:54.437 | |
| Gayan | Thank you marc 
 I'll try it forum you again  |