AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Turkish keyboard usage

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
dennis00
Guest





PostPosted: Sat May 17, 2008 6:46 pm    Post subject: Turkish keyboard usage Reply with quote

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





PostPosted: Sat May 17, 2008 10:00 pm    Post subject: Reply with quote

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

PostPosted: Mon May 19, 2008 8:55 am    Post subject: Reply with quote

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
View user's profile Send private message
mai9



Joined: 18 Mar 2008
Posts: 59
Location: Barcelona, Catalonia

PostPosted: Sat Jun 14, 2008 11:21 pm    Post subject: Reply with quote

thanks for the idea Hasso Smile

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 Mr. Green

Code:
; converteix "l.l" en una ela geminada (caràcter 320 Unicode)
:?*c:l.l::
Transform, Clipboard, Unicode, ŀ
SendInput, ^vl
return
Back to top
View user's profile Send private message
svdw



Joined: 19 Nov 2009
Posts: 3
Location: Eindhoven, The Netherlands

PostPosted: Mon Nov 23, 2009 12:33 pm    Post subject: Reply with quote

Here's a script, for this purpose, that I compiled from several posts after checking a number of different solutions:

http://www.autohotkey.com/forum/topic51324.html
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group