Basically what I'm trying to achieve is as follows...
o Get pixel color at co-ordinates 820,150
o Is the pixel color equal to #006699
o If it is then perform an action, wait, then continue to the rest of the script
o If the pixel color does NOT equal #006699 then ignore the rest of the IF conditions and proceed with the rest of the script
Here's my code so far (I believe the problem lies with the conditions to check if the color is #006699)...
Code: Select all
GetPixelColor>820,150,color
IF>color=#006699
Wait>0.19
MouseMove>15,42
Wait>0.20
LClick
Wait>2.00
ENDIF
//The rest of script starts here...