Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/08/2009, 11:38
juandedios
 
Fecha de Ingreso: mayo-2003
Ubicación: Lima
Mensajes: 967
Antigüedad: 20 años, 11 meses
Puntos: 8
Mostrar un MovieCLip con as3

Hola, quiero hacer algo muy sencillo, mostrar un movieclip en el stage con as3, pero no sale, el codigo esta aqui:
Código AS3:
Ver original
  1. import flash.display.*;
  2.  
  3. var img1:MovieClip = new MovieClip();
  4. img1.graphics.beginFill(0x000000);
  5. img1.width = 200;
  6. img1.height = 135;
  7. img1.x = 0;
  8. img1.y = 0;
  9. addChild(img1);
__________________
El aprendiz.