1

我一直在尝试编写一个简单的applescript来获取可用VPN连接的列表并随机选择一个,这里是:

tell application "Tunnelblick"
    set the_values_list to get configurations
    set the list_count to the count of the_values_list --gets number of items in list
    set pick to random number from 1 to list_count --has it choose a random item
    set generated_choice to item pick of the_values_list --sets the generated item as the choice
    return generated_choice --displays the choice
end tell

这将返回:

应用程序“Tunnelblick”的配置“USA.Indiana.SouthBend_LOC1S2.UDP”

但是,如果我尝试通过替换返回来连接:

connect generated_choice --displays the choice

我收到一个错误:

Tunnelblick 出现错误:密钥格式无效。

为什么会发生这种情况?似乎它传递的是数组(列表)而不是值。

4

1 回答 1

1

以下工作

connect (get name of (configuration pick))

于 2013-01-11T03:39:26.640 回答