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

8
scripts/quit.vbs Normal file
View File

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