私は、Sal Soghoian の AppleScript 1-2-3 本からの便利な Finder ウィンドウ セットアップ スクリプト (以下) を使用しています。うまく機能しますが、設定されている 2 つのウィンドウの 2 番目のサイドバーの幅を広げても、変更に対する応答はありません。145 のままです。(最初のウィンドウは幅の変更に対応します) コメント?
tell application "Finder"
close every window
-- first window
open folder "Webclients" of folder "Documents" of home
set toolbar visible of the front Finder window to true
set the sidebar width of the front Finder window to 145
set the current view of the front Finder window to column view
set the bounds of the front Finder window to {16, 80, 550, 675}
-- second window
open folder "Documents" of home
set toolbar visible of the front Finder window to true
set the sidebar width of the front Finder window to 145
set the current view of the front Finder window to column view
set the bounds of front Finder window to {560, 80, 1000, 675}
select the last Finder window
end tell