PDA

View Full Version : On Press Level 0 Go To Next Scene



tonygarcia
August 7th, 2004, 04:22 PM
_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...

Dulcinea
August 7th, 2004, 10:39 PM
in you button:
on(press){
_level0.nextScene();}

tonygarcia
August 7th, 2004, 10:44 PM
thanks for replying.. i appericate your help

but.. it didn't work

aaron353
August 8th, 2004, 01:46 PM
i think it might be this.




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

aaron353
August 9th, 2004, 12:46 PM
this seems to work for me. Did it fix your problem? :-)

tonygarcia
August 9th, 2004, 03:42 PM
aaron353

it's not working..

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

ViNc3
August 10th, 2004, 02:38 AM
on (release) {
_root.nextScene();
}