False flags are very problematic for my setup in only one direction (less of an issue if the macro DOESN'T run when it should, HUGE issue if it runs when it shouldn't). The last few times I observed this crazy flag behavior, ALL of the flags turned ON. (I have never observed them all turning OFF unexpectedly). I decided to *TRY* and create a fail-safe for my three flag-dependent macros, at least until a fix can be found.
For each of my trigger flags (2,3,4), I modified the condition to include TWO other flags that need to be OFF for the condition to be valid.
For example:
If [FLAG 2 is ON] AND [FLAGS 10,11 are OFF]
This way, if I intended to have Flag 2 on, and the flags go crazy, my macro won't run, but if I intended to have it off, it also won't run, since flags 10 and 11 would have come on when 2 was set to ON by whatever is causing the problem.
I really wish somebody could tell me why this is happening, and what I can do to fix it.