MacOSXでスクリプトメニューからGoogleを利用してWebページを検索するアップルスクリプトです。検索したいキーワードを入力するとインターネット設定で選んでいるWebブラウザで検索結果を表示します。
※MacOS9で使うにはスクリプトをアプリケーション形式で保存して下さい。コンパイル済みスクリプトではダイアログが表示されず動作しません。また、UTF-8とShift_JISを書き換えて保存して下さい。
下記のスクリプトをスクリプト編集プログラムにてコンパイル済みスクリプトに保存し、スクリプトメニューで使います。
property target_URL : "http://www.google.co.jp/search?ie=UTF-8&hl=ja&lr=lang_ja&q=" property target_URL2 : "http://www.google.co.jp/search?btnI&ie=UTF-8&hl=ja&lr=lang_ja&q=" --property target_URL : "http://www.google.co.jp/search?ie=Shift_JIS&hl=ja&lr=lang_ja&q=" --property target_URL2 : "http://www.google.co.jp/search?btnI&ie=Shift_JIS&hl=ja&lr=lang_ja&q=" --MacOS9以下で使う場合、上記のようにUTF-8をShift_JISに変更する。 repeat display dialog "Enter the search string:" default answer "" buttons {"Cancel", "I'm Feeling Lucky", "Search"} default button 3 copy the result as list to {search_string, button_pressed} if the button_pressed is "Cancel" then exit repeat if the search_string is not "" then exit repeat end repeat if the button_pressed is "Search" then open location target_URL & search_string--検索結果ページを開きます else if the button_pressed is "I'm Feeling Lucky" then open location target_URL2 & search_string--I'm Feeling Luckyで開きます end if
表示されたダイアログに検索語を入力して、ボタンを押して下さい。インターネット設定で選んでいるブラウザで検索結果を表示します。
2003/3/9 ─ページをアップロード
2003/3/31 ─MacOS9での注意書きを修正。