Inserts a unique id into the OFORM.
(function() { function generate () { let key = ''; const data = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' + 'abcdefghijklmnopqrstuvwxyz0123456789'; for (let i = 1; i <= 12; i++) { let index = Math.floor(Math.random() * data.length + 1); key += data.charAt(index); } return key; } const id = generate(); const oDocument = Api.GetDocument(); const oParagraph = Api.CreateParagraph(); oParagraph.AddText(id); oDocument.InsertContent([oParagraph], { "KeepTextOnly": true }); })();
Methods used: GetDocument, CreateParagraph, AddText, InsertContent