flash question
flash question
Out of context: Reply #4
- Started
- Last post
- 5 Responses
- unfittoprint0
if only allows comparison not equal operators. So instead of = use ==
on (release) {
if (xxx == 0) {
xxx=1;
} else if (xxx == 1) {
xxx=0;
}
}
if only allows comparison not equal operators. So instead of = use ==
on (release) {
if (xxx == 0) {
xxx=1;
} else if (xxx == 1) {
xxx=0;
}
}