Hello,
I’m sure there is a simple solution to this, but seeing as how I’m new to Flash, I can’t get it.
I’m designing my website, and I have a mc that when I click on it, a card flies onto the screen. Here is the code for that (this code is on the main timleline):
news_mc.onRelease = function () {
newsCard_mc.gotoAndPlay(2);
}
Now I created another mc inside of the card mc, then when clicked, should make the card fly back off the screen. Here is the code for that (this code is on newsCard_mc’s timeline):
goBack_mc.onRelease = function () {
this.gotoAndPlay(6);
}
I cant seem to get this “back” button to work. Any help would be great. I attached the scene file too. Thanks!