Adobe, the Adobe logo, Illustrator, and Photoshop are either registered trademarks or trademarks of Adobe Systems Inc.
in the United States and/or other countries. Apple and Mac OS are trademarks of Apple Computer, Inc., registered in the
United States and other countries. Microsoft and Windows are either registered trademarks or trademarks of Microsoft
Corporation in the United States and other countries. JavaScript and all Java-related marks are trademarks or registered
trademarks of Sun Microsystems, Inc. in the United States and other countries. All other trademarks are the property of
their respective owners.
The information in this document is furnished for informational use only, is subject to change without notice, and should
not be construed as a commitment by Adobe Systems Inc. Adobe Systems Inc. assumes no responsibility or liability for
any errors or inaccuracies that may appear in this document. The software described in this document is furnished under
license and may only be used or copied in accordance with the terms of such license.
Adobe Systems Inc., 345 Park Avenue, San Jose, California 95110, USA.
This manual provides an introduction to scripting Adobe® Photoshop® CC 2014 on Mac OS® and Windows®.
Chapter 1 covers the basic conventions used in this manual.
Chapter 2 covers a brief overview of scripting, how to execute scripts, and the Photoshop object model.
Chapter 3 covers Photoshop-specific objects and components and describes advanced techniques for
scripting the Photoshop application. Code examples are provided in three languages:
➤ AppleScript
➤ VBScript
➤ JavaScript
NOTE: Separate Photoshop scripting reference information is provided for each of these languages
through the Scripting Reference Manuals provided with this installation, or through the object browsers
available for each language. See “Viewing Photoshop’s AppleScript dictionary” on page 21
Photoshop’s type library (VBS)” on page 22. For information about using the Extend Script Object Model
Viewer, see the JavaScript Tools Guide.
Chapter 4 covers the Action Manager, which allows you to write scripts that target Photoshop functionality
that is not otherwise accessible in the scripting interface.
OTE: Please review the README file shipped with Photoshop for late-breaking news, sample scripts, and
N
information about outstanding issues.
TM
Conventions in this Guide
Code and specific language samples appear in monospaced courier font:
app.documents.add
Several conventions are used when referring to AppleScript, VBScript and JavaScript. Please note the
following shortcut notations:
➤ AS stands for AppleScript
and “Viewing
➤ VBS stands for VBScript
➤ JS stands for JavaScript
The term “commands” will be used to refer both to commands in AppleScript and methods in VBScript and
JavaScript.
When referring to specific properties and commands, this manual follows the AppleScript naming
convention for that property and the VBScript and JavaScript names appear in parenthesis. For example:
“The
display dialogs (DisplayDialogs/displayDialogs) property is part of the Application object.”
6
CHAPTER 1: IntroductionConventions in this Guide 7
In this case, display dialogs refers to the AppleScript property, DisplayDialogs refers to the VBScript
property and
For larger blocks of code, scripting examples are listed on separate lines.
displayDialogs refers to the JavaScript property.
AS
layer 1 of layer set 1 of current document
VBS
appRef.ActiveDocument.LayerSets(1).Layers(1)
JS
app.activeDocument.layerSets[0].layers[0]
Finally, tables are sometimes used to organize lists of values specific to each scripting language.
2
Photoshop Scripting Basics
This chapter provides an overview of scripting for Photoshop, describes scripting support for the scripting
languages AppleScript, VBScript, and JavaScript, how to execute scripts, and covers the Photoshop object
model. It provides a simple example of how to write your first Photoshop script.
If you are familiar with scripting or programming languages, you most likely will want to skip much of this
chapter. Use the following list to locate information that is most relevant to you.
➤ For more information on the Photoshop object model, see “Photoshop Object Model” on page 11.
➤ For information on selecting a scripting language, refer to the Introduction to Scripting guide.
➤ For examples of scripts created specifically for use with Photoshop, see Chapter 3, “Scripting
Photoshop” on page 21.
➤ For detailed information on Photoshop objects and commands, please use the reference information
in the three reference manuals provided with this installation: Adobe Photoshop CC 2014 AppleScript
Scripting Reference, Adobe Photoshop CC 2014 Visual Basic Scripting Reference, and Adobe Photoshop CC
2014 JavaScript Scripting Reference.
OTE: You can also view information about the Photoshop objects and commands through the object
N
browsers for each of the three scripting languages. See “Viewing Photoshop Objects, Commands, and
Methods” on page 21.
Scripting Overview
A script is a series of commands that tells Photoshop to perform a set of specified actions, such as applying
different filters to selections in an open document. These actions can be simple and affect only a single
object, or they can be complex and affect many objects in a Photoshop document. The actions can call
Photoshop alone or invoke other applications.
Scripts automate repetitive tasks and are often used as a creative tool to streamline tasks that might be too
time consuming to do manually. For example, you could write a script to generate a number of localized
versions of a particular image or to gather information about the various color profiles used by a collection
of images.
If you are new to scripting, you should acquaint yourself with the basic scripting information provided in
the Introduction to Scripting manual.
Why use scripts instead of actions?
If you’ve used Photoshop Actions, you’re already familiar with the enormous benefits of automating
repetitive tasks. Scripting allows you to extend those benefits by allowing you to add functionality that is
not available for Photoshop Actions. For example, you can do the following with scripts and not with
actions:
➤ You can a dd conditional logic, so that the script automatically makes “decisions” based on the current
situation. For example, you could write a script that decides which color border to add depending on
8
CHAPTER 2: Photoshop Scripting BasicsScripting Support in Photoshop 9
the size of the selected area in an image: “If the selected area is smaller than 2 x 4 inches, add a green
border; otherwise add a red border.”
➤ A single script can perform actions that involve multiple applications. For example, depending on the
scripting language you are using, you could target both Photoshop and another Adobe Creative Cloud
®
Application, such as Adobe Illustrator
➤ You can open, save, and rename files using scripts.
➤ You can copy scripts from one computer to another. If you were using an Action and then switched
CC 2014, in the same script.
computers, you’d have to recreate the Action.
➤ Scripts provide more versatility for automatically opening files. When opening a file in an action, you
must hard code the file location. In a script, you can use variables for file paths.
NOTE: See Photoshop Help for more information on Photoshop Actions.
Scripting Support in Photoshop
Photoshop supports scripting in three scripting languages: AppleScript, VBScript, and JavaScript.
AppleScript and JavaScript run on Mac OS, and JavaScript and VBScript run on Windows. For information
about how to choose which scripting language to use, and for additional information about using these
languages with Adobe applications, see Introduction to Scripting.
See “Creating and running an AppleScript” on page 18
“Creating and running a JavaScript” on page 19
You can call JavaScript scripts from AppleScript and VBScript scripts. See “Executing JavaScripts from AS or
VBS” on page 10.
For a file to be recognized by Photoshop as a valid script file it must have the correct file name extension:
Script typeFile type ExtensionPlatform
AppleScriptcompiled script
JavaScript
ExtendScript
VBScripttext
Visual Basicexecutable
JavaScript support
For a JavaScript file to be recognized by Photoshop as a valid script file, it must use either a .js or a .jsx
extension. On the Mac OS, there is no difference in the way scripts with the two extensions function. On
Windows, if the script files is opened from inside Photoshop, there is no difference between using the
.jsx extension. However, if the script is launched by double-clicking on it, a script with the .js
and
extension is interpreted with the Microsoft® JScript engine, and it cannot launch Photoshop. For Windows,
using the
.jsx extension is preferable, since it interprets the script with the ExtendScript engine.
OSAS file
text
, “Creating and running a VBScript” on page 19, and
.
.scpt
Mac OS®
(none)
.js
.jsx
.vbs
.exe
Mac OS & Windows
Windows
Windows
.js
CHAPTER 2: Photoshop Scripting BasicsScripting Support in Photoshop 10
Scripts written in JavaScript can be accessed from the Adobe Photoshop Scripts menu (File > Scripts),
which provides quick and easy access to your JavaScripts. By putting a JavaScript file into the appropriate
location on disk, it can be accessed directly from the Photoshop menu.
To install a JavaScript in the Scripts menu, place it in the Scripts folder (Photoshop CC 2014/Presets /Scripts). The names of the scripts in the Scripts folder, without the file name extension, are displayed in
the Scripts menu. Any number of scripts may be installed in the Scripts menu.
Scripts added to the Scripts folder while Photoshop is running do not appear in the Scripts menu until the
next time you launch the application.
All scripts found in the Scripts folder and sub-folders are displayed at the top level of the File > Scripts
menu. The addition of sub-folders does not add a hierarchical organization to the Scripts menu.
Executing other scripts
The Browse item at the end of the Scripts menu (File > Scripts > Browse) allows you to execute scripts
that are not installed in the Scripts folder. You can also use Browse to select scripts installed in the Scripts
folder after the application was last launched.
Selecting Browse displays a file browser dialog which allows you to select a script file for execution. Only
.js or .jsx files are displayed in the browse dialog. When you select a script file, it is executed the same
way as an installed script.
Startup scripts
On startup, Photoshop executes all .jsx files that it finds in the startup folders.
➤ On Windows, the startup folder for user-defined scripts is:
If your script is in this main startup folder, it is also executed by all other Adobe Creative Suite 6
applications at startup. If such a script is meant to be executed only by Photoshop, it must include code
such as the following:
if( BridgeTalk.appName == "photoshop" ) {
//continue executing script
}
For additional details, see the JavaScript Tools Guide.
Executing JavaScripts from AS or VBS
You can take advantage of JavaScript’s platform-independence by running scripts from AppleScript or
VBScript. You can execute either a single JavaScript statement or a complete JavaScript file. For more
information, please refer to Introduction to Scripting.
CHAPTER 2: Photoshop Scripting BasicsPhotoshop Object Model 11
Photoshop Object Model
A document object model (DOM) is an application programming interface (API), which allows you to
programmatically access various components of a document (as defined for that application) through a
scripting language. For additional information about Adobe object models and the scripting languages
that support them, see Introduction to Scripting.
The Photoshop DOM consists of a hierarchical representation of the Photoshop application, the
documents used in it, and the components of the documents. The DOM allows you to programmatically
access and manipulate the document and its components. For example, through the DOM, you can create
a new document, add a layer to an existing document, or change the background color of a layer. Most of
the functionality available through the Photoshop user interface is available through the DOM.
A good understanding of the Photoshop DOM, and how each aspect of the DOM relates to the Photoshop
application and its documents will make script writing easier.
Containment hierarchy
The Photoshop object model is a containment hierarchy, which means that objects in the model are
identified partially by the objects that contain them. In Photoshop, the
of the hierarchy. Applications contain a Documents collection. The Documents collection contains
Document objects. A Document object contains an ArtLayers collection, a HistoryStates collection, a
Layers collection, a Layersets collection, and a Channels collection. Through using commands or methods
in the DOM, you can tell Photoshop documents to add and remove objects, or set or change individual
object properties like color, size and shape. In the diagram below, each node in the hierarchy represents a
class in the Photoshop DOM.
Application object sits at the top
The Photoshop object model uses elements (AppleScript) or collections (VBScript, JavaScript) as a
convenient way to group classes. We have not shown object elements or collections in the object model
diagram below. Not all classes are associated with a collection. However, some key classes are grouped by
elements or collection. The following elements/collections exist in Photoshop:
Color Samplers, Count Items, Documents, Layers, Layer Comps, Layer Sets, History States,
Notifiers, Path Items, Path Points Sub Path Items, and Text Fonts. See Introduction to Scripting for
more information on elements and collections.
NOTE: In Photoshop, VBScript collections index from 1 rather than 0. This stands in contrast to other
VBScript arrays, which index from 0.
Art Layers, Channels,
CHAPTER 2: Photoshop Scripting BasicsPhotoshop Object Model 12
Channel
Selection
History
State
Photoshop containment hierarchy
Path Item
Path
Info
Document
Notifier
Preferences
Sub Path
Item
(showing key classes only)
Item
Count
Sampler
Color
ment
Measure-
Point
Document
Application
Scale
Text Item
(Object)
Art Layer
Layer
Comp
Layer Set
Art Layer
Layer Set
.
Application and document classes
The Application class is the root of the Photoshop object model hierarchy. Scripts must target the
appropriate application in order to run correctly. See “Targeting and Referencing the Application Object”
on page 22.
The
Document class is used to make modifications to the document image. By using the Document object
you can crop, rotate or flip the canvas, resize the image or canvas, and trim the image. You could also use
Document object to get the active layer, then, save the current document, and copy and paste within
the
the active document or between different documents. For more information on using document objects,
see “Creating New Objects in a Script” on page 23
Layer classes
Photoshop has two types of layers: an Art Layer that can contain image contents and a Layer Set that
can contain zero or more art layers.
An ArtLayer is a layer class within a document that allows you to work on one element of an image
without disturbing the others. Images are typically composed of multiple layers, defined by a
You can change the composition of an image by changing the order and attributes of the layers that
comprise it.
Text Item is a particular type of art layer that allows you to add type to an image. In Photoshop, a
A
Text Item item is implemented as a property of the art layer. For more information on text items, see
“Using the Text Item object” on page 41
.
and “Using the Document object” on page 34.
Layer Set.
CHAPTER 2: Photoshop Scripting BasicsPhotoshop Object Model 13
A LayerSet is a class that comprises multiple layers. Think of it as a folder on your desktop. Since folders
can contain other folders, a layer set is recursive. That is, one layer set may call another layer set in the
Object Model hierarchy.
For more information on layers, see “Working with layer objects” on page 36
.
Layer Comp class
The Layer Comp class allows you to create, manage, and view multiple versions of a layout within a single
document.
Channel class
The Channel class is used to store pixel information about an image’s color. Image color determines the
number of channels available. An RGB image, for example, has four default channels: one for each primary
color and one for editing the entire image. You could have the red channel active in order to manipulate
just the red pixels in the image, or you could choose to manipulate all the channels at once.
These kinds of channels are related to the document mode and are called component channels. In addition
to the component channels, Photoshop lets you to create additional channels. You can create a spot color channel, a masked area channel, and a selected area channel.
Using the commands or methods of a
can also retrieve a channel's histogram, change its kind or change the current channel selection.
For more information on channels, see “Working with Channel objects” on page 46
Channel object, you can create, delete and duplicate channels. You
.
Selection class
The Selection class is used to specify an area of pixels in the active document (or in a selected layer of the
active document) that you want to work with. For more information on selections, see “Working with
Selection objects” on page 42.
History State class
The HistoryState class is a palette object that keeps track of changes made to a document. Each time
you apply a change to an image, the new state of that image is added to the palette. These states are
accessible from document object and can be used to reset the document to a previous state. A history
state can also be used to fill a selection. For more information on history objects, see “Using history state
objects” on page 47.
N
OTE: In AppleScript, if you create a document and then immediately try to get history state, Photoshop
returns an error. You must first activate Photoshop—make it the front-most application—before you can
access history states.
Document Info class
The DocumentInfo class stores metadata about a document. Metadata is any data that helps to describe
the content or characteristics of a file. For more information on document info, see “Using the Document
Info object” on page 47.
CHAPTER 2: Photoshop Scripting BasicsPhotoshop Object Model 14
Path Item, Sub Path Item, and Path Point classes
The PathItem class represents information about a drawing object, such as the outline of a shape, or a
curved line. The
of the shape. The
PathItem object” on page 49.
Sub Path Item class is contained in the Path Item class, and provides the actual geometry
Path Point class contains information about each point in a sub path. See “Using the
Preferences class
The Preferences class allows you to access and set the user preference settings. See “Working with
document preferences” on page 61.
Notifier class
The Notifier object ties an event to a script. For example, if you would like Photoshop to automatically
create a new document when you open the application, you could tie a script that creates a
object to an
page 48.
Open Application event. For more information on notifiers, see “Using Notifier objects” on
Document
Count Item class
The CountItem object provides scripting support for the Count Tool.
Color Sampler class
The ColorSampler object provides scripting support for the Color Sampler Tool.
Measurement Scale class
The MeasurementScale object provides scripting support for the new Measurement Scale feature that
allows you to set a scale for your document.
The containment hierarchy and the Photoshop user interface
The following table provides describes how each object relates to the Photoshop user interface.
To create this object without using a
Object nameDescription
ApplicationThe Photoshop application.Start the Photoshop application.
script
DocumentThe working object, in which you create layers,
channels, actions, and so on. In a script, you
name, open, or save a document as you would
a file in the application.
SelectionThe selected area of a layer or document.Choose the marquee or lasso tools and
In Photoshop, choose File > New or
File > Open.
drag your mouse.
CHAPTER 2: Photoshop Scripting BasicsPhotoshop Object Model 15
To create this object without using a
Object nameDescription
script
Path ItemA drawing object, such as the outline of a
shape or a straight or curved line
Choose the path selection or pen tools
and draw a path with the mouse.
ChannelPixel information about an image’s color.Choose Window > Channels.
Art LayerA layer class within a document that allows
you to work on one element of an image
Choose Layer > New > Layer or
Window > Layers.
without affecting other elements in the image.
Layer SetA collection of
Art Layer objects. Group is the
Choose Layer > New > Group.
current name in the Photoshop UI. Layer Set
was the name used in an earlier version of
Photoshop. The Object name stays the same to
keep backward compatibility.
Layer CompA snapshot of a state of the layers in a
document.
Document
Metadata about a
Document object.
Choose Window > Layer Comp. Then
select the New Layer Comp icon.
Choose File > File Info.
Info
N
OTE: Metadata is any data that helps to
describe the content or characteristics of a file,
such filename, creation date and time, author
name, the name of the image stored in the file,
etc.
NotifierNotifies a script when an event occurs; the
event then triggers the script to execute. For
Choose File > Scripts > Script Events
Manager.
example, when a user clicks an OK button, the
notifier object tells the script what to do next.
PreferencesThe application preference settings.Choose Edit > Preferences in
Windows, or Photoshop >
Preferences in Mac OS.
History StateStores a version of the document in the state
the document was in each time you saved it.
Choose Window > History, and then
choose a history state from the History
palette.
OTE: You can us e a History State object to
N
Selection object or to reset the
fill a
document to a previous state.
Color Sampler Represents a color sampler in your document.Choose the Color Sampler Tool, and
click in the document.
Count ItemRepresents a counted item in the document.Choose the Count Tool and click in the
document.
Measurement
Scale
Represents the measurement scale for your
document.
The Measurement Scale object cannot
be created, but you can change its
properties by using Analysis >
Measurement Scale > Custom.
CHAPTER 2: Photoshop Scripting BasicsPhotoshop Object Model 16
Additional objects
The Photoshop object model includes additional objects beyond the ones described in the containment
hierarchy above. Most of these classes are used as types for properties or to provide information (as
arguments) for commands or methods. For example:
➤ The color value(SolidColor/SolidColor) class provides the type for the backgroundcolor
(backgroundColor/backgroundColor) and foreground color
(ForegroundColor/foregroundColor)
properties of the Application object. See “Working with
color objects” on page 51.
➤ Open and save options for documents are defined as classes, and these are passed to the commands
that open and save documents; e.g., the
BMP save options (BMPSaveOptions/BMPSaveOptions)
class can be passed as an argument to the save (saveAs/saveAs) command or method. See “Opening
a Document” on page 28 and “Saving a Document” on page 31.
Constants
An additional important component of the Photoshop object model for JavaScript and VBScript are
constants. Constants are a type of value that defines a property. For example, with the
Art Layer object, you can define only specific kinds that Photoshop allows. For general information about
constants, see Introduction to Scripting.
kind property of an
NOTE: Throughout this document, actual values of enumerations for VBScript are given using the following
format:
The ' before the explanation creates a comment and prevents the text to the right of the ' from being read
by the scripting engine. For more information about using comments, see Introduction to Scripting.
For example, look up the art ArtLayer object in either the Adobe Photoshop CC 2014 JavaScript Scripting Reference or in the Adobe Photoshop CC 2014 Visual Basic Scripting Reference. One of the properties of this
object is
allowed values for the property. For VBScript, the constant is
LayerKind. Click the link to view the values you can use to define the kind property.
N
OTE: Different objects can use the same property name with different constant values. The constant
values for the
object’s
Kind( kind). The value type for that property contains a link to the constant that define the
PSLayerKind, for JavaScript, the constant is
Channel object’s kind property are different than the constant values for the Art Layer
kind property.
CHAPTER 2: Photoshop Scripting BasicsCreating a sample Hello World script 17
Application
Document
Art Layer
Text Item
Creating a sample Hello World script
This section demonstrates a very simple script in each of the three scripting languages for Photoshop.
Traditionally, the first thing to accomplish in any programming environment is the display of a "Hello
World" message.
Our Hello World scripts will do the following:
1.Open the Photoshop application.
2.Create a new
When we create the document, we will also create a variable named
reference to the document as the value of
Document object.
docRef and then assign a
docRef. The document will be 4 inches wide and 2 inches
high.
3.Create an
In our script, we will create a variable named
Art Layer object as the value of artLayerRef.
4.Define
Art Layer object.
artLayerRef and then assign a reference to the
artLayerRef as a text item.
5.Set the contents of the text item to "Hello World".
N
OTE: We will also include comments throughout the scripts. In fact, because this is our first script, we will
use comments to excess.
These steps mirror a specific path in the containment hierarchy, as illustrated below.
CHAPTER 2: Photoshop Scripting BasicsCreating a sample Hello World script 18
Creating and running an AppleScript
You must open the Apple® Script Editor application in order to complete this procedure.
N
OTE: The default location for the Script Editor is Applications > AppleScript > Script Editor.
To create and run your first Photoshop AppleScript:
1.Enter the following script in the Script Editor:
N
OTE: The lines preceded by “--” are comments. Entering the comments is optional.
-- Sample script to create a new text item and
-- change its contents.
--target Photoshop CC 2014
tell application "Adobe Photoshop CC 2014"
-- Create a new document and art layer.
set docRef to make new document with properties ¬
{width:4 as inches, height:2 as inches}
set artLayerRef to make new art layer in docRef
-- Change the art layer to be a text layer.
set kind of artLayerRef to text layer
-- Get a reference to the text object and set its contents.
set contents of text object of artLayerRef to "Hello, World"
end tell
2.Click Run to run the script. Photoshop creates a new document, adds a new layer, changes the layer’s
type to text and sets the text to “Hello, World”
NOTE: If you encounter errors, refer to Introduction to Scripting, which has a section on AppleScript
debugging.
CHAPTER 2: Photoshop Scripting BasicsCreating a sample Hello World script 19
Creating and running a VBScript
Follow these steps to create and run a VBScript that displays the text Hello World! in a Photoshop
document.
To create and run your first Photoshop VBScript:
1.Type the following script into a script or text editor.
N
OTE: Entering comments is optional.
Dim appRef
Set appRef = CreateObject( "Photoshop.Application" )
' Remember current unit settings and then set units to
' the value expected by this script
Dim originalRulerUnits
originalRulerUnits = appRef.Preferences.RulerUnits
appRef.Preferences.RulerUnits = 2
' Create a new 2x4 inch document and assign it to a variable.
Dim docRef
Dim artLayerRef
Dim textItemRef
Set docRef = appRef.Documents.Add(2, 4)
' Create a new art layer containing text
Set artLayerRef = docRef.ArtLayers.Add
artLayerRef.Kind = 2
' Set the contents of the text layer.
Set textItemRef = artLayerRef.TextItem
textItemRef.Contents = "Hello, World!"
' Restore unit setting
appRef.Preferences.RulerUnits = originalRulerUnits
2.Save file as a text file with a .vbs file name extension.
3.Double-click the file in Windows Explorer to run the script.
The script opens Photoshop.
Creating and running a JavaScript
Follow these steps to create and run a JavaScript that displays the text Hello World! in a Photoshop
document.
Because you will be actually using Photoshop to run your JavaScripts, it is not necessary to include code
that opens Photoshop at the beginning of the script.
NOTE: Adobe has created the Extend Script scripting language to augment JavaScript for use with
Photoshop. You can use the Extend Script command
create the ability to open JavaScripts that manipulate Photoshop from anywhere in your file system. See
the “Script UI” chapter of the JavaScript Tools Guide for more information.
#target to target the Photoshop application and
CHAPTER 2: Photoshop Scripting BasicsCreating a sample Hello World script 20
To create and run your first Photoshop JavaScript:
1.Type the following script.
N
OTE: Entering comments is optional.
// Hello Word Script
// Remember current unit settings and then set units to
// the value expected by this script
var originalUnit = preferences.rulerUnits
preferences.rulerUnits = Units.INCHES
// Create a new 2x4 inch document and assign it to a variable
var docRef = app.documents.add( 2, 4 )
// Create a new art layer containing text
var artLayerRef = docRef.artLayers.add()
artLayerRef.kind = LayerKind.TEXT
// Set the contents of the text layer.
var textItemRef = artLayerRef.textItem
textItemRef.contents = "Hello, World"
// Restore original ruler unit setting
app.preferences.rulerUnits = originalUnit
2.Save file as a text file with a .jsx file name extension in the Presets/Scripts folder in your Adobe
Photoshop CC 2014 directory.
NOTE: You must place your JavaScripts in the Presets/Scripts folder in order to make the scripts
accessible from the File > Scripts menu in Photoshop. The scripts do not appear on the File > Scripts
menu until you restart the application.
OTE: Photoshop also supports JavaScript files that use a .js extension.
N
3.Do either of the following:
➣ If Photoshop is already open, choose File > Scripts > Browse, and then navigate to the Presets >
Scripts folder and choose your script.
➣ Start or restart Photoshop, and then choose File > Scripts, and then select your script from the
Scripts menu.
3
Scripting Photoshop
This chapter demonstrates several techniques for using the Photoshop Document Object Model (DOM) to
create scripts to use specifically with Photoshop.
You will also learn how to use the reference manuals and object model browsers to find information about
the objects, classes, properties, commands, and even some values (called constants or enumerations) you
can use to create AppleScripts, VBScript scripts, and JavaScripts for Photoshop.
IP: Throughout this chapter, the explanation of how to create a script is followed by instructions for
T
locating information about the specific elements used in the script. Using these instructions will help you
quickly understand how to script Photoshop.
Viewing Photoshop Objects, Commands, and Methods
The Photoshop reference material for each of the three scripting languages is found in the reference
manuals provided in this installation:
➤ Adobe Photoshop CC 2014 AppleScript Scripting Reference
➤ Adobe Photoshop CC 2014 Visual Basic Scripting Reference
➤ Adobe Photoshop CC 2014 JavaScript Scripting Reference
In addition, you can also access reference material by using the associated object model browser for each
language:
➤ For AppleScript, use the AppleScript Script Editor to view the Photoshop AppleScript Dictionary.
➤ For VBScript, use the VBA editor in Microsoft Word, or the Visual Basic Object Browser in Visual Basic, or
Visual Studio.
➤ For JavaScript, use the ExtendScript Object Model Viewer. See the JavaScript Tools Guide for more
information.
Viewing Photoshop’s AppleScript dictionary
You use Apple’s Script Editor application to view the dictionary.
N
OTE: The default location for the Script Editor is Applications > AppleScript > Script Editor.
To view the AppleScript dictionary:
1.In Script Editor, choose File > Open Dictionary.
Script Editor displays an Open Dictionary dialog.
2.Choose Adobe Photoshop CC, and then click Open.
Script Editor opens Photoshop and then displays the Photoshop dictionary, which lists objects as well
as the commands, properties and elements associated with each object. The dictionary also lists the
parameters for each command.
21
CHAPTER 3: Scripting PhotoshopTargeting and Referencing the Application Object 22
NOTE: The Photoshop AppleScript Dictionary does not display the complete list of open and save formats.
Viewing Photoshop’s type library (VBS)
You can use the VBA editor in Microsoft Word to display the objects and commands available for VBScript
in Photoshop.
To view the VBS object library in Microsoft Word:
1.Start Word, and then choose Tools > Macro > Visual Basic Editor.
2.Choose Tools > References, and then select the Adobe Photoshop Type Library check box and click OK.
3.Choose View > Object Browser.
4.Choose Photoshop CC type library from the list of open libraries shown in the top-left pull-down
menu.
5.Choose an object class to display more information abut the class.
You can also use the object browser in the Visual Basic development environment to display the objects
and commands available for VBScript in Photoshop.
To view the VBS object library in the Visual Basic development environment:
1.Start Visual Studio 2005, or Visual Basic.
2. Select View > Object Browser.
3.In the Browse drop-down box, select Edit Custom Component Set.
4.On the COM tab, find “Adobe Photoshop CC Object Library”. Select it.
5.Click Add. The selected library appears in the “Selected Projects and Components” portion of the
window.
6.Click OK.
7.Now the Photoshop Library is loaded into the object browser. Click on the plus sign next to the
Photoshop Library icon.
8.Click on the plus sign next to the Photoshop objects icon.
9.The objects defined in the Photoshop library are listed. You can select one to display more information
about the class.
Targeting and Referencing the Application Object
Because you run your AppleScript and VBScript scripts from outside the Photoshop application, the first
thing your script should do is indicate that the commands be executed in Photoshop.
OTE: In JavaScript, you do not need to target the Application object because you open the scripts from
N
the Photoshop application itself. (See “Creating and running a JavaScript” on page 19
.)
CHAPTER 3: Scripting PhotoshopCreating New Objects in a Script 23
ASTo target Photoshop in AppleScript, you must enclosing your script in the following statements:
tell application "Adobe Photoshop CC 2014"
...
end tell
NOTE: Because you include all commands in the tell block, there is no need to reference the
Application object throughout the script.
VBSIn VBScript, do the following to target the application:
Dim appRef
Set appRef = CreateObject("Photoshop.Application")
JSIn JavaScript, because you do not need to reference an Application object, all properties and methods of
the application are accessible without any qualification. You can reference the application as part of the
containment hierarchy or leave it out, whichever makes your scripts easier for you to read.
To reference the
Application object, use the pre-defined global object app, rather than the class name.
The following statements are equivalent:
var docRef = app.documents[1]
and
var docRef=documents[1]
NOTE: Many JavaScript samples throughout this guide do not reference the Application object.
Creating New Objects in a Script
To create a new document in the Photoshop application, you select File > New. To create other types of
objects within a document, such as a layer, channel, or path, you use the Window menu or choose the New
icon on the appropriate palette. This section demonstrates how to accomplish these same tasks in a script.
To create an object in a script, you name the type of object you want to create and then use the following
command:
➤ AS: make
VBS: Add
➤
JS: add()
➤
As you can see in the “Photoshop Object Model” on page 11, the Document object contains all other
objects except the
Document object when adding objects other than Document and Notifier objects to your script. (It is not
Application, Notifier, and Preferences objects. Therefore, you must reference the
possible to add a new Preferences object.)
N
OTE: In VBScript and JavaScript, you use the object’s collection name to name the object type. For
example, you add a document to the
Documents collection; you add an art layer to the art layers
collection. See Introduction to Scripting for more information on elements and collections.
CHAPTER 3: Scripting PhotoshopCreating New Objects in a Script 24
ASThe following statement creates a Document object in an AppleScript.
make new document
You can also use the set command to create a variable to hold a reference to a new document. In the
following example, the variable named
set docRef to make new document
docRef holds a reference to the new document:
To create an object other than a document, you must reference the Document object that contains the
object. The following sample creates an art layer in the document contained in the variable named
docRef.
make new art layer in docRef
NOTE: When you create object in AppleScript, you actually add the object to an element the same way you
add a VBScript or JavaScript object to a collection. However, in AppleScript, the element name is implied in
make or set statement. For example, the statement:
the
make new document
actually means:
make new document in the documents element
Do the following to find out more about creating objects in an AppleScript:
➤ Look up the make and set commands in the Adobe Photoshop CC 2014 AppleScript Scripting Reference
or in the Photoshop AppleScript Dictionary. See “Viewing Photoshop’s AppleScript dictionary” on
page 21.
➤ To find out which commands can be used with an object, look up the object in the Adobe Photoshop
CC 2014 AppleScript Scripting Reference. If an object has valid commands, there will be a “Valid
Commands” list at the end of the object description.
VBSIn VBScript, you can use the
objects other than collection objects. Also, in VBScript, you must reference the
creating when creating, or referring to, an object in your script.
For example, to create a document in a VBScript script, you cannot use the object name, as in the following
sample, which creates a
appRef.Document.Add()
Document object:
You must use the collection name, which is a plural form of the object name, as follows:
appRef.Documents.Add()
NOTE: In this sample statement, the Application object is referenced via a variable named appRef. See
“Targeting and Referencing the Application Object” on page 22
To add an
ArtLayer object, you must reference both the Application and Document objects that will
contain the art layer. The following sample references the
and the
Document object using the document’s index rather than the documents name.
Add method only with the collection name. The Add method is not valid with
Application object when
for more information.
Application object using the variable appRef
appRef.Documents(1).ArtLayers.Add()
NOTE: In Photoshop, VBScript collections index from 1 rather than 0. That is to say, the first document
created has index 1, rather than index 0.
CHAPTER 3: Scripting PhotoshopSetting the Active Object 25
If you look up in the Document object in the Adobe Photoshop CC 2014 Visual Basic Scripting Reference or in
the Visual Basic Object Browser, you will see that there is no
Add() method is available for the Documents object. Similarly, the ArtLayer object does not have an
Add() method; the ArtLayers object does.
N
OTE: The Layers object is an exception because, although it is a collection object, it does not include an
Add() method. The Layers collection includes both ArtLayer and LayerSet objects, which are created
with the
the
Add method on either the ArtLayers or LayerSets collections. For more information, look up
Layers object in the Adobe Photoshop CC 2014 Visual Basic Scripting Reference.
Add() method for the object. However, the
JSIn JavaScript, you can use the
with objects other than collection objects.
Similar to VBScript, the JavaScript statement to create a document is:
documents.add()
and not:
document.add()
NOTE: You can include an Application object reference if you wish. The following statement is equivalent
to the previous sample:
app.documents.add()
To add an ArtLayer object, you must reference the Document object that contains the layer, and use the
add() method for the ArtLayers collection, using the artLayers property of Document.
documents[0].artLayers.add()
As with VBScript, the add() method is associated with the JavaScript Documents object but not with the
Document object. Similarly, the ArtLayer object does not have an add() method; the ArtLayers object
does.
NOTE: The Layers collection object does not include an add() method. For more information, look up the
Layers object in the Adobe Photoshop CC 2014 JavaScript Scripting Reference.
add() method only with the collection name. The add() method is not valid
Setting the Active Object
To work on a an object in the Photoshop application, you must make the object the front-most, or active
object. For example, to work in a layer, you must first bring the layer to the front.
In scripting, the same rule applies. If your script creates two or more documents, the commands and
methods in your script are executed on the active document. Therefore, to ensure that your commands are
acting on the correct document, it is good programming practice to designate the active document
before executing any commands or methods in the script.
To set an active object, do the following:
➤ In AppleScript, you use the current property of the parent object.
➤ In VBScript, you use the ActiveObject property of the parent object (such as ActiveDocument or
ActiveLayer).
➤ In JavaScript, you use the activeObject property of the parent object (such as activeDocument or
activeLayer).
CHAPTER 3: Scripting PhotoshopSetting the Active Object 26
NOTE: The parent object is the object that contains the specified object. For example, the application is the
parent of the document; a document is the parent of a layer, selection, or channel.
For example, if you look at the Application object in the Adobe Photoshop CC 2014 JavaScript Scripting Reference, or in the ExtendScript Object Model Viewer, you find one of its properties is
you look at the
Similarly, if you look at
the Photoshop AppleScript Dictionary, you find it has the property of
Document object, you will find activeLayer and activeHistoryState as properties.
application in the Adobe Photoshop CC 2014 AppleScript Scripting Reference, or in
current, and so on.
activeDocument; if
For sample scripts that set active objects, see the following sections.
➤ “Setting the active document” on page 26
➤ “Setting the active layer” on page 27
➤ “Setting the active channels” on page 28
Setting the active document
The following examples demonstrate how to set the active document.
AS
--create 2 documents
set docRef to make new document with properties ¬
{width:4 as inches, height:4 as inches}
set otherDocRef to make new document with properties ¬
{width:4 as inches, height:6 as inches}
--make docRef the active document
set current document to docRef
--here you would include command statements
--that perform actions on the active document. Then, you could
--make a different document the active document
--use the current document property of the application class to
--bring otherDocRef front-most as the new active document
set current document to otherDocRef
VBS'Create 2 documents
Set docRef = app.Documents.Add ( 4, 4)
Set otherDocRef = app.Documents.Add (4,6)
'make docRef the active document
Set app.ActiveDocument = docRef
'here you would include command statements
'that perform actions on the active document. Then, you could
'make a different document the active document
'use the ActiveDocument property of the Application object to
'bring otherDocRef front-most as the new active document
Set app.ActiveDocument = otherDocRef
CHAPTER 3: Scripting PhotoshopSetting the Active Object 27
JS// Create 2 documents
var docRef = app.documents.add( 4, 4)
var otherDocRef = app.documents.add (4,6)
//make docRef the active document
app.activeDocument = docRef
//here you would include command statements
//that perform actions on the active document. Then, you could
//make a different document the active document
//use the activeDocument property of the Application object to
//bring otherDocRef front-most as the new active document
app.activeDocument = otherDocRef
Setting the active layer
The following examples demonstrate how to use the current layer (ActiveLayer/activeLayer)
property of the
document itself must be the current document.
ASset current layer of current document to layer “Layer 1” of current document
NOTE: By default, Photoshop names the layers “Layer 1”, “Layer2”, etc.
Document object to set the active layer. In order to set the active layer for a document, the
VBS
JS
‘ This example assumes appRef and docRef have been previously defined and assigned
‘ to the application object and a document object that contains at least one layer.
appRef.ActiveDocument = docRef
docRef.ActiveLayer = docRef.Layers(1)
Look up the ActiveLayer property on the Document object in the Adobe Photoshop CC 2014 Visual Basic
Scripting Reference, or in the Visual Basic Object Browser.
OTE: You can also use the name of the layer to indicate which layer to use. By default, Photoshop names
N
the layers “Layer 1”, “Layer2”. See “Referencing ArtLayer objects” on page 38
// This example assumes docRef has been previously defined and assigned to a
// document object that contains at least one layer.
activeDocument = docRef
docRef.activeLayer = docRef.layers[0]
.
Look up the activeLayer property on the Document object in the Adobe Photoshop CC 2014 JavaScript Scripting Reference, or in the ExtendScript Object Model Viewer.
N
OTE: You can also use the name of the layer to indicate which layer to use. By default, Photoshop names
the layers “Layer 1”, “Layer2”. See “Referencing ArtLayer objects” on page 38
.
Loading...
+ 60 hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.