我需要在一天中随机播放声音。
如何创建随机延迟功能,然后通过系统音频播放文件?
答案 0 :(得分:3)
延迟 x 取一个参数的整数。
从 a 到 b 的随机数会在值a和b之间生成一个随机整数
答案 1 :(得分:0)
试试这个
on run {}
my doit()
end run
on doit()
display dialog "hello world"
end doit
on idle {}
set ran to random number from 0 to 10
doit()
return ran
end idle
请务必将其保存为保持打开的应用程序