AppleScript を使って、Internet Explorer のウインドウをリサイズしたり、指定のページを開いて閉じたりするサンプルです。
Internet Explorer のウインドウをリサイズする
———————————————————————-
Internet Explorer のウインドウをリサイズする AppleScript のサンプルです。
tell application "Internet Explorer"
do script "window.moveTo(800,0);"
do script "window.resizeTo(800,screen.availHeight);"
end tell
これってほとんど JavaScript ですね(笑)
動作確認:Mac OS 10.4.5 + Internet Explorer 5.2.3
Internet Explorer で指定のページを開いて閉じるサンプル
———————————————————————-
Internet Explorer で指定のページを開いて閉じる AppleScript のサンプルです。
set add to "http://www.yahoo.co.jp/"
tell application "Internet Explorer"
Activate
GetURL add
delay 5
CloseAllWindows
end tell
動作確認:Mac OS 10.4.5 + Internet Explorer 5.2.3