I have to Scenes. All I want to do is on Scene 1 press a button that hides Scene 1 and Shows Scene 2. And then, Another button on Scene 2 will hide itself and show Scene 1. I have tried the following to no avail. Please help:

// .as on button in Scene 1
on(release){
gotoAndPlay("Scene 2",1);
}

If I put a trace in there I can see that it does fire, however my second scene never shows up. Anyone know why?

CFDaddy