I need a background script app to change Finder window properties

The title says it all. I guess I need an apple script app running in the background that switches my folders to list view and hide tool bar when I open them. Can anyone assist me with this?

Thanks :wink:

anyone?

Is this what you mean? Save it as a stay-open application and launch the application, It maybe a bit a resource hog:

on idle
	tell application "Finder"
		try
			set toolbar visible of Finder windows to false
			set current view of Finder windows to list view
			set zoomed of Finder windows to true
		end try
	end tell
	return 2
end idle

Jon

fantastic! ty! :smiley: