Question
using a variable as an identifier
Hi,
Lets say I have 5 text boxes that are named t1, t2, t3 etc. I would like to use the variable "i" in the array below as part of the identifier to populate the field is this possible to use an incrementing variable as part of the instance identifer? If so can you help with the syntax I can't get it to work for me.
for(var i = 0; i < 5; i++) {
t(i).text = i;
}
Thanks,
UglyFrank
