I was using if's earlier today, and it dawned on me that MSL doesnt support advanced if's..

an example would be an OR comparisson on $3

if ($3 != (YES || NO)) { ... }

Currently you have to specify them individually..

if ($3 != YES) || ($3 != NO) { ... }

Advanced if's would be nice wink