Files
ps/runner/scripts/quit.vbs
2018-07-25 15:20:00 -04:00

8 lines
182 B
Plaintext

' Close Photoshop
Set appRef = CreateObject("Photoshop.Application")
Do While appRef.Documents.Count > 0
appRef.ActiveDocument.Close(CInt(wScript.Arguments(0)))
Loop
appRef.Quit()