如何让applescript一次执行多个进程?

时间:2016-01-21 02:49:09

标签: applescript

所以我目前在苹果脚本中有一个脚本,它接受一定数量的文本并重复一定次数。我想知道是否有可能让脚本在输入文本的同时大声朗读一些文本。

1 个答案:

答案 0 :(得分:0)

repeat
    set readtext to "hello World"
    say readtext without waiting until completion
    --read in next line of text
end repeat

你明白了吗?

除此之外,我认为没有办法并行运行任务。

希望这有帮助。