我一直在尝试编写一个简单的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收到错误:密钥表格无效。
为什么会发生这种情况?看起来它正在传递数组(列表)pocked而不是值。
答案 0 :(得分:0)
以下工作
connect (get name of (configuration pick))