if loop with many parameters (&& * 500)
i have a if loop to check some parameters :
var A0 = this.getField("Dropdown14.0").value
var A1 = this.getField("Dropdown14.1").value
var A2 = this.getField("Dropdown14.2").value
var A3 = this.getField("Dropdown14.3").value
var A4 = this.getField("Dropdown14.4").value
.
.
.
var A500 = this.getField("Dropdown14.500").value
if (num1!=0 && A0=="check" && A1!="check" && A2!="check"... A500!="check")
now the problem is A0 go to A500.....
the only solution is to write A0=="check" && A1!="check" && A2!="check"....
any smarter solution?
