9,8,1,2,3,4,5,6,7
You need a button and a multi line field for this script.
Code: Select all
on mouseUp
repeat with i = 1 to 9
repeat with j = 1 to 9
put "test data"&&j into ttvar[i][j]
end repeat
end repeat
put keys of ttvar into tkey
put tkey into fld "fld1"
end mouseUp