OverviewExamples
-- This example assumes the sample XML is already loaded into memory.
-- Saves the currently loaded XML to a file in the user's temp folder.
XML.Save(_TempFolder.."\\Sample_XML_Save.xml");
-- Check to see if any errors occurred.
error = Application.GetLastError();
if (error ~= 0) then
Dialog.Message("Error", _tblErrorMessages[error]);
end
Saves the currently loaded XML to a file in the user's temp folder.
See also: Related Actions