AutoHotkey Community

It is currently May 27th, 2012, 3:39 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 13 posts ] 
Author Message
PostPosted: August 17th, 2005, 3:38 pm 
I search a Tool witch switch the NUMPAD-"." to a NUMPAD-","


i need this is in german calc-sheets (openoffice) and at ebay.de for faster writing numbers with the NUMPAD in german-number style ( 23,44 EUR ).


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 17th, 2005, 3:40 pm 
I think AutoHotKey can do this. but only for this problem i think AHK is oversized and i look for a small tool with only this function.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 18th, 2005, 10:13 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
You can permanently remap keys via the registry in Windows 2000/XP. I think the following would transform NumpadDot into the comma key. But since I haven't tested it, be sure to back up the current value of "Scancode Map" from your registry beforehand. Also, after making the change I believe a reboot is required.
Quote:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]

"Scancode Map"=hex:00,00,00,00,00,00,00,00,\
; --------------------------------------------------------------------------------------------------------------
; BE SURE TO UPDATE THE COUNT BELOW TO REFLECT THE TOTAL NUMBER OF REMAPS + 1 (1 extra for the null terminator):
; --------------------------------------------------------------------------------------------------------------
02,00,00,00,\
; 01. Comma sent for NumpadDot:
33,00,53,00,\
; 02. Null Terminator (required) (be sure to change the count at the top to reflect this number)
00,00,00,00


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 24th, 2005, 6:16 pm 
This might help:
http://www.autohotkey.com/forum/viewtopic.php?t=4636


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 24th, 2005, 7:04 pm 
Offline

Joined: September 7th, 2004, 9:20 pm
Posts: 275
Location: France
Try remapping the numpad dot :
Code:
NumpadDot::Send, `,

Or for something witch is app specific :
Code:
NumpadDot::
   IfWinActive, Openoffice
      {
      Send, `,   ; you must escape the comma
      }
   Else
      {
      Send, .
      }
   return

* Not tested but should work.
Hope it helps

Edit : Don't hesitate. Multiple specific problem solver apps can be worse to use than a powerfull (but simple to programm and use for basic needs) multi automation purpose application like AutoHotkey. You'll can discover by using it how to do many things witch can simplify your computer life.
Take the time to read the topics of the forums and the help file to discover how great time saving AHK can be.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 25th, 2005, 9:49 am 
Offline

Joined: July 12th, 2005, 1:21 pm
Posts: 633
@Chris
I am reading and reading your post, but I do not find exactly what you mean..
How can I backup the current value of Scancode Map?
I do not find it in Regeditor!

What you have postet is a *.reg-file, am I right?

Would be really nice if you could give me an exact description how to remap one key in another permanent!

Thx,
Thalon


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 25th, 2005, 1:02 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The "Scancode Map" entry might not currently exist, in which case it is fairly safe to save the file I posted above as a .reg file and then run it. After that, reboot the system and Comma should now be sent every time you press NumpadDot.

If for any reason you don't like the result, you can undo it by deleting the "Scancode Map" item from the registry and then rebooting again.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: try this...
PostPosted: November 3rd, 2005, 9:19 am 
ftp://ftp.heise.de/pub/ct/listings/9905-272.zip


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: November 3rd, 2005, 10:14 am 
Offline

Joined: October 21st, 2005, 12:02 am
Posts: 56
Location: Germany
Hi Mischa,

if you don't want to use an AutoHotkey-script, even if compiled (and therefore without the need to have AutoHotkey installed after compiling), then maybe this program does the trick for you:

http://www.microsoft.com/globaldev/tools/msklc.mspx

Quote:
The Microsoft Keyboard Layout Creator (MSKLC) extends the international functionality of Windows 2000, Windows XP and Windows Server 2003 systems by allowing users to:
• Create new keyboard layouts from scratch
• Base a new layout on an existing one
• Modify an existing keyboard layout and build a new layout from it
• Multilingual input locales within edit control fields.
• Package the resulting keyboard layouts for subsequent delivery and installation.


Create your own keyboard layout based on the german one. but with a period on the numpad.

But if you decide to use AutoHotkey, then maybe this is useful for you:

Code:
; enter two commas to get a period
:*z?:,,::.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 3rd, 2005, 3:27 pm 
Offline

Joined: March 4th, 2005, 1:42 pm
Posts: 39
Location: Netherlands
Laudrin wrote:
...then maybe this program does the trick for you:
http://www.microsoft.com/globaldev/tools/msklc.mspx

Quote:
This download is available to customers running genuine Microsoft Windows. Please click the Continue button to begin Windows validation.

*** SIGH *** :? Micro$oft :cry: :evil:

_________________
The Gods smile upon you. Beware - it is probably because they know what is going to happen to you next, and find it amusing. To them, anyway. --- Discworld Horrorscope: http://www.weirdnes.force9.co.uk/stars3.html


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 3rd, 2005, 3:36 pm 
Offline

Joined: October 21st, 2005, 12:02 am
Posts: 56
Location: Germany
http://www.majorgeeks.com/download.php?det=4236 :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 3rd, 2005, 5:18 pm 
Offline

Joined: March 4th, 2005, 1:42 pm
Posts: 39
Location: Netherlands
Laudrin wrote:

Thanks! :D
This makes downloading MSKLC a lot faster (not to mention more possible)! :mrgreen:

_________________
The Gods smile upon you. Beware - it is probably because they know what is going to happen to you next, and find it amusing. To them, anyway. --- Discworld Horrorscope: http://www.weirdnes.force9.co.uk/stars3.html


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 3rd, 2005, 5:56 pm 
Offline

Joined: October 21st, 2005, 12:02 am
Posts: 56
Location: Germany
You're welcome, peejay. :)


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

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 6 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