08/08/2004, 10:35
|
| | Fecha de Ingreso: noviembre-2003 Ubicación: Venezuela
Mensajes: 344
Antigüedad: 21 años Puntos: 0 | |
Como defino la anchura y la altura de un movieclip en AS. Ok espero sus respuestas...yo hice esto:
Movieclip.prototype.galeria = function(img, posx, posy, width, height) {
this.loadMovie(img);
this._x = posx;
this._y = posy;
this._width = width;
this._height = height;
};
imagen1.galeria("imagen.jpg", 33, 37, 80, 80);
//Se define la posicion de x Y y, pero no el ancho y la altura...alguien me puede decir pq. |