- close() / quit()

Added functionality
- setlayervisibility()

Made SaveOptions into an enum for better readibility
This commit is contained in:
Unknown
2018-03-08 14:24:22 -05:00
parent 9cbf0e9b92
commit 17a7f8ccd1
8 changed files with 117 additions and 51 deletions

View File

@@ -2,7 +2,7 @@
Set appRef = CreateObject("Photoshop.Application")
Do While appRef.Documents.Count > 0
appRef.ActiveDocument.Close(wScript.Arguments(0))
appRef.ActiveDocument.Close(CInt(wScript.Arguments(0)))
Loop
appRef.Quit()