|
RobMacAF Apprentice
Joined: 09 Jun 2002 Posts: 186 Location: USA
|
Posted: Sun Jul 13, 2003 7:57 pm
Trigger + |
Why is there sometimes alot of triggers in my trigger list that all say + and they all do #STEP. One time I had over 16 of them in there.
|
|
|
|
TonDiening GURU
Joined: 26 Jul 2001 Posts: 1958 Location: Canada
|
Posted: Sun Jul 13, 2003 8:11 pm |
Sounds like something you have creating triggers (#TEMP?) is not formatted properly. Find it and put braces {} around elements of the trigger.
Perhaps you have something like
#VAR A_Variable {something +}
#TEMP @A_Variable {#STEP}
creates a temporary trigger with id:something with pattern of + and value of #STEP
Perhaps you are creating that #STEP trigger and the variable holding the delay time is undefined or something.
#VAR TimeDelay {}
#TEMP +@TimeDelay {#STEP} |
|
|
|
|
|