Applescript随机延迟

时间:2011-04-15 23:57:49

标签: applescript

我需要在一天中随机播放声音。

如何创建随机延迟功能,然后通过系统音频播放文件?

2 个答案:

答案 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

请务必将其保存为保持打开的应用程序