Ya lo tengo Dragon, solo deja termino el array y lo posteo. espera.
Quedó mejor con un Arreglo. Saludos Dragon.
Código:
posx=posicion._x;
posy=posicion._y;
alto=botonera._height;
ancho=botonera._width;
corre=5
num=0;
myArray = new Array ();
for (i=0; i<corre; i++) {
colorete= Math.round(Math.random()*333399);
objN = "objN"+num;
botonera.duplicateMovieClip("objN"+num, num);
this["objN"+num]._x = posx;
this["objN"+num]._y = posy+alto*num+5*num;
pintura_color = new Color(eval(this["objN"+num]));
pintura_color.setRGB(Ox+colorete);
myArray[i] = colorete;
num++;
}
botonera.onEnterFrame = function() {
if(this.hitTest(objN0)) {
col=new Color(this);
col.setRGB(Ox+myArray[0]);
} else if (this.hitTest(objN1)) {
col=new Color(this);
col.setRGB(Ox+myArray[1]);
}else if (this.hitTest(objN2)) {
col=new Color(this);
col.setRGB(Ox+myArray[2]);
}else if (this.hitTest(objN3)) {
col=new Color(this);
col.setRGB(Ox+myArray[3]);
}else if (this.hitTest(objN4)) {
col=new Color(this);
col.setRGB(Ox+myArray[4]);
}else if (this.hitTest(objN5)) {
col=new Color(this);
col.setRGB(Ox+myArray[5]);
}
}