gglick
April 8, 2018, 1:01am
2
I think @peternlewis 's reply in this thread probably applies to this question as well:
Enable/Disable macro is a very heavy handed action. It cause the macros to be changed, and reloaded in both the editor and the engine.
You generally do not want to use that for transient macros, you want to use activate/decativate Macro Group for things that are transient if at all possible.
Because the macros are reloaded by the engine, a lot of macro state is lost, and hot keys are unregistered and re-registered and such. I expect that is why you are running in to this sort of issue.
I'd suggest reading through that whole thread, but the tl;dr is that you should be using activate/deactivate for macro groups like this instead of enable/disable.
1 Like