Adobe 23101335 Scripting Guide - Page 82

Copy merged, 3.16.3 Cut, In VB and JS, pass

Page 82 highlights

Scripting Photoshop 3 Clipboard interaction 3.16.2 Copy merged You can also perform a merged copy. This will make a copy of all visible layers in the selected area. In AppleScript, use the copy merged command. AS: activate select all of current document copy merged selection of current document In VB and JS, pass true for the Merged parameter of the Copy methods. VB: docRef.Selection.Copy True JS: docRef.selection.copy(true); 3.16.3 Cut The Cut command operates on both art layers and selections, so you can cut an entire art layer or only the selection of a visible layer. The Cut method follows the same rules as the copy command. AS: activate cut selection of current layer of current document VB: docRef.Selection.Cut JS: docRef.selection.cut(); Photoshop 7.0 Scripting Guide 82

  • 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
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91

Photoshop 7.0 Scripting Guide
82
Scripting Photoshop
Clipboard interaction
3
3.16.2 Copy merged
You can also perform a merged copy. This will make a copy of all visible layers in the selected
area.
In AppleScript, use the copy merged command.
AS:
activate
select all of current document
copy merged selection of current document
In VB and JS, pass
true
for the Merged parameter of the Copy methods.
VB:
docRef.Selection.Copy True
JS:
docRef.selection.copy(true);
3.16.3 Cut
The Cut command operates on both art layers and selections, so you can cut an entire art layer
or only the selection of a visible layer. The Cut method follows the same rules as the copy
command.
AS:
activate
cut selection of current layer of current document
VB:
docRef.Selection.Cut
JS:
docRef.selection.cut();