Hi,Adobe Livecycle ES2 V9Here's the code I'm currently using (postSave):var fileName = event.target.documentFileName;// at this point, fileName is (myForm.pdf), there's no file pathfileName = fileName.substring(0, fileName.indexOf("."));xfa.host.exportData("./" + fileName + ".xml", 0);Basically, whe...