外部フレームワーク(mpSoundEngine)を利用して、ランダムに音(昔のSFでコンピュータが演算している風の音)を鳴らすAppleScriptです。
AppleScript名:mpSoundEngineでランダム音発生(昔のSFでコンピュータが演算している風の音) |
— Created 2017-12-14 by Takaaki Naganoya — 2017 Piyomaru Software use AppleScript version "2.4" use scripting additions use framework "Foundation" use framework "mpSoundKit" –https://github.com/matthiasplappert/MPSoundEngine set engine to current application’s MPMonoSoundEngine’s alloc()’s init() engine’s start() repeat 100 times set aNum to random number from 50 to 4000 (engine’s channel()’s setFrequency:aNum) delay 0.02 end repeat engine’s |stop|() |
More from my site
(Visited 43 times, 1 visits today)