Internet Explorer
提供: MacWiki
2008年3月28日 (金) 21:46時点における130.158.211.34 (トーク)による版
Internet Explorer とは?
すでにMac版の開発は停止されている。2006.01.31 を最後にオフィシャルからダウンロードもできなくなっている。
詳しくは Wikipedia:Internet_Explorer_for_Mac などを参考にして下さい。
AppleScript
- Webページのタイトル等を取得する
tell application "Internet Explorer" tell (GetWindowInfo -1) set theTitle to item 2 set theURL to item 1 end tell end tell -- set the clipboard to "* " & theTitle & return & theURL & return
- Webページを開く
set theURL to "http://macwiki.sourceforge.jp/wiki/" tell application "Internet Explorer" OpenURL theURL toWindow 0 -- GetURL theURL end tell
- 参考 URL