// This is a sample key translation table for german keyboards // Blank lines are ignored // Lines starting with double slashes are ignored // Each line represents a single key that can be pressed on the client computer // The first field is the name of the key - this is displayed in the popup menu // // The second field is a decimal number that represens the modifier keys that are // held down to press this key. This is a bitwise field. // // The third field is the decimal number that represents the local key code generated // by Java. // // You can find the modifier and key code values for any key on your keyboard by // running TinyClient with the /C argument. Push the key and Tiny will print the // values to the console. // // The fourth field is a decimal number that represent the actual 2 byte scan code // that is transmitted to the DOS computer keyboard buffer. This can be harder to // figure out. You can try looking for your key in the DOS codepages. // // German keys "ä" 0 228 132 "ü" 0 252 129 "ö" 0 246 148 "Ä" 1 196 142 "Ü" 1 220 154 "Ö" 1 214 153 "ß" 0 223 225 "ä" 0 132 132 "ö" 0 148 148 "ü" 0 129 129 "ß" 0 225 225 "á" 0 160 160 "à" 0 133 133 "â" 0 131 131 "å" 0 134 134 "æ" 0 145 145 "ç" 0 135 135 "é" 0 130 130 "è" 0 138 138 "ê" 0 136 136 "ë" 0 137 137 "í" 0 161 161 "ì" 0 141 141 "î" 0 140 140 "ï" 0 139 139 "ñ" 0 164 164 "ó" 0 162 162 "ò" 0 149 149 "ô" 0 147 147 "ú" 0 163 163 "ù" 0 151 151 "û" 0 150 150 "ÿ" 0 152 152 "\ (ALTGR+ß)" 10 65535 92 "ALT+ß" 8 223 92