Hey! I figured it out!
Here's what I came up with for the "No" Checkbox on the Acrobat Form:
var CollectionTotal = this.getField("CollectionTotal")
function resetField(name,value)
{
CollectionTotal.value = value;}
if (event.target.value == "No")
{
CollectionTotal.hidden = true
&& resetField('CollectionTotal','0.0')
}
else {
CollectionTotal.hidden = false
}
Thanks for your time and effort!!
Best,
TrinityAvatar