this is a thumbnail grid i get that much…i was able to customize the scale and rows and so on what i try to understand is where is :
i need the grid to start right to left - horizontally (it was vartically but i just swiched the lines: for (j=0;j<row;j++){
for (l=0;l<col;l++){
and it worked for some reason)
//////////////////////////////////////////////////////////////////////////////////
MovieClip.prototype.grid_maker_01=function(f){
num=0;
col=3;
row=5;
scale=145;
space=6;
for (j=0;j<row;j++){
for (l=0;l<col;l++){
if(num<_global.total){
with(eval(“this.thumbnail_mc.th”+num)){
_x=((_width+space)*scale/100)*l;
_y=((_height+space)*scale/100)*j;
_xscale=_yscale=scale;
_visible=true;
}
num++;
}
}
}
this.cascader();
}
//////////////////////////////////////////////////////////////////////////////////
MovieClip.prototype.cascader=function(){
inter=300;
c=0;
delayed_fade=function(){
if (c<_global.total){
with(eval(“this.thumbnail_mc.th”+c)){
fadein();
}
c++;
}else{
main_menu.boton_reset._visible=true;
clearInterval(delay);
}
}
delay=setInterval(delayed_fade,inter);
}
///////////////////////////////////////////////////////////////////////////////
MovieClip.prototype.fadein=function(){
this.onEnterFrame=function(){
if (this._alpha<100){
this._alpha=this._alpha+5;
}else{
this._alpha=100;
delete this.onEnterFrame;
}
}
}
///////////////////////////////////////////////////////////////////////////////////////
thanx