> On 5 Mar 2021, at 11:16, Christiaan Hofman <cmhof...@gmail.com> wrote:
> 
> 
> 
>> On 5 Mar 2021, at 09:27, Peter Olin <peter.o...@gmail.com 
>> <mailto:peter.o...@gmail.com>> wrote:
>> 
>> Dear users and experts,
>> 
>> I have searched "everywhere" to the best of my ability, but have not found 
>> anywhere whether there is a way to save all unsaved open files in Skim.
>> 
>> When quitting or closing all files, there is a sequence of confirmation 
>> dialogs for each unsaved file, where I as a user can decide to Save or Don't 
>> save (or Cancel) for each modified file. This is pretty convenient.
>> 
>> Is there a way to preemptively, or whenever I just feel like it, manually 
>> save all changes, similar to the sequence  initiated by a Quit or Close all 
>> files, and preferably defaulting to "save", without opening the dialogs 
>> prompting for Cancel/Don't save options?
>> 
>> -- 
>> —
>> Kind regards,
>> Peter Olin
> 
> 
> No, a Save All function does not exist. Note that the various save functions 
> are system standards.
> 
> Christiaan
> 


A way you could implement this yourself is add an AppleScript to the menu top 
to this. See the Wiki for details about adding script actions to the menu. This 
AppleScript would do it:

tell application “Skim”
    repeat with aDocument in documents
        save aDocument
    end tell
end tell

Christiaan

_______________________________________________
Skim-app-users mailing list
Skim-app-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/skim-app-users

Reply via email to