Tema: Flash Paper
Ver Mensaje Individual
  #6 (permalink)  
Antiguo 14/02/2006, 14:52
Avatar de -=ArgoN=-
-=ArgoN=-
 
Fecha de Ingreso: octubre-2005
Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 18 años, 6 meses
Puntos: 1
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