#cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.14.5 Author: myName Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here #include Dim $Start HotKeySet("{F8}","Pause") HotKeySet("{F1}","Start") While 1 Sleep(50) WEnd Func Start() $Start = NOT $Start If $Start Then ToolTip('Press (F8) to Pause',0,0) $start = TimerInit() While $Start If TimerDiff($start) > 100000 Then Send("{ENTER}") Sleep(50) Send("^v") Sleep(50) Send("{ENTER}") $start = TimerInit() EndIf WEnd ToolTip("") EndFunc Func Pause() ToolTip('Press (F1) to Start',0,0) While 1 Sleep(50) WEnd EndFunc