Actually Mac OS X 10.11.6 (not an option to pick)
Et Al:
I have a script (converted to an app and put into login items for my account) that I have been using for a few years now.
The app will close all Finder windows and give me two side-by-side each with a different target.
tell application "Finder"
activate
close every Finder window
--
open home
tell the Finder window 1
set toolbar visible to true
set the sidebar width to 140
set the current view to list view
set the bounds to {15, 30, 1265, 1350}
end tell
set var_LeftWindow to the target of the front window
--
open computer container
tell the Finder window 1
set toolbar visible to true
set the sidebar width to 140
set the current view to column view
set the bounds to {1290, 30, 2548, 1350}
end tell
set var_RightWindow to the target of the front window
end tell
The two variables are for possible future use.
Can the set statements be nested? I couldn’t find anything about this through various forums nor Google.
Hints, thoughts, examples, etc. will be most welcomed.
BG