Hi. One of my board members works in a platform that, for some reason, enters twice when they hit the Enter key once. So I wanted to make an AHK script to correct that. It seems that hitting Win key + Enter does the same thing as Enter, so I did this:
Enter::Send #{Enter}
But A) - I'm not sure, since Enter is messed up for this person, that this combo won't do the same. I can't really test it properly; works for me but then again, I don't have that problem with the Enter key.
B) I tried doing it another way, like this:
Send {Enter 1}+{Up}+{Delete} ; Press Enter once, then arrow up and delete
Which is a disaster because, if you run it while on your Desktop, for instance, it wants to select icons and ask if you want to delete them. Definite no go there! <grin> Plus it seems to delete itself - the script!
I was just wondering if there were some other sure-fire way to do this so that it works for the person. I am not the brightest bulb in the room when it comes to AHK, and that's a huge understatement.
I hope I put this in the right board section.
Thanks.