mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 00:49:33 +02:00
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.
17 lines
578 B
Python
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() )
|