I want the small icon displayed when I view files as a list (eg. contents of my hard drive).
Is there a way to get it with apple script in OS X 10.3.9?
If not, is there a way I can manually get it?
I know I can get the bigger icon from the “info” dialog but I really want the small one.
Here’s a script that will set the icon size to small:
set f to choose folder
tell application “Finder”
activate
set w to (container window of f)
set current view of w to list view
set icon size of list view options of w to small icon
open f
end tell
You can manually set it in the View menu of Finder. Not sure if this is true in Tiger.
What I meant to say was that I want the small graphic icon for the different kind of files.
I can get the big icon by opening the info window for a file, clicking into the icon field and copying it.
Is there a way I can get the small icon, preferably by apple script but even having to do it manually would be acceptable?