32 lines
555 B
AutoHotkey
32 lines
555 B
AutoHotkey
#SingleInstance, force
|
|
|
|
Gui, +AlwaysOnTop +ToolWindow
|
|
|
|
Gui, Add, Button, x3 y3 w55 h20 gStart vStart +Center, Start
|
|
Gui, Add, Button, x3 y3 w55 h20 gStop vStop +Center, Stop
|
|
Gui, Show, h28 w60, msmv
|
|
GuiControl, Hide, Stop
|
|
Return
|
|
|
|
Start:
|
|
GuiControl, Hide, Start
|
|
SetTimer, Msmv, 480000
|
|
GuiControl, Show, Stop
|
|
Return
|
|
|
|
Stop:
|
|
GuiControl, Hide, Stop
|
|
SetTimer, Msmv, off
|
|
GuiControl, Show, Start
|
|
Return
|
|
|
|
Msmv:
|
|
MouseMove, 100, 0
|
|
Sleep, 240000
|
|
MouseMove, 0, 0
|
|
Return
|
|
|
|
GuiClose:
|
|
GuiEscape:
|
|
ExitApp ; Closes the app when escape or the exit button is pressed
|