24/08/2007, 14:43
|
| | Fecha de Ingreso: agosto-2007
Mensajes: 21
Antigüedad: 17 años, 3 meses Puntos: 0 | |
Re: Mi action script cubre mi texto nada...
este es mi codigo........
==========================================
Stage.scaleMode="Exact";
function cargar_cuadrados() {
_root.moveTo(0,0);
columnas=13;
elemtos_columnas=5;
i = 0;
t = 0;
_root.createEmptyMovieClip("xd",0);
xd.onLoad=function(){
var formato:TextFormat=new TextFormat();
formato.color=0x005500;
foramto.align="center";
this.createTextField("txt",0,(Stage.width/2)+50,(Stage.height/2)+10,100,20);
this.txt.text="mi texto que no aparece!! =(";
this.txt.setTextFormat(formato);
};
xd.onLoad();
while (i<columnas) {
z = 0;
while (z<elemtos_columnas) {
_root.attachMovie("cuadrado", "cuadrado"+t, t);
_root["cuadrado"+t]._x = i*getProperty(_root["cuadrado"+t],_width);
_root["cuadrado"+t]._y = z*getProperty(_root["cuadrado"+t],_height);
_root["cuadrado"+t].onLoad = function() {
n = Math.floor(Math.random()*100);
if (n>100 || n<=0){n=1;}
_root["cuadrado"+t].gotoAndPlay(n);
};
_root["cuadrado"+t].onLoad();
z++;
t++;
}
i++;
}
}
cargar_cuadrados();
================================
pero los cuadritos siguen tapando el texto...... =( help me compadres!! =D |