heya!

i'm brand spankin new to mx 2004, but i know mx fairly well.

i have a project that i'm working on which is sorta set up like an animated powerpoint file, with each "slide" (scene) having its own lil animation, then pausing until you click a NEXT button to go to the next slide (scene).

all the next buttons have the same code:
Code:
on (release) {
	nextScene();
}
the previous button is the same way on every scene:
Code:
on (release) {
	prevScene();
}
that, apparently, no longer works in mx 2004.

how come? and what should i use as the new code?

thanks