I need to write script like this:
if (PixelSearch && (other)PixelSearch == true)
{
// code
}
So I need to use Errorlevel, but how use Errorlevel with 2 different PixelSearch? Please help!
I need to write script like this:
if (PixelSearch && (other)PixelSearch == true)
{
// code
}
So I need to use Errorlevel, but how use Errorlevel with 2 different PixelSearch? Please help!
Just store the value of ErrorLevel
to a variable immediately after your PixelSearch and then run your check on the variables.
PixelSearch, P1x, P1y, 200, 200, 300, 300, 0x9d6346, 3, Fast
Result1 := ErrorLevel
PixelSearch, P2x, P2y, 200, 200, 300, 300, 0xf0f0f0, 3, Fast
Result2 := ErrorLevel
If Result1 and Result2
{
// Code.
}
I haven't worked with AutoIt code lately, but I would solve it like this:
The 'Ubound' returns the count of an array, and when a PixelSearch succeeded, the variable should be filled with a 2-dimensional array with the coords :)
For more info on that, check: http://www.autoitscript.com/autoit3/docs/functions/PixelSearch.htm
I'm not sure if the double pipeline (||) is the OR statement in autoIt, but you can look that up.