「OmniWeb」の版間の差分
提供: MacWiki
細 (→OmniWeb とは?) |
|||
行37: | 行37: | ||
[[Category:ソフトウェア]] | [[Category:ソフトウェア]] | ||
[[Category:ネットワーク]] | [[Category:ネットワーク]] | ||
+ | [[Category:Web]] |
2009年12月26日 (土) 06:16時点における版
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ページのタイトル等を取得する
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
- Webページを開く
set theURL to "http://macwiki.sourceforge.jp/wiki/" tell application "OmniWeb" OpenURL theURL toWindow 0 -- GetURL theURL end tell