Hi,

I did this tutorial just fine in as3 and worked out well. But recently I had to switch my project from as3 to as2 to link buttons to scenes. Now I have a ton of compiler errors from the switch. I was wondering if I can still make this tutorial work out for me in as2, if so what do I have to change?

http://www.youtube.com/watch?v=7mdJeGt_v0Y

Heres some of the scripting I did from the tutorial in my project.

stop();

btn1.addEventListener(MouseEvent.CLICK,play1);

function play1(event:MouseEvent):void{
gotoAndStop("totem");
}
btn2.addEventListener(MouseEvent.CLICK,play2);

function play2(event:MouseEvent):void{
gotoAndStop("eyeball");
}

Thanks a mill!

Nichole