Opera
提供: MacWiki
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