我是 AutoHotkey 的新手,正在寻找一些入门帮助。
如果我想编写一个脚本来安排.wmv
每半小时在 WMP 中全屏打开一个文件,我应该从哪里开始?
我知道我需要使用 autohokey 的run
命令。我应该使用 Windows 任务计划程序,还是使用 AutoHotkey 管理计时器会更好?
我是 AutoHotkey 的新手,正在寻找一些入门帮助。
如果我想编写一个脚本来安排.wmv
每半小时在 WMP 中全屏打开一个文件,我应该从哪里开始?
我知道我需要使用 autohokey 的run
命令。我应该使用 Windows 任务计划程序,还是使用 AutoHotkey 管理计时器会更好?
尝试这个:
VideoLengthInSeconds = 60
RunVideoEveryXMinutes = 30
TheVideoFile = C:\MyVideoFile.wmv
Loop
{
Run, wmplayer.exe "%TheVideoFile%" ;run the video in wmp
Sleep, 3000 ;wait 3 seconds
SendInput, {F11} ;send F11 to make it fullscreen
Sleep, % VideoLengthInSeconds*1000 ;wait while video is playing
Send, {alt down}{F4}{alt up} ;close the wmp
Sleep, % RunVideoEveryXMinutes*60*1000 ;wait after the video was played
}
;Use Esc to exit the script
Esc::
ExitApp