1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 00:49:33 +02:00
audacity/scripts/piped-work/docimages_all.py
James Crook 2088e44f03 Add docimages_oddments.py for the weirder cases.
This also adds an option NOT to bring Audacity to the top when screenshotting.
That's because QuickPlay will disappear if you do -because you lose mouse capture.

Also allow negative window IDs in the drag command.
2018-02-21 20:30:03 -05:00

17 lines
578 B
Python

# docimages_all.py
# Sends commands to get images for the manual.
# Execs all the docimage scripts.
# Make sure Audacity is running first and that mod-script-pipe is enabled
# before running this script.
exec( open("docimages_tracks.py" ).read() )
exec( open("docimages_labels.py" ).read() )
exec( open("docimages_spectro.py" ).read() )
exec( open("docimages_after.py" ).read() )
exec( open("docimages_envelopes.py" ).read() )
exec( open("docimages_cut_n_paste.py" ).read() )
exec( open("docimages_clip_boundaries.py" ).read() )
exec( open("docimages_oddments.py" ).read() )