使用Applescript在URL中创建随机数

时间:2012-07-19 11:01:31

标签: parsing url random numbers applescript

这对于经验丰富的AppleScript用户来说可能相当容易,但我想知道如何随机化一个URL中的数字并获取safari然后打开该URL ..

例如.. http://example.com/something=(RANDOM NUMBER)& something = ...

真的很感激这方面的一些帮助..

非常感谢

1 个答案:

答案 0 :(得分:0)

以下是一个例子:

set randNum to random number from 1 to 20
tell application "Safari"
    open location "http://example.com/something=" & randNum & "something=..."
end tell