「Internet Explorer」の版間の差分
提供: MacWiki
(→AppleScript) |
|||
行29: | 行29: | ||
end tell | end tell | ||
</pre> | </pre> | ||
+ | *参考 URL | ||
+ | **http://twt.s15.xrea.com/MacIETips/index.html | ||
+ | **http://www.remus.dti.ne.jp/~a-satomi/bunsyorou/MacIE5_benriSet.html | ||
== Wiki内の関連ページ == | == Wiki内の関連ページ == |
2008年3月18日 (火) 18:52時点における版
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