这对于经验丰富的AppleScript用户来说可能相当容易,但我想知道如何随机化一个URL中的数字并获取safari然后打开该URL ..
例如.. http://example.com/something=(RANDOM NUMBER)& something = ...
真的很感激这方面的一些帮助..
非常感谢
答案 0 :(得分:0)
以下是一个例子:
set randNum to random number from 1 to 20
tell application "Safari"
open location "http://example.com/something=" & randNum & "something=..."
end tell