Home > AppleScript > [ AppleScript ] iTunes のウインドウを全画面表示するスクリプト

[ AppleScript ] iTunes のウインドウを全画面表示するスクリプト

iTunes は左上のズーム(緑色)ボタンをクリックしても、全画面表示にならないので書いてみました。

tell application "Finder"
  set x to bounds of the window of desktop
  set item 2 of x to 22
  tell application "iTunes"
    set bounds of window 1 to x
  end tell
end tell

動作確認:Mac OS 10.4.8 + iTunes 7.0.1

Comments:0

コメントフォーム

お気軽にコメントをどうぞ! コメントを頂けると管理人が喜びます。

情報を記憶しますか?

Trackbacks:0

Trackback URL for this entry
http://bowz.info/1246/trackback
Listed below are links to weblogs that reference
[ AppleScript ] iTunes のウインドウを全画面表示するスクリプト from Bowz::Notebook

Home > AppleScript > [ AppleScript ] iTunes のウインドウを全画面表示するスクリプト

Feeds
Meta
あわせて読みたいブログパーツ

Return to page top