flash question
flash question
- Started
- Last post
- 5 Responses
- honkytonk
Hello, what's wrong with this eh?
For some reason it's not working....on (release) {
if (xxx=0) {
xxx=1;
} else if (xxx=1) {
xxx=0;
}
}Thanks in advance.
- unformatted0
try
else {}
and not
else if{}
?
- honkytonk0
Tried it. Any other suggestions?
- honkytonk0
shit, this should be easy.
*bump
- 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;
}
}
- honkytonk0
thank you.