No need to read this post.
It is only an attempt to get this topic better indexed.
The solution is well documented above.
set the editMenus of this stack to true
Even after 8 years Google still could not help me to find this topic.
The following searches don't lead here, but should.
Livecode ...
Search found 2 matches
- Thu Jul 16, 2020 2:27 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Menu that does not show in Windows
- Replies: 5
- Views: 5770
- Sat May 09, 2020 7:42 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: array functions (length, sort, push, pop, shuffle)
- Replies: 20
- Views: 40097
Re: array functions (length, sort, push, pop, shuffle)
Fastest possible random shuffle
sort lines of myKeys by random(9007199254740991)
Actually it works almost as well with any other number above 1000, but there is no gain in speed, so why not go for the best possible random distribution with the highest number that happens to work. Unlike the delete ...
sort lines of myKeys by random(9007199254740991)
Actually it works almost as well with any other number above 1000, but there is no gain in speed, so why not go for the best possible random distribution with the highest number that happens to work. Unlike the delete ...