Another way to set the width of the Name column
Another way to set the width of the Name column
- Subject: Another way to set the width of the Name column
- From: Robert Poland <email@hidden>
- Date: Tue, 12 Jul 2011 15:43:16 -0600
Chris,
I found a quicker/better way to set the width of the Name column of a finder window.
tell application "Finder" tell window 1 set {leftEdge, topSide, null, null} to bounds tell its list view options to set width of column id name column to 200 -- get a starting point set x to leftEdge + 200 set y to (topSide + 28) my clickDivider(x, y) -- double click on "Name" divider end tell end tell beep
on clickDivider(x, y) delay 0.5 do shell script "cliclick d" & x & space & y delay 0.1 end clickDivider
Robert Poland - Fort Collins, CO
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden