So basically, I need a script that will type in alt codes for me from the keypad.
Would it be possible to make a script that will type in ALT+0174 (which makes the ® symbol) with an autoit script? The keypad keys need to be used. I figured out how to use ! in a Send command to emulate the press of alt, but it only lets me do one key after it and not multiple. which is what I need to type in alt codes. This is what I have so far although I know it's wrong:
Sleep ("3000")
Send("!0")
Send("!1")
Send("!7")
Send("!4")
Any help would be appreciated!
Would it be possible to make a script that will type in ALT+0174 (which makes the ® symbol) with an autoit script? The keypad keys need to be used. I figured out how to use ! in a Send command to emulate the press of alt, but it only lets me do one key after it and not multiple. which is what I need to type in alt codes. This is what I have so far although I know it's wrong:
Sleep ("3000")
Send("!0")
Send("!1")
Send("!7")
Send("!4")
Any help would be appreciated!