Link to home
Start Free TrialLog in
Avatar of Lucas
LucasFlag for Canada

asked on

Export pdf dynamic form to CSV

I'm looking for JavaScript that will allow me to export my user control values on a PDF form to a CSV file.

The attached code populates my text boxes, statically for now, but i'm looking now to output.  I'm using a program called PDFill that has it's own built in JavaScript editor and I'm setting up my livecycle environment at the moment as well.
this.getField("Dynamicaccountnum").value = 142456;
this.getField("dealeraccountnum").value = 'd125525';
this.getField("dealercode").value = 'dealer922';
this.getField("representativecode").value = 15165;
this.getField("dealername").value = 'Joe Blow';
this.getField("Representativename").value = 'Jack Jones';

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Hugh McCurdy
Hugh McCurdy
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Lucas

ASKER

doesn't really tell me anything that i didn't know already
You could try posting the question again with the title "Can I write a CSV file using Javascript?"