Opera
提供: MacWiki
2008年3月18日 (火) 12:41時点における130.158.211.34 (トーク)による版
Opera とは?
独自のレンダリングエンジンを使用。 2005.09.20 から、無料で公開されています。
- http://www.opera.com/
- http://www.jp.opera.com/
- http://www.apple.com/downloads/macosx/internet_utilities/operabrowser.html
- http://www.apple.com/jp/downloads/macosx/internet/opera.html
プレビュー・ベータ版。Intelプロセッサ対応。BitTorrentサポート。
詳しくは Wikipedia:Opera なども参考にして下さい。
AppleScript
- Webページのタイトル等を取得する
tell application "Opera" set theTitle to name of front window set theURL to URL of front window as string -- tell (GetWindowInfo of front window) -- 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 "Opera" OpenURL theURL toWindow 0 -- GetURL theURL end tell