双按.ahk 470 B

123456789101112131415161718192021222324252627
  1. ; @Author : liuyuqi
  2. ; @Contact : liuyuqi.gov@msn.cn
  3. ; @Time : 2020/03/13 17:06:40
  4. ; @Version : 1.0
  5. ; @License : (C)Copyright 2019 liuyuqi.
  6. ; @Desc : 双按Home熄屏
  7. ~Home::
  8. If(Home_Press>0){
  9. Home_Press+=1
  10. Return
  11. }
  12. Home_Press=1
  13. SetTimer,KeyHome,300
  14. Return
  15. KeyHome:
  16. SetTimer,KeyHome,Off
  17. If(Home_Press=2){
  18. Sleep 1000
  19. SendMessage, 0x112,0xF170,2,,Program Manager
  20. }
  21. Home_Press=0
  22. Return