On Press Level 0 Go To Next Scene

_level0_root.nextScene();

I’m trying to tell flash when i press this button tell level 0 go to and play next scene…

is this possible… what’s the correct way to do something like this

thanks in advance…

in you button:
on(press){
_level0.nextScene();}

thanks for replying… i appericate your help

but… it didn’t work

i think it might be this.

on(press){
_level0._root.nextScene();
}

this seems to work for me. Did it fix your problem? :slight_smile:

aaron353

it’s not working…

i’m using flash mx 2004 does that make a difference
thanks for all your help

 
on (release) {
	_root.nextScene();
}