Potresti usare 1 e 0 per Vero e Falso visto che stringa o numerico sono considerati allo stesso modo.
codice:
a = "1";
b = 1;
if (a == true) {
	trace("a è VERO");
}
if (b == true) {
	trace("b è VERO");
}