I offered this comment in response to a query in this hint's comments, but I couldn't find a hint update for 10.5.6, so here goes.
When using Quick Look in full screen mode in earlier OS versions, you could us Command-Tab to change from the Finder to another application and then back to the Finder. After doing that, you could then use the arrow keys to scroll to other files. (Otherwise, you could only switch between whatever files you may have selected prior to opening Quick Look.) This no longer works in 10.5.6, but there is a similar approach, but why this one works is a mystery.
In 10.5.6 when in full screen mode in Quick Look, hit Command-Tab and navigate to Safari, and make sure you can also see a bit of a Finder window. Click on the Finder window in the background to take you back to Quick Look; clicking the Finder in the Dock won't work. After doing this, you can use the up/down arrows again. It doesn't seem to work if you switch to any other application first, and I'd be interested in any explanations.
Of course, you can still use the other standard, documented (and foolproof, if there is such a thing?) way to move between files in full screen Quick Look, by selecting all the files you want to view in the Finder and then go to full screen view (Option-Command-Y). This is the Slideshow mode but you can move through the files easily using the left/right arrows in this case, and scroll within a file using the up/down arrows. Strangely, the above hint works here too so you can go beyond the files you selected.
[robg adds: I think you can use this trick with any application, not just Safari. The key seems to be where you click in the Finder window. If I click in the window itself, I still can't browse with the arrow keys. If I click in the toolbar portion of the Finder window, however, then I can browse at will -- regardless of which application I switched to via Command-Tab. One other side effect is that this seems to disable the Escape key as an exit for Quick Look; I had to click the "X" button on the screen to get out of Quick Look after using this trick.]
I really like QuickLook's Index Sheet view. I often find myself selecting everything in an image folder (Command-A), going straight into full-screen QuickLook (Command-Option-Y), and then clicking the Index Sheet button. So I wrote a simple AppleScript program to stick in the Finder's toolbar to simplify the process.
It essentially just does a Command-A and then a Command-Option-Y (you have to still click the Index Sheet button yourself), but it's better than nothing. The project is hosted on Google Code (quicklook-fullscreen-gallery), and I welcome any help with making it even simpler.
By following these steps, you can make this program from scratch yourself, without downloading anything. First create the script. Open Script Editor (in Applications » AppleScript), and enter the following script. (This is a modified version of the script Minimize all Finder windows at login via AppleScript, posted by meanbone.):
activate application "Finder"
tell application "System Events"
tell process "Finder"
keystroke "a" using {command down}
keystroke "y" using {command down, option down}
end tell
end tell
Next, before saving and proceeding to the next step, test the script to make sure it works.
Are you fed up with those boring 'embossed' blue folders for Documents, Music, Pictures etc? No problem -- just make your own!
Navigate to /System » Library » CoreServices, and view the contents of the CoreTypes.bundle bundle (Control-click and select Show Package Contents). I recommend copying the Generic Folder icon file to your desktop for easy management, but if you look at the other .icns files in there, there's a whole host of goodies!
One thing I've done is copy an image on top of the generic folder using Preview. Just select the image and use copy/paste to paste it onto your generic folder. Because these icons are 512x512 and properly masked, you get a nice overlay with transparency, too (for some, at least). You can move also move the pasted image around like a layer in Photoshop.
Once the image has been modified to your liking, click on the image again in Preview -- this will flatten it. Then use copy and paste to change the icon in the Get Info window of your boring blue folder ... straight from Preview; no other software needed.
One nice example is having a folder with the green "downloads" icon on it that you see in the sidebar -- good for easily recognizable stacks. Have fun!
Certain applications have a very annoying (to me) feature -- they bounce their Dock icons. I keep my Dock hidden, mainly because I don't use it all that much, and I find the bouncing icons quite annoying. Some programs allow you to control Dock bouncing via their preferences (iChat comes to mind), but for others, control of the bouncing is out of the users' hands.
Thanks to a simple Terminal command, however, you can permanently prevent Dock bouncing by any application. In Terminal, enter these two commands:
$ defaults write com.apple.dock no-bouncing -bool TRUE
$ killall Dock
When the Dock restarts, you won't see any icon bouncing again, ever. An ideal solution would be a per-application setting, because there may be apps for which you want a bouncing Dock icon. Lacking that, though, I'll take the no bouncing solution. To reverse this, just repeat the command, replacing TRUE with FALSE, and then kill the Dock again.
For an easier method of implementing this feature, see this hint.
The Group in New Folder script in the Big Cat Scripts Plug-in was my favorite Finder tool for a long time, and I was very upset when it was broken in Leopard. I have managed to hack togather something that can be activated using AmScriptsCMX(UB).
Here is my script. To use it, first nstall AmScriptsCMX(UB) and put the below script in ~/Library/Scripts.
Warning: I am not an AppleScript wizard; this script works for me as is, though. Usual disclaimer applies. Please do let me know if this script can be improved. Thanks to part of this hint that I referred to, and also to BigCat's original script, for making the revised version possible.
I really love Finder's Inspector window, specially on a large screen like an iMac's, but I'd prefer to have it open when my Mac starts. (Yes, it is just three keystrokes, but I prefer to have it already on automatically.) So, as Finder doesn't have this option, I've created an AppleScript to do it:
try
tell application "Finder"
activate
end tell
tell application "System Events"
tell process "Finder"
tell menu bar 1
tell menu bar item "File"
tell menu "File"
click menu item "Show Inspector"
end tell
end tell
end tell
end tell
end tell
end try
Paste the above into Script Editor, save it as an application, and then I add it to your login items. You must have enabled Access for Assistive Devices, which can be found in the Universal Access System Preferences panel.
I work almost exclusively in Finder's List View, which has an annoying folder creation "feature" that I dislike. Once you've used the Right Arrow to drill down into a few subfolders, when you hit Command-Shift-N to create a new folder, that folder will be created at the root folder of the Finder's current view, instead of in the folder you're looking at.
What I wanted to do was select any folder, press a keyboard combo, and have a new folder created inside that currently-selected folder. Similarly, selecting a file and hitting a shortcut would create a new folder where that file is located. So I set to work with AppleScript; here's the code
(Please note: I'm no uber-scripter, so there may be simpler ways of doing this.) There does seem to be a bug where Finder will not select the newly created folder. Also, to make this work via the keyboard, you'll want to use something like Spark to hook up a keyboard shortcut to this script.
[robg adds: I tested this using Butler, and it worked as described. This much older hint explained how to create a new file in the currently-selected folder via AppleScript.]
By default, double-clicking a folder in the Mac OS X Finder opens the folder in the current window. You probably know that you can open a new window for a folder that appears in the current window by holding down the Command key before double-clicking. You might also know you can open the parent of the current folder in a new window with Command-Up Arrow -- but this will close the original folder, too.
To open the parent folder of the current window in a new window, while leaving the current window open, hold Command and Control, and then press the Up Arrow key on the keyboard.
I sometimes modify and save a file, only then to realize I need to undo something, but it's too late. So I've created an AppleScript which duplicates any files selected in the Finder, and adds the date and time to their names. This makes it easy to go back by looking at the date and time embedded in the filename. I suggest you work with the original file, and make versions of that one before modifying the file, so you can always go back to your starting point.
Here's the AppleScript (note that some date and time code was sourced via a Google search):
There appears to be a minor bug in the Leopard Finder: drag-selecting multiple icons when they are set to full size is very slow and unusable (at least on my 2.4GHz 17" MacBook Pro running OS X 10.5.5).
The solution is to change the icon size to 112x112 pixels or lower. Still pretty big, but much faster for some reason.
[robg adds: I tested this on my Mac Pro, and indeed, there's a big change in performance when you compare, say, 116x116 to 112x112. It's especially noticeable if you're drag-selecting in a folder with a large number of items in it.]