Reputation: 730
Is it possible to make a batch file save all open documents/things that can be saved? When I search it up on Google all it gives me is "How to save a batch of Photoshop", just if anyone knew :)
Thanks in advance!
Upvotes: 0
Views: 1162
Reputation: 57282
Presuming two things - unsaved files set the application title (with they are opened) asterisk at the front. Mass save combination is Ctrl-Shft-S
. Then you can use sendKeys.bat
like this:
call sendkeys.bat "*" "^+S"
Upvotes: 1