Script for button not working flash 8 player?

hi, can anyone help me with this script?

The buttons work in flash player 6, but i have recently added some filters to the site and changed the settings to flash player 8, now the button links do not work!

the buttons are movieclips with script!

Any ideas, can i modify the script?

here is the script:

//
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
this.onRelease = function() {
_root.gotoandStop(“home”);

};