This commit is contained in:
Unknown
2018-03-18 20:50:58 -04:00
parent 17a7f8ccd1
commit 7725110e35
13 changed files with 411 additions and 112 deletions

6
scripts/moveLayer.jsx Normal file
View File

@@ -0,0 +1,6 @@
#include lib.js
var stdout = newFile(arguments[0]);
var lyr = eval(arguments[1]);
lyr.translate((Number)(arguments[2]), (Number)(arguments[3]));
stdout.writeln('{' + bounds(lyr) + '}')
stdout.close();