mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
#include lib.js
|
|
alert(app.activeDocument.path)
|
|
var f = newFile(arguments[0]);
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
f.writeln(arguments[i]);
|
|
}
|
|
f.close(); |