AutoHotkey Community

It is currently May 26th, 2012, 8:02 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 5 posts ] 
Author Message
 Post subject: Turkish keyboard usage
PostPosted: May 17th, 2008, 6:46 pm 
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?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 17th, 2008, 10:00 pm 
AutoHotkey does not support Unicode, you could however use: Extended SendU function

HTH


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 19th, 2008, 8:55 am 
Offline

Joined: March 23rd, 2005, 7:53 am
Posts: 321
Location: Germany
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 14th, 2008, 11:21 pm 
Offline

Joined: March 18th, 2008, 12:31 am
Posts: 63
Location: Barcelona, Catalonia
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 :mrgreen:

Code:
; converteix "l.l" en una ela geminada (caràcter 320 Unicode)
:?*c:l.l::
Transform, Clipboard, Unicode, ŀ
SendInput, ^vl
return


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 23rd, 2009, 12:33 pm 
Offline

Joined: November 19th, 2009, 8:39 am
Posts: 3
Location: Eindhoven, The Netherlands
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], poserpro, sjc1000, Tilter_of_Windmills, Yahoo [Bot] and 56 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group