Code: Select all
on mouseup
repeat with rounds = 1 to 1000
add 1 to myarray[random(6)]
end repeat
put myarray
end mouseup
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on mouseup
repeat with rounds = 1 to 1000
add 1 to myarray[random(6)]
end repeat
put myarray
end mouseup
Code: Select all
on mouseup
repeat with rounds = 1 to 1000
add 1 to myarray[random(6)]
end repeat
combine myarray using return
put myarray into fld "Test"
end mouseup
Code: Select all
put myarray into tempStore
combine tempStore using return
put tempStore into fld "Test"
Code: Select all
put the keys of myArray