我想创建一个" VLC屏幕保护程序"脚本:
当用户/系统空闲一段时间后,VLC应该启动并播放指定文件夹中的视频。我可以启动脚本,并在设定的时间后由它执行VLC。现在我退出它" Esc"和VLC关闭。
关闭后,AHK托盘可见,但VLC /脚本在设定的时间后没有重新开始......
错误在哪里?提前谢谢!
#Persistent
SetTimer, Check, 1000
return
Check:
If (A_TimeIdle>=10000)
{
run C:\Program Files\VideoLAN\VLC\vlc.exe --repeat --fullscreen "D:\video"
SetTimer, Check, Off
}
return
#IfWinActive ahk_exe vlc.exe
Escape::Send !{F4}
#IfWinActive
return

答案 0 :(得分:0)
自己动手:
#IfWinActive ahk_exe vlc.exe
Escape::
Send !{F4}
Reload
#IfWinActive
Return
忘了可以为一个分配多个动作/参数/值 键...