Adobe 23102480 Scripting Guide - Page 59

Setting Ruler and Type Units in a Script, Sample Workflow Automation JavaScripts

Page 59 highlights

Adobe Photoshop CS3 Scripting Guide Photoshop CS3 Scripting Photoshop CS3 59 AppleScript translate (delta x, delta y) translate boundary (delta x, delta y) VBScript JavaScript (Continued) Selection.Translate (DeltaX, DeltaY) selection.translate (deltaX, deltaY) Selection.TranslateBoun dary (DeltaX, DeltaY) selection.translateBou ndary (deltaX, deltaY) Setting Ruler and Type Units in a Script The unit type settings of the two Photoshop CS3 rulers control how numbers are interpreted when dealing with properties and parameters that support unit values. Be sure to set the ruler units as needed at the beginning of your scripts and save and restore the original ruler settings when your script has completed. AS In AppleScript ruler units and type units are properties of the settings-object, accessed through the Application object's settings property as shown below. set ruler units of settings to inch units set type units of settings to pixel units set point size of settings to postscript size VBS In VBScript RulerUnits and TypeUnits are properties of the Preferences object, accessed through the Application object's Preferences property as shown below. appRef.Preferences.RulerUnits = 2 'for PsUnits --> 1 (psInches) appRef.Preferences.TypeUnits = 1 'for PsTypeUnits --> 1 (psPixels) appRef.Preferences.PointSize = 2 '2 indicates psPointType --> 2 (PsPostScriptPoints) JS In JavaScript rulerUnits and typeUnits are properties of the Preferences object, accessed through the Application object's preferences property as shown below. app.preferences.rulerUnits = Units.INCHES app.preferences.typeUnits = TypeUnits.PIXELS app.preferences.pointSize = PointType.POSTSCRIPT Note: Remember to reset the unit settings back to the original values at the end of a script. See 'Working with Document Preferences' on page 60 for an example of how to do this. Sample Workflow Automation JavaScripts The following sample workflow automation JavaScripts are provided with Photoshop CS3 and demonstrate various kinds of scripting usage. The scripts are located in the Presets/Scripts folder in your application directory. See Creating and Running a JavaScript for information on the Presets/Scripts folder.

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85

Photoshop CS3
Adobe Photoshop CS3
Scripting Guide
Scripting Photoshop CS3
59
Setting Ruler and Type Units in a Script
The unit type settings of the two Photoshop CS3 rulers control how numbers are interpreted when dealing
with properties and parameters that support unit values. Be sure to set the ruler units as needed at the
beginning of your scripts and save and restore the original ruler settings when your script has completed.
AS
In AppleScript
ruler units
and
type units
are properties of the
settings-object
, accessed through
the Application object's
settings
property as shown below.
set ruler units of settings to inch units
set type units of settings to pixel units
set point size of settings to postscript size
VBS
In VBScript
RulerUnits
and
TypeUnits
are properties of the
Preferences
object, accessed through the
Application
object's
Preferences
property as shown below.
appRef.Preferences.RulerUnits = 2 'for PsUnits --> 1 (psInches)
appRef.Preferences.TypeUnits = 1 'for PsTypeUnits --> 1 (psPixels)
appRef.Preferences.PointSize = 2
'2 indicates psPointType --> 2 (PsPostScriptPoints)
JS
In JavaScript
rulerUnits
and
typeUnits
are properties of the
Preferences
object, accessed through
the
Application
object's
preferences
property as shown below.
app.preferences.rulerUnits = Units.INCHES
app.preferences.typeUnits = TypeUnits.PIXELS
app.preferences.pointSize = PointType.POSTSCRIPT
Note:
Remember to reset the unit settings back to the original values at the end of a script. See
‘Working
with Document Preferences’ on page 60
for an example of how to do this.
Sample Workflow Automation JavaScripts
The following sample workflow automation JavaScripts are provided with Photoshop CS3 and
demonstrate various kinds of scripting usage. The scripts are located in the
Presets/Scripts
folder in
your application directory. See
Creating and Running a JavaScript
for information on the
Presets/Scripts
folder.
translate
(delta x, delta y)
Selection.Translate
(DeltaX, DeltaY)
selection.translate
(deltaX, deltaY)
translate boundary
(delta x, delta y)
Selection.TranslateBoun
dary
(DeltaX, DeltaY)
selection.translateBou
ndary
(deltaX, deltaY)
AppleScript
VBScript
JavaScript
(Continued)