Tengo en mi sfw un reproductor Mp3 que contiene retroceder adelantar pausa stop y play...
Lo unico que no tenia era controlador de volumen y off on volumen....
Por ahi entre mis cosas tenia por separado ambas cosas... y las dos funcionan pero no juntas... si alguien me puede decir como unir estos dos codigos sin que fallen juntos

para el off on es el siguiente:
onClipEvent (load)
{
_root.soundstatus = "on";
_root.mySound = new Sound(_level0);
_root.mySound2 = new Sound(_level1);
_root.mySound3 = new Sound(_level2);
_root.mySound4 = new Sound(_level3);
_root.mySound5 = new Sound(_level4);
maxvolume = 100;
minvolume = 0;
}
onClipEvent (enterFrame)
{
if (_root.soundstatus == "on")
{
step = 5;
} // end if
if (_root.soundstatus == "off")
{
step = -5;
} // end if
maxvolume = maxvolume + step;
if (maxvolume > 100)
{
maxvolume = 100;
} // end if
if (maxvolume < 0)
{
maxvolume = 0;
} // end if
_root.mySound.setVolume(maxvolume);
_root.mySound2.setVolume(maxvolume);
_root.mySound3.setVolume(maxvolume);
_root.mySound4.setVolume(maxvolume);
_root.mySound5.setVolume(maxvolume);
}
Y para el controlado de volumen el siguiente codigo
sound = new Sound();
sound.attachSound("sound");
sound.start(0, 1.000000E+014);
mk.onEnterFrame = function ()
{
trace (mk._x);
dert = int(mk._x +

sound.setVolume(dert);
};
Muchas gracias por su pronta respuesta...

...