Hi Experts,
Can anybody help me increating a data object from createDataObject from a text field's value. Text field contents is multiline.
These two simple lines are working great in acrobat console but not when under a livecycle click button event.
var cMyC = "sample string";
this.createDataObject("test.txt",cMyC);
Please suggest.
Regards
Arvind
Solved! Go to Solution.
Views
Replies
Total Likes
In LiveCycle Designer you have to replace this with event.target to use Acrobat scripting methods.
var cMyC = "sample string";
event.target.createDataObject("test.txt",cMyC);
Views
Replies
Total Likes
In LiveCycle Designer you have to replace this with event.target to use Acrobat scripting methods.
var cMyC = "sample string";
event.target.createDataObject("test.txt",cMyC);
Views
Replies
Total Likes
Thanks radzmar,
It works like a charm, it was a small and stupid mistake from me.
Can you please tell me how to open a attachment with opendataobject.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies