私が設定したのは、どの Web サイトを開きたいかをいくつかのオプションで尋ねる AppleScript です。これを簡単にするために、Google という 1 つのオプションのみをリストします。これは現在のコードです:
if the_button = "Google" then
site = "http://www.google.com"
tell application "Google Chrome"
launch
tell window 1
make new tab with properties {URL:site}
repeat while loading of active tab
delay 0.1
end repeat
end tell
activate
end tell
Google Chrome で新しいタブを開きますが、URL バーやリロード/ロードなどには何も入力しません。私はこれを試しました:タブを開くスクリプトSafari 5.1しかし、何も機能していません。Mac OS X Lion 10.7.4 と Google Chrome バージョン 21.0.1180.79 を使用しています。助けてください!