Any feedback greatly appreciated!
What does the code look like if I want the user to click two specific buttons then go to a new frame. I’ve been trying different methods, but I am honestly not brilliant with conditional statements.
This is what I’ve got so far…
about_btn.addEventListener(MouseEvent.CLICK, clickAbout);
home_btn.addEventListener(MouseEvent.CLICK, clickMain);
if (function clickMain(event) && function clickAbout(event))
{
trace (“holy cow!”);
}
Thank you thank you thank you!