Ya te lo dije en el anterior post, te lo vuelvo a repetir. Los comentarios esos enmedio de las variables de la funcion no dejan compilar bien al flash y por consiguiente te da error.
Pon esto:
Código:
function loadFlashPaper(path_s, dest_mc, width_i, height_i, loaded_o) {
En vez de lo que tenias:
Código:
function loadFlashPaper(
path_s, // path of SWF to load
dest_mc, // MC which we should replace with the SWF
width_i, // new size of the dest MC
height_i, // new size of the dest MC
loaded_o) // optional: object to be notified that loading is complete
{
Y muy seguramente te funcionara
ArgoN