Hi Guys. Is it possible to double up If Else statements? I tried the below set-up but it didn’t work, therefore I was wondering if anyone knew any similar methods or approaches?
Thanks
if (_global.imageNumber=2) {
imageHolder.gotoAndStop(imageNumber=4);
} else if (_global.imageNumber=3) {
imageHolder.gotoAndStop(imageNumber=1);
}
if (_global.imageNumber=5) {
imageHolder.gotoAndStop(imageNumber=4);
} else if (_global.imageNumber=6) {
imageHolder.gotoAndStop(imageNumber=1);