Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CoordMode, ToolTip, Screen ; Отображение ToolTip'a относительно рабочего стола.
- sw = 0
- F1::
- if (sw = 0)
- {
- ToolTip, Script ON ,50, 100
- SetTimer, RemoveToolTip, -2000
- sw = 1
- }
- else
- {
- ToolTip, Script OFF ,50, 100
- SetTimer, RemoveToolTip, -2000
- sw = 0
- }
- return
- ~LButton::
- if (sw = 1)
- {
- Send {sc25 down}
- Sleep 1
- Send {sc25 up}
- }
- Return
- ~MButton::
- if (sw = 1)
- {
- Send {sc25 down}
- Sleep 1
- Send {sc25 up}
- }
- Return
- F2:: ExitApp
- -------------------------------------
- RemoveToolTip: ;Удаление подсказки
- ToolTip
- return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement