Page 1 of 1

Is there any way to duplicate Macros for small changes?

Posted: Wed Aug 28, 2019 7:09 am
by Matriax
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 ¿?

Re: Is there any way to duplicate Macros for small changes?

Posted: Wed Aug 28, 2019 8:27 am
by steve
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

Re: Is there any way to duplicate Macros for small changes?

Posted: Wed Aug 28, 2019 10:11 am
by Matriax
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.