Safariで指定の検索エンジンで検索を実行するAppleScriptです。
URL欄にキーワードを入れて検索を行うと、文字入力の途中で待たされることがあるため、別途ダイアログで入力して検索できたほうが便利です。
Script Menuに入れて呼び出して使っています。
AppleScript名:Safariで検索を実行 |
tell application "Safari" set aText to text returned of (display dialog "検索キーワードを入力" default answer "") set dCount to count every document if dCount > 0 then search the web in front document for aText else search the web for aText end if end tell |
More from my site
(Visited 331 times, 1 visits today)
前田雅之 says:
このスクリプトで実行できました。