String of Random Numbers
Posted: Tue Jul 05, 2011 12:04 am
How do I randomize a list of numbers between 1 and 9 in which each number occurs once?
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
put "1,2,3,4,5,6,7,8,9" into theList
sort items of theList numeric by random(9)
put theList