Hello ppl
Im building a flash header in which I need to create to arrows, one will go the beginning of the website and the other one to the next frame. By using prevframe I did this action:

PHP Code:
on (release) {
if (
_currentframe == 1) {
stop();
} else {
prevFrame();
}

This code is in the button "arrow" on frame 10 but instead of going back frame by frame, it stays in the frame 9.

How can I fix this?