-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.js
More file actions
310 lines (277 loc) · 29.9 KB
/
test.js
File metadata and controls
310 lines (277 loc) · 29.9 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
var dialogs = app.displayDialogs;
app.displayDialogs = DialogModes.NO;
var startRulerUnits = app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS;
var addControl = require('./lib/addControl.js');
var alignLayer = require('./lib/alignLayer.js');
var beholder = require('./lib/beholder.js');
var getExtension = require('./lib/getExtension.js');
var getFilesByExtension = require('./lib/getFilesByExtension.js');
var getFolders = require('./lib/getFolders.js');
var linkLayerWithMask = require('./lib/linkLayerWithMask.js');
var placeFile = require('./lib/placeFile.js');
var replaceContent = require('./lib/replaceContent.js');
var resizeDocument = require('./lib/resizeDocument.js');
var setDocumentResolution = require('./lib/setDocumentResolution.js');
var setLayerMaskFromSelection = require('./lib/setLayerMaskFromSelection.js');
var setSelectionByLayer = require('./lib/setSelectionByLayer.js');
var transferLayerStyle = require('./lib/transferLayerStyle.js');
var root = (new File($.fileName)).parent.parent;
//alert(root);
var template = new File(root + '/test/template.tif')
var photo = new File(root + '/test/watch.jpg')
app.open(template);
var doc = app.activeDocument;
doc.suspendHistory("testing ps-script-tools", "main();");
//app.activeDocument.activeLayer = layer;
function main() {
replaceContent(photo, doc.layers.getByName('t1'), { method: 'conform', horizontal: 'right', vertical: 'top', revealAll: true });
replaceContent(photo, doc.layers.getByName('t2'), { method: 'conform', horizontal: 'center', vertical: 'top', revealAll: true });
replaceContent(photo, doc.layers.getByName('t3'), { method: 'conform', horizontal: 'left', vertical: 'top', revealAll: true });
replaceContent(photo, doc.layers.getByName('t4'), { method: 'conform', horizontal: 'right', vertical: 'center', revealAll: true });
replaceContent(photo, doc.layers.getByName('t5'), { method: 'conform', horizontal: 'left', vertical: 'center', revealAll: true });
replaceContent(photo, doc.layers.getByName('t6'), { method: 'conform', horizontal: 'right', vertical: 'bottom', revealAll: true });
replaceContent(photo, doc.layers.getByName('t7'), { method: 'conform', horizontal: 'center', vertical: 'bottom', revealAll: true });
replaceContent(photo, doc.layers.getByName('t8'), { method: 'conform', horizontal: 'left', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t1'), { method: 'as is', horizontal: 'right', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t2'), { method: 'as is', horizontal: 'center', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t3'), { method: 'as is', horizontal: 'left', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t4'), { method: 'as is', horizontal: 'right', vertical: 'center', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t5'), { method: 'as is', horizontal: 'left', vertical: 'center', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t6'), { method: 'as is', horizontal: 'right', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t7'), { method: 'as is', horizontal: 'center', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t8'), { method: 'as is', horizontal: 'left', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t1'), { method: 'fit', horizontal: 'right', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t2'), { method: 'fit', horizontal: 'center', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t3'), { method: 'fit', horizontal: 'left', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t4'), { method: 'fit', horizontal: 'right', vertical: 'center', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t5'), { method: 'fit', horizontal: 'left', vertical: 'center', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t6'), { method: 'fit', horizontal: 'right', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t7'), { method: 'fit', horizontal: 'center', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t8'), { method: 'fit', horizontal: 'left', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t1'), { method: 'fill', horizontal: 'right', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t2'), { method: 'fill', horizontal: 'center', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t3'), { method: 'fill', horizontal: 'left', vertical: 'top', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t4'), { method: 'fill', horizontal: 'right', vertical: 'center', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t5'), { method: 'fill', horizontal: 'left', vertical: 'center', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t6'), { method: 'fill', horizontal: 'right', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t7'), { method: 'fill', horizontal: 'center', vertical: 'bottom', revealAll: true });
// replaceContent(photo, doc.layers.getByName('t8'), { method: 'fill', horizontal: 'left', vertical: 'bottom', revealAll: true });
//===================================================================================
// replaceContent(photo, doc.layers.getByName('t1'), { method: 'conform', horizontal: 'right', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t2'), { method: 'conform', horizontal: 'center', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t3'), { method: 'conform', horizontal: 'left', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t4'), { method: 'conform', horizontal: 'right', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t5'), { method: 'conform', horizontal: 'left', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t6'), { method: 'conform', horizontal: 'right', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t7'), { method: 'conform', horizontal: 'center', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t8'), { method: 'conform', horizontal: 'left', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t1'), { method: 'as is', horizontal: 'right', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t2'), { method: 'as is', horizontal: 'center', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t3'), { method: 'as is', horizontal: 'left', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t4'), { method: 'as is', horizontal: 'right', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t5'), { method: 'as is', horizontal: 'left', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t6'), { method: 'as is', horizontal: 'right', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t7'), { method: 'as is', horizontal: 'center', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t8'), { method: 'as is', horizontal: 'left', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t1'), { method: 'fit', horizontal: 'right', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t2'), { method: 'fit', horizontal: 'center', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t3'), { method: 'fit', horizontal: 'left', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t4'), { method: 'fit', horizontal: 'right', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t5'), { method: 'fit', horizontal: 'left', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t6'), { method: 'fit', horizontal: 'right', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t7'), { method: 'fit', horizontal: 'center', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t8'), { method: 'fit', horizontal: 'left', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t1'), { method: 'fill', horizontal: 'right', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t2'), { method: 'fill', horizontal: 'center', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t3'), { method: 'fill', horizontal: 'left', vertical: 'top', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t4'), { method: 'fill', horizontal: 'right', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t5'), { method: 'fill', horizontal: 'left', vertical: 'center', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t6'), { method: 'fill', horizontal: 'right', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t7'), { method: 'fill', horizontal: 'center', vertical: 'bottom', revealAll: false });
// replaceContent(photo, doc.layers.getByName('t8'), { method: 'fill', horizontal: 'left', vertical: 'bottom', revealAll: false });
// ============================== PLACE
/*
placeFile(photo, undefined, { method: 'conform', horizontal: 'left', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'center', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'right', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'left', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'center', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'right', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'left', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'center', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'right', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'conform', horizontal: 'left', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'center', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'right', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'left', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'center', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'right', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'left', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'center', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'conform', horizontal: 'right', vertical: 'bottom', linked: false });
*/
/*
placeFile(photo, undefined, { method: 'as is', horizontal: 'left', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'center', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'right', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'left', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'center', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'right', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'left', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'center', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'right', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'as is', horizontal: 'left', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'center', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'right', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'left', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'center', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'right', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'left', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'center', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'as is', horizontal: 'right', vertical: 'bottom', linked: false });
*/
/*
placeFile(photo, undefined, { method: 'fit', horizontal: 'left', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'center', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'right', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'left', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'center', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'right', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'left', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'center', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'right', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'fit', horizontal: 'left', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'center', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'right', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'left', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'center', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'right', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'left', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'center', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'fit', horizontal: 'right', vertical: 'bottom', linked: false });
*/
/*
placeFile(photo, undefined, { method: 'fill', horizontal: 'left', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'center', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'right', vertical: 'top', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'left', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'center', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'right', vertical: 'center', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'left', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'center', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'right', vertical: 'bottom', linked: true });
placeFile(photo, undefined, { method: 'fill', horizontal: 'left', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'center', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'right', vertical: 'top', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'left', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'center', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'right', vertical: 'center', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'left', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'center', vertical: 'bottom', linked: false });
placeFile(photo, undefined, { method: 'fill', horizontal: 'right', vertical: 'bottom', linked: false });
*/
/*placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'left', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'center', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'right', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'left', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'center', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'right', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'left', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'center', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'right', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'left', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'center', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'right', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'left', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'center', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'right', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'left', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'center', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'conform', horizontal: 'right', vertical: 'bottom', copyLayerStyle: false });
*/
/*
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'left', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'center', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'right', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'left', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'center', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'right', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'left', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'center', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'right', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'left', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'center', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'right', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'left', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'center', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'right', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'left', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'center', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'as is', horizontal: 'right', vertical: 'bottom', copyLayerStyle: false });
*/
/*
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'left', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'center', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'right', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'left', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'center', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'right', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'left', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'center', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'right', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'left', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'center', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'right', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'left', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'center', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'right', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'left', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'center', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test1'), { method: 'fill', horizontal: 'right', vertical: 'bottom', copyLayerStyle: false });
*/
/*placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'left', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'center', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'right', vertical: 'top', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'left', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'center', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'right', vertical: 'center', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'left', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'center', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'right', vertical: 'bottom', copyLayerStyle: true });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'left', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'center', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'right', vertical: 'top', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'left', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'center', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'right', vertical: 'center', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'left', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'center', vertical: 'bottom', copyLayerStyle: false });
placeFile(photo, doc.layers.getByName('test3'), { method: 'fit', horizontal: 'right', vertical: 'bottom', copyLayerStyle: false });*/
/*
placeFile(photo, doc.layers.getByName('test1'), { method: '', horizontal: '', vertical: '', copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
placeFile(photo, doc.layers.getByName(''), { method: '', horizontal: '', vertical: '', linked: , copyLayerStyle: });
*/
}
app.displayDialogs = dialogs;
app.preferences.rulerUnits = startRulerUnits;