Is it possible to have EmEditor run multiple macros in sequence?

Asked 2 years ago, Updated 2 years ago, 104 views

If I want to do more than one process at a time with a macro, would it be possible to store the macro files separately into processes from the perspective of serviceability, and arrange the combinations side by side?

For example,

Specify the order of execution

US>Macro process 1.jsee
US>Macro process 2.jsee
US>Macro process 3.jsee
US>Macro Process 3.jsee

This is how to do it side by side.

If you make it into one macro, you have to make a combined macro into a file every time, and if you want to change the order or process, it takes a lot of time to create it again.

Thank you for your cooperation.

emeditor

2022-09-30 19:29

1 Answers

Run the following macros:

#include "Macro Process 1.jsee"
# include "Macro Process 2.jsee"
# include "Macro Process 3.jsee"
# include "Macro Process 3.jsee"


2022-09-30 19:29

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.