; 区分:由纯修饰键组成的组合键,作为子集,和添加了字母和数字的超集
; 来源:https://www.autohotkey.com/boards/viewtopic.php?f=76&t=124804

; A_PriorKey 不能获取Up,A_PriorhotKey 可以获取Up

LControl Up::
  if (A_PriorKey = "LControl")
    MsgBox 单击左Ctrl时触发,组合键不触发
return

LControl & LShift Up::
LShift & LControl Up::
  if (A_PriorKey = "LShift") or (A_PriorKey = "LControl")
    MsgBox 左Ctrl+左Shift时触发,组合键不触发
return

#if GetKeyState("LControl", "P") && GetKeyState("LShift", "P")
RShift & k::
LShift & k::
  MsgBox 左Ctrl+左Shift+k时触发
return
#If

 

声明:站内资源为整理优化好的代码上传分享与学习研究,如果是开源代码基本都会标明出处,方便大家扩展学习路径。请不要恶意搬运,破坏站长辛苦整理维护的劳动成果。本站为爱好者分享站点,所有内容不作为商业行为。如若本站上传内容侵犯了原著者的合法权益,请联系我们进行删除下架。