First upload

This commit is contained in:
Unknown
2018-02-04 22:48:52 -05:00
parent 2e2b659cfb
commit e3359307a9
11 changed files with 296 additions and 0 deletions

10
win/dojs.vbs Normal file
View File

@@ -0,0 +1,10 @@
Dim app
Set app = CreateObject("Photoshop.Application")
if WScript.Arguments.Count = 0 then
WScript.Echo "Missing parameters"
else
path = wScript.Arguments(0)
folder = wScript.Arguments(1)
app.DoJavaScriptFile path, Array(Folder)
end if