Hi all,
I have this simple script - where I want to set the column width of name column - but does not seem to work in 10.9.5 mavericks
any way to get it working?
tell application "Finder" activate set target of Finder window 1 to folder "test" of folder "Desktop" of folder "me" of folder "Users" of startup disk set bounds of Finder window 1 to {50, 70, 1000, 600} -- tried this too no change ---- set width of column id name column of list view options of Finder window 1 to 100 set width of column id name column of list view options of Finder window 1 to 300 end tell
If my memory is right, Robert Poland asked about such behavior some months ago.
I no longer use Mavericks. Just write to say that here it worked well under Yosemite 10.10.3
The event log was :
tell current application path to desktop as text end tell tell application "Finder" activate set target of Finder window 1 to folder "SSD 500:Users:yvankoenig:Desktop:images" set bounds of Finder window 1 to {50, 70, 1000, 600} get width of every column of list view options of Finder window 1 (*200, 125, 181, 97, 115, 100, 75, 300*) set width of column id name column of list view options of Finder window 1 to 300 get width of every column of list view options of Finder window 1 end tell Résultat : {300, 125, 181, 97, 115, 100, 75, 300}
Yvan KOENIG (VALLAURIS, France) samedi 23 mai 2015 19:26:25
|