Glad påsk!
Vet inte om detta är till nytta för någon annan, men jag skapade just ett litet script för att få en ikon i verktygsraden i alla fönster i Finder, så att jag kan öppna alla objekt i fönstret med ett klick. Det var praktiskt då jag letar igenom mina många mappar med bilder och annan info som jag inte har i iPhoto.
(*
----------------------------------------------------------------
Open everything in this window
----------------------------------------------------------------
© Intelligent Mammals AB, Ola Andersson, 2007-04-07
[email protected]!
http://www.intelligentmammals.se/
What is it?
----------------------------------------------------------------
This script will open all items in the frontmost window in the Finder.
Save it as an application, and then drag it to the toolbar in any Finder-window, and you have a one-click way to open all items in the current Finder window.
*)
on run
tell application "Finder"
-- Ask the user first if he happened to hit the button in the wrong folder:
display dialog "Open all?" buttons {"Go!", "Cancel"} default button 1 cancel button 2 giving up after 5
-- Check the answer, and do all the rest only if the user did not cancel.
if button returned of the result = "Go!" or gave up of the result is true then
-- Get a reference to the folder of the frontmost window in Finder
set picfolder to folder of window 1
-- Store the current view of that window in a variable
set theView to current view of window 1
-- Change the view of that window to column view
set current view of window 1 to column view
-- Since the view of the window is in colomn view this next step will open all items in order
open every item of picfolder
-- Restore the view of the widow silently (there is no activate command, so the Finder will not be the frontmost application)
set current view of window 1 to theView
end if
end tell
end run
Vill du se lite skärmdumpar och en liten film som visar hur du drar ett objekt till Finders verktygsrad, så finns hela scriptet här:
Öppna allt i detta fönster - Applescript
Missa inte svenska flaggan uppe till höger, så får du hela siten på svenska.
Så, är det användbart eller?