I have a macro with around 10 lines. But i want other similar but changing some params and some lines.
Now i have to create from scratch the macro X times to get the variations i need.
There is add/remove/rename... will be great some duplicate button, so if you have a "Phaser Macro" and you set duplicate it creates another with same content with "Phaser Macro 2" name or similar.
So i can press duplicate 4-5 times and edit change only the things i need instead of create the macro and build again and again.
Or maybe there is antoher workaround i'm missing ¿?
Is there any way to duplicate Macros for small changes?
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Re: Is there any way to duplicate Macros for small changes?
This is something that the developer intends to improve. Managing Macros is rather clunky at the moment, but there is a workaround.
Tools:
You will need a "plain text editor". Don't use Microsoft NotePad / WordPad / Word because they will mangle the text. I'd recommend NotePad++ which is a very good plain text editor, and is free and open source: https://notepad-plus-plus.org/
Macros are saved a plain text files, and can be found in the hidden folder:
C:\Users\<your user name>\AppData\Roaming\audacity\Macros\
You will notice that the "code" versions of the Macro commands are a bit different from the "display" names that appear in the Macro editor. All of the command names in the code are single words followed by a colon, followed by the command arguments. The reference documentation is in the manual here: https://manual.audacityteam.org/man/scr ... rence.html
Tools:
You will need a "plain text editor". Don't use Microsoft NotePad / WordPad / Word because they will mangle the text. I'd recommend NotePad++ which is a very good plain text editor, and is free and open source: https://notepad-plus-plus.org/
Macros are saved a plain text files, and can be found in the hidden folder:
C:\Users\<your user name>\AppData\Roaming\audacity\Macros\
You will notice that the "code" versions of the Macro commands are a bit different from the "display" names that appear in the Macro editor. All of the command names in the code are single words followed by a colon, followed by the command arguments. The reference documentation is in the manual here: https://manual.audacityteam.org/man/scr ... rence.html
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Is there any way to duplicate Macros for small changes?
Thanks that works for me. I can clone the .txt files as macro1,2,3,4,5.... and then on audacity do the changes for each one without do them from scratch, this will be a huge time saver for optimize and creating more macros.