Marginally modified version here:
I have changed it to seconds (rather than minutes) and added an input field for the filename to Open, which saves having to edit the file.
It is worth grabbing
NinoTech Path Copy for use with this (worth having anyway). It is a shell extension that can copy the filename, pathname, folderpath to the clipboard (in both long and short forms).
;2005-11-02
;Start .exe file in x minutes
;http://www.autohotkey.com/forum/viewtopic.php?p=36314#36314
^q::
#Persistent
InputBox, FilenameToLoad, Enter filename to Open here
InputBox, Laufzeit, Enter Delay to start program (in seconds):
Laufzeit := Laufzeit * 1000
Zeit = %A_TickCount%
Settimer, Anzeiger, 250
Settimer, Start_Program, %Laufzeit%
return
Anzeiger:
till_start_minutes := (laufzeit - A_TickCount + zeit)/60000
till_start_minutes := Floor(till_start_minutes)
till_start_seconds := (laufzeit - A_TickCount + zeit)/1000 - (till_start_minutes * 60)
till_start_seconds := Floor(till_start_seconds)
CoordMode, ToolTip, Screen
ToolTip, time until .exe starts: %till_start_minutes%:%till_start_seconds%,80,1010
return
start_Program:
settimer, Anzeiger, off
ToolTip
run, %FilenameToLoad%
settimer, Start_Program, off
return
;Start .exe file in x minutes
;http://www.autohotkey.com/forum/viewtopic.php?p=36314#36314