Thanks Florian!
I looked at the BMT manual and you had a great write up on how to set up a single startup preset and translator. And then a separate init preset with a set of translators to run on enable. Actually, I didn't need to restart the project itself but to do a new initialization of the project. I plan on using this but it is good to do you can do a complete project restart as well.
For others, there is an excellent write-up no page 83 of the latest
BMT user manual. As my project grows, I'm going to spend more time enabling and disabling presets to keep the number of translators running to just what is needed. I'm not seeing any performance issues yet, however I want to stave them off before my programming practice gets me in trouble.
There are also many tips in the BMT manual around these lines.
I'm also starting to get a handle on how to do logic with AND, IF logic which is missing in BMT. As a few simple examples:
(hopefully I got them right)
IE if pp==2 AND qq==3 then oo=7 else oo=4
if pp==2 then oo= 4
if qq!= 3 then skip next rule
oo=7
IE if pp==2 OR qq==3 then oo=7 else oo=4
if pp==2 then oo=7
if qq==3 then skip next rule
oo=4