Well I needed a Boolean XOR, like the one with Truth Tables that we know from logical programming. Well this little function takes care of this:
public function xor(lhs:Boolean, rhs:Boolean):Boolean { }
return !( lhs && rhs ) && ( lhs || rhs );
Cheers,
Leonel