Set a macro run forever?

I set it to make a macro run forever and it had worked perfectly until I updated the OS to Sierra. I'm not sure this causes the problem but I want to try other ways. If there's another way to get a macro to run forever, please let me know.

Kyu

If you want a loop to run forever, just use a While calculation “1” action.

As a general rule, you are better off not having macros that run forever though, for a variety of reasons:

  • If the macro stops for any reason, it wont be restarted.
  • If the macro is started multiple times, you’ll have multiple instances of it running.

Better if to have a periodically triggered macro that does whatever you want.

But since you haven’t specified what is inside the loop, it is hard to know for sure what to recommend.