「OmniWeb」の版間の差分
提供: MacWiki
細 (→OmniWeb とは?) |
|||
行2: | 行2: | ||
[[WebKit]] と [[Cocoa]] を使った Mac OS X ブラウザ。 | [[WebKit]] と [[Cocoa]] を使った Mac OS X ブラウザ。 | ||
− | + | フリーウェア。 | |
*http://www.omnigroup.com/applications/omniweb/ | *http://www.omnigroup.com/applications/omniweb/ |
2009年4月27日 (月) 18:55時点における版
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