Stengray Posted March 27, 2018 Posted March 27, 2018 I am not sure if I am posting this in the correct location or not. However, I would like to take a pixelchecksum output and store it in an ini or txt file, then recall in in other scripts. Is this possible, and what is the recommended method? Thanks in advance!
Andreik Posted March 27, 2018 Posted March 27, 2018 Hello and welcome to AutoIt Forum. Here is a small example with comments: ; Get PixelChecsum for a region $Checksum = PixelChecksum(10,10,15,15) ; Display value MsgBox(0,'',$Checksum) ; Write checksum to ini (in script directory) IniWrite(@ScriptDir & '\myini.ini','Checksum','PixelChecksum',$Checksum) ; Read value from ini $ReadChecksum = IniRead(@ScriptDir & '\myini.ini','Checksum','PixelChecksum','') ; Display read checksum MsgBox(0,'',$ReadChecksum)
Stengray Posted March 27, 2018 Author Posted March 27, 2018 Thank you Andreik, that is exactly what I was looking for!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now