[Tex/LaTex] extracting data from an interactive form

formspdf

I am currently creating a fillable PDF – Form for a survey (I know, there are more convenient ways…).
I wonder wether there is an option to make the participants' data available for further analysis, for example a button that creates an .xml – file with containing the relevant data. The often referred to 'submit' – Button does not serve my needs as my mail provider is not supporting IMAP.
Hope my question is concise enough.

Best Answer

It is not the Submit action, but you can set a (Acrobat) JavaScript action using

this.exportAsXFDF() ;

which would export a data file with field name/field value pairs, in XML format. XFDF is the XML representation of the PDF-native FDF, Forms Data Format.

Related Question