set indexSite to "http://www.aaa.ne.jp/~name/genindex.cgi" --genindex.cgiのURLを記述してください --▼ここからgenindex.cgiに渡す設定 --■の部分をインデックスする時と同じ指定にしてください。 --指定がなければ■を取って""にします。 set includedir to "■" --対象ディレクトリ※1 set includeurl to "■" --対象ディレクトリのURL※2 set suffix to "■" --対象ファイルの拡張子※3 set excludedir to "■" --非対象ディレクトリ※4 set excludefile to "■" --非対象ファイル※5 set excludekey to "■" --非対象キーワード※6 set sort to "■" --ランキング方法※7  --NONE ランキングなし 例:上野■をNONEにする --MODIFY-DESC 最終更新日時-降順 --MODIFY-ASC 最終更新日時-昇順 --TITLE-DESC タイトル-降順 --TITLE-ASC タイトル-昇順 --URL-DESC URL-降順 --URL-ASC URL-昇順 set conf to "■" --パスワード※8 --▲設定はここまで--------------------------------------------------------------- --送信用データを生成 set sendCgi to indexSite & "?includedir=" & includedir & "&includeurl=" & includeurl & "&suffix=" & suffix ツ & "&excludedir=" & excludedir & "&excludefile=" & excludefile & "&excludekey=" & excludekey ツ & "&sort=" & sort & "&conf=" & conf --使っているブラウザがIEなら「Internet Explorer」に、ねすけなら「Netscape Communicatorェ」にする tell application "Netscape Communicatorェ" activate OpenURL sendCgi --cgiに送信 quit--終了する end tell