Ciao ho un swf che carica un altro swf su un mc target

on (release) {
stopAllSounds();
loadMovie("esterno.swf", "_root.target");
}


Il quale ferma il suono che ho sotto

All'swf esterno ho poi messo un pulsante per 'togliersi di mezzo'


on (release) {

unloadMovie("_root.target");
}

Come posso far riprendere il suono che ho fermato con stopAllSounds(); all'inizio ?