Bueno, ya resolví el problema.
Cree el siguiente código:
Código :
onClipEvent (load) {
// cargamos el total de bytes de la pelicula en FlashPaper
btotales = _root.flashPaper.carga_swf.getBytesTotal();
}
onClipEvent (enterFrame) {
bcargados = _root.flashPaper.carga_swf.getBytesLoaded();
// ...y si esto se cumple ...
if (bcargados>=btotales) {
if(_root.flashPaper.carga_swf.toolbar_mc.brandClip_mc._visible){
// Con la linea siguiente se oculta el logo de macromedia, ese que dice FLASHPAPER...
_root.flashPaper.carga_swf.toolbar_mc.brandClip_mc._visible = false;
//Con las lineas siguientes se ocultan las herramientas del menú contextual.
_root.flashPaper.carga_swf.getIFlashPaper().showUIElement("Pop", false);
_root.flashPaper.carga_swf.getIFlashPaper().showUIElement("PrevNext", true);
_root.flashPaper.carga_swf.getIFlashPaper().showUIElement("Print", false);
_root.flashPaper.carga_swf.getIFlashPaper().showUIElement("Find", true);
_root.flashPaper.carga_swf.getIFlashPaper().showUIElement("Zoom", true);
_root.flashPaper.carga_swf.getIFlashPaper().showUIElement("Tool", false);
_root.flashPaper.carga_swf.getIFlashPaper().showUIElement("Page", true);
// Con la linea que viene oculta toda la barra
// flashPaper.toolbar_mc._visible = false;
}
}
}
En el fotograma donde debe aparecer la película, coloque un nombre de fotograma (txt01...que original...

) y luego coloque este código en el fotograma:
Código :
stop();
_root.flashPaper.carga_swf.loadMovie("01.swf");
Y como deseaba que se cargara con un botón, aquí dejo el código del llamado:
Código :
on (release) {
_level1.flashPaper.gotoAndStop("txt01");
}
Y listo....
saludos