On Oct 04, 2014, at 10:46, Robert Poland <email@hidden> wrote:Is there any way to control width of, for example, the name column?
______________________________________________________________________
Hey Bob,
Same old, same old...
No. There's no way to do that natively.
System Events can detect the separator though:
------------------------------------------------------------------------------------------- tell application "System Events" set quit delay to 0 tell application process "Finder" set frontmost to true tell window 1 tell image 2 of UI element 1 of row 1 of outline 1 of scroll area 2 of splitter group 1 set {xPosition, yPosition} to position set {xSize, ySize} to size end tell set {xPosition, yPosition} to {xPosition + (xSize div 2), yPosition + (ySize div 2)} end tell end tell end tell do shell script "/usr/local/bin/cliclick c:" & xPosition & "," & yPosition & " w:100 c:. c:." -------------------------------------------------------------------------------------------
Unfortunately I can't get this to work.
I tried without success to have System Events do the clicks, but no go.
CliClick clicks at the correct spot, but the resize doesn't happen. Damn it.
If anyone can make this work I'd like to know.
-- Best Regards, Chris
|