「iCab」の版間の差分
提供: MacWiki
(→AppleScript) |
|||
行30: | 行30: | ||
end tell | end tell | ||
</pre> | </pre> | ||
+ | *参考 URL | ||
+ | **http://www10.ocn.ne.jp/~i-zac/ | ||
== Wiki内の関連ページ == | == Wiki内の関連ページ == |
2008年3月18日 (火) 18:50時点における版
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