31/05/2005, 11:46
|
| | | Fecha de Ingreso: diciembre-2004 Ubicación: Cordoba
Mensajes: 222
Antigüedad: 20 años, 1 mes Puntos: 0 | |
podes probar asi :
for (x=4;x<10;x++) { _root.createEmptyMovieClip("cargador"+x,x); }
y para eliminarlo seria asi
for (x=4;x<10;x++) { _root["cargador"+x].removeMovieClip(); } |