Smith seems to have trouble with
Code:
for(i ; i LT endStr; i=i+1){
and
Code:
for (fb_.aCircuitin fb_.application.fusebox.circuits) {
I found a work around for this by changing it to
Code:
for (circuit in fb_.application.fusebox.circuits) {
fb_.aCircuit = circuit;
Any ideas how to fix these issues?