iCab
提供: MacWiki
2008年3月18日 (火) 12:38時点における130.158.211.34 (トーク)による版
iCab とは?
Webアーカイブ保存など意外と機能豊富なブラウザ。29ドルのシェアウェア。
詳しくは Wikipedia:iCab なども参考にして下さい。
AppleScript
- Webページのタイトル等を取得する
tell application "iCab" set theTitle to name of front window set theURL to URL of front window -- 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 "iCab" OpenURL theURL toWindow 0 -- 0で新規ウィンドウ、-2で新規タブ -- GetURL theURL end tell