Avatar

Level 4

You'd have to loop over all of them.  If you try doing a NF[*].fillColor, that will only set the first one I believe, so you'll have to do:

var totalNF = NF[*].length;

for(var i=0; i<totalNF; i++){

      NF[i].fillColor = blah blah blah

}