Jump to content

Function AND


Recommended Posts

is "AND" a function ??? without quotes and if so, does it include another example of 1 function for instance - If PixelGetColor( 179 , 745 ) = 16777215 AND PixelGetColor( 22 , 735 ) = 16777215 AND PixelGetColor( 156 , 737 ) = 16777215 Then

Link to comment
Share on other sites

AND is an operator like <, >, =, <>, >=, <= and so on.

It's mainly use in If-Statements, but can show up other places.

If ($x >= 1) And ($x <= 10) Then ...

If conditionFunc1() AND (conditionFunc2() OR contitionFunc3()) Then ...

$bool = $booleanVar1 And $booleanVar2
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...