beautypg.com

Apple AppleScript Finder Guide User Manual

Page 143

background image

C H A P T E R 3

Finder Commands

Command Definitions

131

Reveal

3

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

referenceToObject

PARAMETER

referenceToObject

A reference to the object or objects to be revealed.

Class:

Reference or list of references

RESULT

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 open

Each 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.