Estan haciendo una funcion global.. si bien es un prototype.. no deja de ser global..
Y es por eso q la sintaxis q debes usar es otra.
Accede a la funcion como metodo de tu mc..:
Ej..:
Movieclip.prototype.galeria = function(img, posx, posy, width, height) {
this.loadMovie(img);
this._x = posx;
this._y = posy;
this._width = width;
this._height = height;
};
myMc.galeria("imagen.jpg", 33, 37, 80, 80);
Try and tell me..
Salu2