#cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.2.0 Author: jon@diercks.net Script Function: Paste a series of one-line actions into Tudumo #ce ---------------------------------------------------------------------------- if not ProcessExists("Tudumo.exe") then msgbox(48,"paste-tudumo","First start Tudumo and focus the appropriate Heading.") Exit EndIf $file=FileOpen(FileOpenDialog("Select File to paste into Tudumo","","Text files (*.txt)"),0) if $file=-1 then exit While 1 $line = FileReadLine($file) If @error = -1 Then ExitLoop WinActivate("Tudumo","statusStrip1") WinWaitActive("Tudumo","statusStrip1") send("^n") send($line) send("{ENTER}") Wend FileClose($file)