Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/12/2009, 23:40
Avatar de the_ghost
the_ghost
 
Fecha de Ingreso: octubre-2003
Ubicación: Caracas, Venezuela
Mensajes: 104
Antigüedad: 20 años, 6 meses
Puntos: 5
Respuesta: Variable cargando imagen

Hola, si estás usando AS2, agrega comillas a la URL del archivo.

Si estás usando AS3, prueba algo como esto:

Código actionscript:
Ver original
  1. var url = "http://localhost/paginas/Proyecto%20...enes/foto1.jpg";
  2. var loader:Loader = new Loader();
  3. loader.load(new URLRequest(url));
  4. contenedor.addChild(loader);

Espero que te sirva.
__________________
ThE GhOsT