AppleScript名:GameplayKitを使ったリストのシャッフル |
— Created 2016-12-08 by Shane Stanley use AppleScript version "2.5" use framework "Foundation" use framework "GameplayKit" use scripting additions set anArray to current application’s NSArray’s arrayWithArray:{1, 2, 3, 4, 5, 6, 7, 8, 9, 10} set newArray to anArray’s shuffledArray() as list — requires macOS 10.12 |
More from my site
(Visited 73 times, 1 visits today)
シーケンシャル値の1D Listを作成してシャッフル – AppleScriptの穴 says:
[…] もともとは、Shane Stanleyによる乱数シャッフルルーチンがあり、これにシーケンシャル値の作成部分を追加。最終的にはこのシャッフルした値をもとに文字列の入ったリストのシャッフル […]