Is it possible to execute AFL code during action actionExEditVerifyFormula? The trace statement below never appears in the log. This snippet of code is trying to remove all static variables to prevent unwanted side-effects.
actionEx = Status("ActionEx");
if (actionEx == actionExEditVerifyFormula)
{
StaticVarRemove("*");
_Trace("actionExEditVerifyFormula");
}