Reveal
The Reveal command is a request to make an object visible by opening its container and selecting it. If you specify objects in several containers, only
the last specified object remains selected.SYNTAX
reveal referenceToObjectPARAMETER
- referenceToObject
- A reference to the object or objects to be revealed.
Class: Reference or list of referencesRESULT
Reference to the revealed object or a list of references.EXAMPLE
If you save the script that follows as an application, it reveals the original item for any alias file whose icon you drag over the script application's icon.
on open x repeat with i in x tell application "Finder" if i exists then reveal i end if end tell end repeat end openEach original item revealed by this script is selected only momentarily. After the script runs and quits, the Finder selects the script's icon again. This is standard Finder behavior whenever an application (in this case, a script application) quits.