Hello ICE!
You need the Bitwise Operator:
&
Not the logical Operator AND:
&& (AND and && are the same)
From the PBP manual:
4.17.14. Bitwise Operators
Bitwise operators act on each bit of a value in boolean fashion.
They can be used to isolate bits or add bits into a value.
4.19. Logical Operators
Logical operators differ from bitwise operations. They yield a true/false
result from their operation. Values of 0 are treated as false. Any other
value is treated as true.
Luciano
Bookmarks