I'm using Autohotkey 1.0.48.5 .
I can use the following code to simulate a right click by Ctrl+0 , tried an worked fine.
^0::
SendInput {Click,Right}
return
However, I hope I can use Ctrl+ScrollLock to do the same, but the following code does not work.
^ScrollLock::
SendInput {Click,Right}
return
Can someone help me out. thank you.