$i = 0
Global $Paused
HotKeySet("`", "TogglePause")
HotKeySet("{DEL}", "Terminate")
Sleep (2000)
While $i <= 2
Send ("{RIGHT down NUMPAD4 down}")
Sleep (500)
$i = $i + 1
WEnd
Func TogglePause( )
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate( )
Exit 0
EndFunc
not sure if this is right does not seem to work? need to simulate holding both keys down at same time forever.