Sound Problems

Okay i finally made the plunge and got some good sound FX for flash. I imported the sound into my library, gave it the id ‘beep’ and added this code to my onRollOver state.


stop();
this.onEnterFrame = function() {
    if (rewind == true) {
        prevFrame();
    }
};
this.onRollOver = function() {
    rewind = false;
    play();
    beep_sound.attachSound(beep);
    beep_sound.start(0, 0);
    beep_sound.setVolume(100);
};
this.onRollOut = function() {
    rewind = true;
};

The problem is that the sound is very, very quite and almost hard to hear. But when you test it in the library it sounds great!

Any thoughts on what i am doing wrong?

Thanks