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. 
  
 
 
