You need to set a variable for each scene in the onstart-event of the scene:
onstart="sound_scene_1();"
<action name="sound_scene_1">
if(scene_sound_1 !== 1,playsound(...the sounddfile you want to play...);set(scene_sound_1,1));
</action>
And this for every scene. You could it also automate for each scene, but that would need a little coding-experience on your site

)