Files
ps/v2/runner/scripts/quit.vbs
2018-07-25 14:29:12 -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()