reorganized

This commit is contained in:
Unknown
2018-02-04 23:18:47 -05:00
parent 645c6ef3aa
commit 101437ead3
11 changed files with 113 additions and 10 deletions

9
scripts/open.vbs Normal file
View File

@@ -0,0 +1,9 @@
' Open photoshop.
Set app = CreateObject("Photoshop.Application")
if WScript.Arguments.Count = 0 then
WScript.Echo "Missing parameters"
else
path = wScript.Arguments(0)
Set doc = app.Open(path)
wScript.echo doc.Name
end if