Posts: 102
Threads: 30
Joined: Mar 2018
02-16-2020, 03:22 AM
(This post was last modified: 02-16-2020, 03:29 AM by InterestedNewbie.)
I see the option to send a semi-colon ; in the QM Key Dialog but how do I send a colon : ?
The same goes for minus/hyphen - and plus + ?
Posts: 1,338
Threads: 61
Joined: Jul 2006
int w=win("" "Notepad")
int c=id(15 w) ;;editable text 'Text Editor'
act c
key N+ ;; Num_+
key S: ;; Shift+;
key N- ;; Num_-
Posts: 12,140
Threads: 142
Joined: Dec 2002
It is the same key. To send as text, enclose in "".
key ":-+"
Posts: 102
Threads: 30
Joined: Mar 2018
Thanks both, very useful!