1

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

US をクリックしても、iTunes では何もしません。私は何を間違っていますか?

4

2 に答える 2

1

問題は、choose from listコマンドがリストから選択されたアイテムのリストを返すことです。次のことができます。

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

または、 と言うことができますif item 1 of country = "US"

于 2012-10-30T21:02:52.023 に答える
0

試す

if country as text = "US" then
于 2012-10-30T18:53:31.627 に答える