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

9
win/quit.vbs Normal file
View File

@@ -0,0 +1,9 @@
' Close Photoshop
Set appRef = CreateObject("Photoshop.Application")
wScript.echo appRef.Documents.Count
Do While appRef.Documents.Count > 0
appRef.ActiveDocument.Close(2)
Loop
appRef.Quit()