123456789101112131415161718192021222324252627 |
- ; @Author : liuyuqi
- ; @Contact : liuyuqi.gov@msn.cn
- ; @Time : 2020/03/13 17:06:40
- ; @Version : 1.0
- ; @License : (C)Copyright 2019 liuyuqi.
- ; @Desc : 双按Home熄屏
- ~Home::
- If(Home_Press>0){
- Home_Press+=1
- Return
- }
- Home_Press=1
- SetTimer,KeyHome,300
- Return
- KeyHome:
- SetTimer,KeyHome,Off
- If(Home_Press=2){
- Sleep 1000
- SendMessage, 0x112,0xF170,2,,Program Manager
- }
- Home_Press=0
- Return
|