RE: changing view on every folder
RE: changing view on every folder
- Subject: RE: changing view on every folder
- From: "Goodman, Steve" <email@hidden>
- Date: Tue, 7 Nov 2000 17:25:33 -0600
>Does anyone have or know where I can download an AppleScript or
program that
>
will set every folder on a volume to "View As List"?<
>
If you like slow you'll love this one. It ges the job done though.
tell application "Finder"
set FolderList to (every item of folder (choose folder with prompt "Please
select a folder to change the view of"))
doafolder(FolderList) of me
end tell
on doafolder(FolderList)
if FolderList - {} then
repeat with thefolder in FolderList
set thefolder to thefolder as string
tell application "Finder"
if kind of alias thefolder = "folder" then
try
activate
select folder thefolder
open selection
set position of container window of
folder thefolder to {69, 79}
set size of container window of
folder thefolder to {351, 186}
set view of container window of
folder thefolder to name
close container window of folder
thefolder
doafolder(every item of folder
thefolder) of me
on error theerr number thenum
return {theerr, thenum}
end try
end if
end tell
end repeat
end if
end doafolder
Enjoy!!!!
>
Steve Goodman
>
Six|12 - THE LTC GROUP
>
>
......."Duct tape is like the force, it has a light side and a dark side
>
and it holds the universe together."------Unknown
>
>
>
>
----------
>
From: Joseph D'Andrea
>
Sent: Tuesday, November 7, 2000 4:05 PM
>
To: email@hidden
>
Subject: changing view on every folder
>
>
Does anyone have or know where I can download an AppleScript or program
>
that
>
will set every folder on a volume to "View As List"?
>
>
Thanks,
>
___Joe___
>
_________________________________________________
>
Joseph D'Andrea email@hidden
>
WEST21.com Internet services for the 21st Century
>
http://www.west21.com/
>
_________________________________________________
>
_______________________________________________
>
applescript-users mailing list
>
email@hidden
>
http://www.lists.apple.com/mailman/listinfo/applescript-users