Hi Andrew,
You can try this javascript in the change event of the checkbox:
function setStrikeThrough (fldName, strikeSetting)
{
var strikeFld = xfa.resolveNode(fldName);
strikeFld.font.lineThrough = strikeSetting
}
if (checkboxField.rawValue == "checked")
{
setStrikeThrough ("textField1", "1");
setStrikeThrough ("textField2", "0");
}
else
{
setStrikeThrough ("textField1", "0");
setStrikeThrough ("textField2", "1");
}
Regards,
Chris Fourie
www.intelliform.co.za