 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
dennis00 Guest
|
Posted: Sat May 17, 2008 6:46 pm Post subject: Turkish keyboard usage |
|
|
Dear AutoHotKey,
I have an international keyboard (The Netherlands).
I wish to use WINDOWS-key + G for: "ğ"
This is a Turkish character. There are 3 characters unsupported by this keyboard. I have no problems using ç, but there are more options in Turkish.
When I save my settings to the txt-file it gives an error, as this character is not included in plain/ASCSI format.
How is this solved? |
|
| Back to top |
|
 |
n-l-i-d Guest
|
Posted: Sat May 17, 2008 10:00 pm Post subject: |
|
|
AutoHotkey does not support Unicode, you could however use: Extended SendU function
HTH |
|
| Back to top |
|
 |
Hasso
Joined: 23 Mar 2005 Posts: 259 Location: Germany
|
Posted: Mon May 19, 2008 8:55 am Post subject: |
|
|
dennis00,
today is your lucky day! Some time ago I had the same problem for a turkish customer and solved it like that: | Code: | ;------------------------------------------------------------------------
; Türkische Sonderzeichen
;------------------------------------------------------------------------
:?*c:G#:: ;G# types a Ğ
Transform, Clipboard, Unicode, Äž
SendInput, ^v
return
:?*c:g#:: ;g# types a ğ
Transform, Clipboard, Unicode, ÄŸ
SendInput, ^v
return
:?*c:c#:: ;c# types a ç
Transform, Clipboard, Unicode, ç
SendInput, ^v
return
:?*c:C#:: ;C# types a Ç
Transform, Clipboard, Unicode, Ç
SendInput, ^v
return
:?*c:s#:: ;s# types a ş
Transform, Clipboard, Unicode, ÅŸ
SendInput, ^v
return
:?*c:S#:: ;S# types a Ş
Transform, Clipboard, Unicode, Åž
SendInput, ^v
return
:?*c:i#:: ;i# types a ı
Transform, Clipboard, Unicode, ı
SendInput, ^v
return
:?*c:I#:: ;I# types a İ
Transform, Clipboard, Unicode, İ
SendInput, ^v
return
| You could change the hotkeys to your requirements. _________________ Hasso
Programmers don't die, they GOSUB without RETURN |
|
| Back to top |
|
 |
mai9
Joined: 18 Mar 2008 Posts: 59 Location: Barcelona, Catalonia
|
Posted: Sat Jun 14, 2008 11:21 pm Post subject: |
|
|
thanks for the idea Hasso
Here's the page that helped me find what two characters write to send different unicode characters. I used that to get my hotstring "l.l" to write the "ŀ" character. Note that I put another "l" on the sendinput because in catalan we always use it followed with another "l". That makes it the perfect hotstring
| Code: | ; converteix "l.l" en una ela geminada (caràcter 320 Unicode)
:?*c:l.l::
Transform, Clipboard, Unicode, ŀ
SendInput, ^vl
return
|
|
|
| Back to top |
|
 |
svdw
Joined: 19 Nov 2009 Posts: 3 Location: Eindhoven, The Netherlands
|
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|