• ベストアンサー

リスト表示の設定

G5 (OSX 10.3.5)を使用しています。 フォルダの中身をリスト表示させたときに、表示設定してある項目すべて(名前、変更日、サイズ、種類)を無条件に表示するように設定できないものでしょうか。 緑ボタンをクリックするとリストの縦方向にはフィットしてくれますが、横方向にはあまり拡大せず必要な項目(種類)は隠れたままになることがよくあります。

質問者が選んだベストアンサー

  • ベストアンサー
  • coriaka
  • ベストアンサー率72% (126/175)
回答No.1

リスト表示のコラムの幅や並び順は手動で調節する以外にAppleScriptで自動処理することができます。 残念ながら新しく開くウィンドウの初期設定は変えられませんが、最前面のウィンドウの調節を自動化することができます。 一度設定した内容はウィンドウ毎に保存されます。 最後のソースを「スクリプトエディタ」に貼り付けて実行すれば、最前面のウィンドウの設定が変わります。 細かい調節は各行の最後の「to~」を変更して行ってください。 保存するときにアプリケーション形式で保存すればツールバーやサイドバーから実行できるようになります。 設定を元に戻したいときは、表示オプションで「全てのウィンドウ」を選択してください。 (*コラムの調整*) tell application "Finder" activate --リストビューに変更 set current view of Finder window 1 to list view --ウィンドウの大きさの設定 set |Winwidth| to 800 --ウィンドウの幅 set |WinHight| to 600 --ウィンドウの高さ set |WinPos| to position of Finder window 1 set bounds of Finder window 1 to {item 1 of |WinPos|, item 2 of |WinPos|, (item 1 of |WinPos|) + |Winwidth|, (item 2 of |WinPos|) + |WinHight|} --コラム幅の設定 set width of column id name column of list view options of Finder window 1 to 200 --名前欄 set width of column id creation date column of list view options of Finder window 1 to 100 --作成日付欄 set width of column id modification date column of list view options of Finder window 1 to 100 --修正日付欄 set width of column id size column of list view options of Finder window 1 to 90 --サイズ欄 set width of column id kind column of list view options of Finder window 1 to 140 --種類欄 set width of column id label column of list view options of Finder window 1 to 70 --ラベル欄 set width of column id version column of list view options of Finder window 1 to 110 --バージョン set width of column id comment column of list view options of Finder window 1 to 110 --コメント --コラムの並び順 set index of column id creation date column of list view options of Finder window 1 to 2 --作成日付欄 set index of column id modification date column of list view options of Finder window 1 to 3 --修正日付欄 set index of column id size column of list view options of Finder window 1 to 4 --サイズ欄 set index of column id kind column of list view options of Finder window 1 to 5 --種類欄 set index of column id label column of list view options of Finder window 1 to 6 --ラベル欄 set index of column id version column of list view options of Finder window 1 to 7 --バージョン set index of column id comment column of list view options of Finder window 1 to 8 --コメント end tell

nyan-twins
質問者

お礼

ありがとうございました。 スクリプトエディタを探すところから始めましたが、お教えいただいたスクリプトを実行することで私のやりたいことは実現できました。 アプリケーションとして保存し、ドックに入れて使うようにしました。これで1クリックでウィンドウ調節が可能になりました。 このカテゴリーにしてはめずらしくレスがつかないのでよほど難しいことだったのかなあと思っていましたが、AppleScriptを使わないと不可能なことだったんですね。逆にAppleScriptを使うとカスタマイズの幅はひろがるんですね。 勉強になりました。

関連するQ&A