我正在尝试为 iTunes 创建一个简单的国际商店。
set country to (choose from list {"US", "CA", "UK"} with prompt "What country?")
if country = "US" then
tell application "iTunes"
activate
open location "itmss://itunes.apple.com/WebObjects/MZStore.woa/wa/switchToStoreFront?storeFrontId=143441"
end tell
end if
当我单击美国时,它对 iTunes 没有任何作用。我究竟做错了什么?