What am I doing wrong?

On frame 1 from the root I’ve the following script:

[AS]
menuRollOver = new Sound();
menuRollOver.attachSound(“sfx-bttn-038”);
menuRollOver.setVolume(90);

menuOnPress = new Sound();
menuOnPress.attachSound(“sfx-bttn-032”);

WhenTextAppears = new Sound();
WhenTextAppears.attachSound (“sfx-swit-028”);
WhenTextAppears.setVolume(5);

stop();
[/AS]

For some reason all three sound objects play at 5% of the volume (the volume that was set for “WhenTextAppears”). I want to controle the volume of the 3 objects seperatly,… I thought the code above should do the trick but it doesnt.

Can someone please point of for me what Im doing wrong?

Thanks already,

Nasier