Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Mac OS X > finder change all folders to be viewed as list

finder change all folders to be viewed as list
Thread Tools
Fresh-Faced Recruit
Join Date: Nov 2002
Location: Austria
Status: Offline
Reply With Quote
Feb 26, 2004, 12:41 PM
 
does anyone know how I could change the preference for all folders in one to view the objects any time as list? Perhaps I`m too stupid, however its impossible for me to change this option. Everytime I change it, the subfolders rest in the old view.

Its driving me nuts. Perhaps someone has heard about applescript which can do this.

Oh my OS Version is 10.3.2.
_____________
G4 Dual 1,42 1GB RAM in the office
15" Alu PB 1Ghz at home
PB5300 in the kitchen as MP3 Player, IM, Email Client
     
Mac Elite
Join Date: May 2001
Location: Earth
Status: Offline
Reply With Quote
Feb 27, 2004, 04:42 PM
 
edit: suggestion does not work
(Last edited by pat++; Feb 27, 2004 at 04:56 PM. )
     
Sal
Dedicated MacNNer
Join Date: Sep 2000
Location: Cupertino, CA USA
Status: Offline
Reply With Quote
Feb 27, 2004, 05:20 PM
 
Originally posted by haifischjunge:
does anyone know how I could change the preference for all folders in one to view the objects any time as list? Perhaps I`m too stupid, however its impossible for me to change this option. Everytime I change it, the subfolders rest in the old view.

Its driving me nuts. Perhaps someone has heard about applescript which can do this.

Oh my OS Version is 10.3.2.
Run this script and choose the parent folder. Every folder within the entire hierarchy of the parent folder will be set to display in list view:

set this_folder to choose folder
tell application "Finder"
set the current view of the container window of every folder of the entire contents of this_folder to list view
end tell
     
Dedicated MacNNer
Join Date: Jul 2002
Location: Norway
Status: Offline
Reply With Quote
Feb 27, 2004, 05:39 PM
 
Is it possible to set it to "All windows" mode ? So that if a folder has it's own setting it will override that ?
Mac Pro 2 x 2.8 GHz Quad-Core, Nvidia GeForce 8800GT
     
Mac Elite
Join Date: May 2001
Status: Offline
Reply With Quote
Feb 27, 2004, 07:08 PM
 
The above script will set the view of every subfolder of the chosen folder (not of the folder itself though) to list view, regardless to what it was set before.

If you have the script menu installed you can put an extended version into the Finder Scripts folder:
Code:
property mychoice : "List view" try tell application "Finder" set the topfolder to (folder of the front window) as alias set mychoice to (choose from list {"Icon view", "List view", "Column view", "I"} with prompt "Change view of '" & topfolder & "' and subfolders to:" default items mychoice) as text if mychoice is "Icon view" then set myview to icon view else if mychoice is "List view" then set myview to list view else if mychoice is "Column view" then set myview to column view else return end if set current view of container window of every folder of the entire contents of the topfolder to myview set current view of container window of the topfolder to myview end tell on error e display dialog "The Finder needs to have a window in front before you call this script." buttons {"Cancel"} default button 1 end try
It will not ask for a folder but use the window that's just in front and change its and all subfolder's views to a view you can select.
The same way you can turn the tool(side-)bar visibility on or off.
(And if Apple eventually would the user let choose the default view for new Finder windows all this wouldn't be that necessary).

-
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 08:56 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2