Actionscript variable grouping
Actionscript variable grouping
Out of context: Reply #1
- Started
- Last post
- 8 Responses
- chrisRG0
will dispatch if any is true:
if (defaultHover || psychoGiraffe || ratMobile)
speechBubble.gotoAndStop(1);will dispatch if all of them are true:
if (defaultHover && psychoGiraffe && ratMobile)
speechBubble.gotoAndStop(1);