AutoIt CaptureScreen文件位置

时间:2012-05-08 14:54:22

标签: vba automation autoit

我有以下AutoIt脚本:

Run("Notepad.exe", @WindowsDir, @SW_MAXIMIZE)
Sleep(1000)
Send("Just a test")
$anPos = WinGetClientSize("")
$nLeft = 0
$nTop = 0
$nRight = $anPos[0]
$nBottom = $anPos[1]
$sFileName = "test.jpg"
DllCall("captdll.dll", "int:cdecl", "CaptureScreen", "str", $sFileName, "int", 85)

脚本似乎运行正常,但我无法在任何地方找到test.jpg文件。我做错了什么?

1 个答案:

答案 0 :(得分:1)

没有正确安装captdll,这就是问题。