Hi David et al.<br /><br />I think I am running into a similar problem. I have the following code linked to a button. inpu5, out, and out1 are text fields. Inpu5 is set to support Rich Text and has a default value of 'testhtml123':<br /><br />----------------------<br />out.rawValue = inpu5.value.saveXML();<br /><br />inpu5.value.loadXML( '<?xml version="1.0" encoding="UTF-8"?><value><exData contentType="text/html"><body xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xmlns="http://www.w3.org/1999/xhtml" xfa:APIVersion="2.2.4330.0"><p>testxhtml</p></body></exData></value>', 1, 1 );<br /><br />out1.rawValue = inpu5.value.saveXML();<br /><br />inpu5.presence = "visible"<br />----------------------<br /><br />So out shows the XML before the loadXML command, and 'out1' shows it after. It does indeed show the corresponding change, but the actual text field doesn't seem to update to change. Does anyone know how to refresh this text field so reflect the XML change? the presence field doesn't seem to do the trick...<br /><br />Thanks everyone,<br />- Dave<br /><br />P.S. I just noticed some of the XML doesn't show up right, but I don't know if that's necessary.