Hey all…
I have a button on the main stage, and a movieclip “qccontent”. When the user presses the button, I am trying to check if the MC is on a specific frame label. The MC starts on a stopped frame labeled “closed”.
Right now, each time the button is pressed, it currently goes and plays the label “closemenohit”. It is not reading the first part. Am I doing something wrong?
[AS]
on (release) {
if (_root.qccontent._currentframe(“closed”)) {
_root.qccontent.gotoAndPlay(“openme”);
} else {
_root.qccontent.gotoAndPlay(“closemenohit”);
}
}
[/AS]
All or any help would be appreciated. Thanks! Working in Flash MX.