「Safari」の版間の差分
提供: MacWiki
(→AppleScript: Webページを開く) |
(→AppleScript) |
||
行35: | 行35: | ||
*Webページを開く | *Webページを開く | ||
− | + | <pre> | |
− | + | set theURL to "http://macwiki.sourceforge.jp/wiki/" | |
− | + | tell application "Safari" | |
− | + | open location theURL | |
+ | end tell | ||
+ | </pre> | ||
*Safari のウィンドウを画面全体にする | *Safari のウィンドウを画面全体にする |
2008年3月12日 (水) 18:09時点における版
Safari とは?
Apple 純正の Web ブラウザです。 KHTML を拡張した WebKit を使用しており、 動作が軽快なのが特徴です。
関連するソフトウェア
SafariSpeed
Tips
以下のコマンドを実行すると、デバッグ用のメニューが追加されます。
% defaults write com.apple.Safari IncludeDebugMenu -bool true
AppleScript
- Webページのタイトル等を取得する
tell application "Safari" set theTitle to name of front document set theURL to URL of front document end tell -- set the clipboard to "* " & theTitle & return & theURL & return
- Webページを開く
set theURL to "http://macwiki.sourceforge.jp/wiki/" tell application "Safari" open location theURL end tell
- Safari のウィンドウを画面全体にする
tell application "Safari" activate if not (exists front document) then make document do JavaScript "moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight)" in front document end tell
- その他、参考 URL