ActionScript 3.0 How do I make it once you click a object it goes to next scene?

78 Views Asked by At

I am making a simple flash game. How would I make the user to go the next scene when the zombie is clicked?

enter image description here

1

There are 1 best solutions below

0
On

Create a symbol out of the zombie, call it whatever you want. Then write this code:

yourZombieName.addEventListener(MouseEvent.CLICK, clickZombie);

function clickZombie(evt:MouseEvent):void {
    gotoAndStop(1, "yourSceneName");
}