Hi,
I am new to flash and am trying to make a project. I want to make 2 buttons one to go forward thru frames and one to start at the current selected page and go backward. Like paging thru a book.
on (release){
} stop ();
on (press){
gotoAndplay (31);
}
on (release){
stop ()
}
I have been able to make the button go forward but when I stop it it returns to the beginning on press instead of from where it left off.
The same thing in reverse except when I put in the code
on (release){
} stop ();
on (press){
gotoAndplay (39);
}
on (release){
stop ()
}
except It wont even go backward.
Can anyone tell me how to get this thing to work??
I'll be eternally indebted to you.

PS. I tried using variables as x + x+1 but and x = x - 1 but I couldnt get them to work either.