autohotkey enter macro

Category: Sample Data-Articles
Published on Saturday, 01 January 2011 00:00
Written by mucnik
Hits: 1102

The games often requests the user to "Press Enter Key to Continue". Unfortunately, as I have an acer aspire 7530 laptop, my "Enter" key is inexpliccably mapped to "NumPad Enter", a problem I can't seem to remedy easily. Games doesn't recognize my Enter key, and therefore gets hopelessly stuck.

To fix it use a small script with autohotkey. http://www.autohotkey.com/

 

loop
{
Enter::NumpadEnter
NumpadEnter::Enter
}

Share