I'm trying to get this to work, but I just can't seem to get it. What I'm trying to do is that if the Score equals 3, then I want an X placed in the box. If it's anything other than a 3, then I want the box to be blank.
This is what I'm using, but it's not working.
var z = parseInt(this.getField("Score").value);
if (z = 3)
{ event.value = "X"; }
else {
event.value = "";
}