I know the standard way of using autohotkey to create standard ASCII characters. For example, both ^!5::Send, {ASC 0176} and ... will produce the degrees...
... ...except that it turns out it doesn't work. Same rseult. Even when entered in a text box in Firefox, the character appears in the google search box. I'll...
I haven't tried it... but what about using the chr function to load your character on to the clipboard, then paste that in? jack It's not the despair - I can...
I ended up using the clipboard to solve the problem: ^!5:: clipboard=° send, ^v return works just fine. Thanks for the help. The ideas I received sent me on...
Just make sure that you backup and restore the current clipboard contents: ^!5:: clipboardBak := clipboard clipboard = ° Send, ^v clipboard := clipboardBak ...