Default Finder Window size

Anyone know what the numbers are for the default size and position of a Mac Finder Window? #macos #MacAutomation

Should be what’s in the pic here.

I can’t find the dimensions of the default window. Yes I know I can reset the default but how can I use them in AppleScript if I don’t know the dimensions and position on screen of the Finder window?

Sorry, I thought you were talking about default settings, not location/size of the window itself.

You can get the current dimensions/position in AppleScript, yes?

I don’t think so but I’m not sure

I found the script to give you the dimensions for a Finder window.

Here is the script:

" tell application “Finder”

get bounds of front window

end tell

Copy the results and paste new boundaries in whatever script you wish.

2 Likes