Autohotkey script - Combining two keypresses into one -
i have question regarding combining 2 key presses
alt , `
into 1 key press
`
i have tried fiddle around , search similar examples none have worked me unfortunately!
i want have script hold down alt key (ralt preferably) , press
`
once (backtick character - located on same key tilde). triggers menu in game used accessible pressing ` 1 time.
i've tried following code segment doesn't work.
`:: keywait ralt send, {`} return
any , appreciated! thanks.
this should simple mapping keys this:
`::!`
if use ralt specifically:
`::send {ralt down}{``}{ralt up}
Comments
Post a Comment