Hi,
I want to create text fields in tabular format.(in rows and columns).
Follwing is the script which should create 3 columns and 5 rows but its just displays one row only ??? Where am I making the mistake exactly. Can anyone HELP me ??
xp=20;
yp=10;
twidth=250;
theight=120;
for(j=0; j<5; j++){
for(i=0; i<3; i++){
this.createTextField(“column”+i, i+10, xp, yp, twidth, theight);
this[“column”+i].border=true;
xp+=this[“column”+i]._width+26;
trace(xp + " " + yp)
}
yp+=35;
xp=20;
}
Thanx in adv,
Ashish