Ver Mensaje Individual
  #6 (permalink)  
Antiguo 11/05/2005, 15:38
Avatar de pulento
pulento
 
Fecha de Ingreso: noviembre-2002
Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 21 años, 5 meses
Puntos: 1
.

/********** formato ***********/
myformat = new TextFormat();
myformat.font = "Warren";
myFormat.bold = true;
myformat.color = 0x006699;
myformat.bullet = false;
myformat.size = 17;
myformat.underline = false;
myformat.embedFonts = true;
myformat.autoSize = true;
myformat.border = true;

/*********Array**************/

var textos:Array = ["HOME", "FILE", "CONTACT", "KE PULENTO"];

/*********tu code arreglado**************/

var repite:Number = botonera;
var espacio:Number = 86;
var baseX:Number = 37;
var baseY:Number = 567;
var files:Array = ["file1.swf", "file2.swf", "file3.swf", "file4.swf","file5","file6","file7","file8","file9 ","file10"];
for (var a = 0; a<repite; a++) {
clip_mc = this.attachMovie("mi_clip", "mc"+a, a);
clip_mc.fileLoad = seccion+"/"+files[a];
clip_mc.createTextField("tF",1,-35,-10,100,25);
clip_mc.tF.selectable = 0;
clip_mc.tF.setNewTextFormat(myformat);
clip_mc.tF.text = textos[i];
clip_mc.onRelease = function() {
//trace("Cargando "+this.fileLoad);
peli.loadMovie(this.fileLoad);// loadMovie(seccion+"/file1.swf", "peli");
};
clip_mc._y = baseY;
clip_mc._x = baseX;
baseX += espacio;
}

Pruebalo y me cuentas..

Salu2

.