Page 1 of 1

How can I run a macro from another macro?

Posted: Jun 8th, ’24, 20:08
by frozen_x
Hello :)

I am currently attempting to run a macro using a macro alias for macro chaining, as certain commands cannot be executed in send mode.
The control click and similar options are only available in send mode, but switching to command mode disrupts it.
Is it possible to chain macros, such as calling one macro from another or having a third macro call the other two macros in sequence?

Cheers,
Frozen

Re: How can I run a macro from another macro?

Posted: Jun 9th, ’24, 05:59
by Marko
You can use “Insert another command” macro.

Re: How can I run a macro from another macro?

Posted: Jun 9th, ’24, 09:31
by frozen_x
That worked, thank you :)
One additional question would be, how can I separate new functions via new lines without it executing a next line(enter) for better visibility?
Currently I need to write everything like this:

%func1%%func2%%func3%%func4%

Instead of:

%func1%
%func2%
%func3%
%func4%

Re: How can I run a macro from another macro?

Posted: Jun 11th, ’24, 20:42
by Marko
You can’t do this, a new line is always sending a new line.

Re: How can I run a macro from another macro?

Posted: Jun 13th, ’24, 18:02
by frozen_x
ah ok, would be cool to see something in the future, that allows for multiline ordering :)