Hi
I have problem with capturing images on Win 2000 and older. I am using these commands:
CODE#include <A3LScreenCap.au3>
; Capture full screen
_ScreenCap_Capture("C:\Image1.jpg")
; Capture region
_ScreenCap_Capture("C:\Image2.jpg", 0, 0, 796, 596)
The error I get on Win 2000 is:
Line 0 (File "<my_file>"):
Return SetError($aResult[0], 0, $aResult[1])
Return SetError($aResult^ ERROR
Error: Subscript used with non-Array variable.
The very same example script runs fine on the WinXP. I have tracked the problem to the A3LGDIPlus.au3 library, because no other lib contains the "Return SetError($aResult[0], 0, $aResult[1])". What can be the problem? I have latest autoit and latest a3lib...