il removeChild non serve per chiudere correttamente il filmato esterno, più che altro prima di fare l'unload devi fare tutti i close, ad esempio dei suoni e se hai filmati o elementi in streaming, anche di quelli, esempio che trovi anche nella guida in linea:

Codice PHP:
function closeAllStreams(evt:Event) { 
    
myNetStream.close();
    
mySound.close();
    
myNetConnection.close();
    
myLocalConnection.close();
}

myMovieClip.loaderInfo.addEventListener(Event.UNLOADcloseAllStreams);