This works (Ctrl-Backslash key sends the text in question):
^VKDC::Send("BlahBlah")
This also works (Keys hit sequentially "/q" emits the ASCII char 168 namely upside down question mark ¿
::/q::{Asc 168}
I want the Ctrl-Backslash Key (VK2D) to map to sending the ASCII character 168 that is ¿I have tried all manner of combinations but no luck.Any ideas?10000000000000000000000000000 thank yous!
I have tried this combinations mostly does not compile:
::^VKDC::{Asc 168} ; Ctrl-Blackslash compiles. Does nothing::^VKDC::{Asc 168} ; Ctrl-Blackslash compiles. Does nothing;^VK2D::Send, {Asc 0168};^VK_SCROLL::{Asc 0168};^VK_OEM_5::Send, {ASC 168};^Backslash::Send, {ASC 168};^::\::Send, {ASC 168};::^\::{ASC 168} ; Compiles but nothing comes out;::\::{ASC 168} ; Funny pipe comes but only with a leading backslash;^sc029::Send, {ASC 168};^sc029::Send, {Asc 168};^sc029::{Asc 168};ScrollLock::Send {Asc 168};^ScrollLock::{Asc 0168};^SC02C::Send, {Asc 0168};^SC02C::{Asc 0168}