「OmniWeb」を編集中
警告: ログインしていません。
編集すると、IPアドレスがこのページの編集履歴に記録されます。この編集を取り消せます。
下記の差分を確認して、本当に取り消していいか検証してください。よろしければ変更を保存して取り消しを完了してください。
最新版 | 編集中の文章 | ||
行1: | 行1: | ||
− | + | == OmniWeb とは? == | |
+ | |||
+ | [[WebKit]] と [[Cocoa]] を使った Mac OS X ブラウザ。 | ||
+ | フリーウェア。 | ||
+ | |||
+ | *http://www.omnigroup.com/applications/omniweb/ | ||
+ | *http://www.act2.com/products/omni/omni_web/ | ||
+ | *http://www.apple.com/downloads/macosx/internet_utilities/omniweb.html | ||
+ | |||
+ | 詳しくは [[Wikipedia:OmniWeb]] なども参考にして下さい。 | ||
+ | |||
+ | == [[AppleScript]] == | ||
+ | |||
+ | *Webページのタイトル等を取得する | ||
+ | <pre> | ||
+ | tell application "OmniWeb" | ||
+ | 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 | ||
+ | </pre> | ||
+ | *Webページを開く | ||
+ | <pre> | ||
+ | set theURL to "http://macwiki.sourceforge.jp/wiki/" | ||
+ | tell application "OmniWeb" | ||
+ | OpenURL theURL toWindow 0 | ||
+ | -- GetURL theURL | ||
+ | end tell | ||
+ | </pre> | ||
+ | |||
+ | == Wiki内の関連ページ == | ||
+ | |||
+ | *[[リスト/ブラウザ]] | ||
+ | |||
+ | [[Category:ソフトウェア]] | ||
+ | [[Category:ネットワーク]] | ||
+ | [[Category:Web]] |