This is all internal on our intranet. Sorry one small detail I forgot to mention.
Main Topics
Browse All TopicsI have the following javascript that will verify some required fields then send the form as an email. In addition to sending as an email I want it to write to a txt. file the form elements and save it. Any idea of how I could do this?
Thanks,
Jason
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Assuming you want to save the PDF as a text file, follow the below steps
1. Create mySaveAs.js and myTrustedSpecialTaskFunc.j
2. Open mySave.js, copy and paste the following code. Save and close the file finally.
mySaveAs = app.trustPropagatorFunctio
{
app.beginPriv();
doc.saveAs(path, "com.adobe.acrobat.plain-t
app.endPriv();
})
3. Open myTrustedSpecialTaskFunc.j
myTrustedSpecialTa
{
// privileged and/or non-privileged code above
app.beginPriv();
mySaveAs(doc,path);
app.endPriv();
// privileged and/or non-privileged code below
});
4. If Acrobat is open, close it.
5. Open your PDF and go the function where you've the following code
if (isFormValid)
{
this.mailDoc
}
Add the following line and save the PDF.
myTrustedSpecialTaskFunc(t
----------
The text file will get created in the same location as your PDF.
Mohan: If you did not write that yourself, please put a link to the source
Here is by the way the reference manual
http://www.adobe.com
Business Accounts
Answer for Membership
by: mplungjanPosted on 2009-10-22 at 07:39:18ID: 25634754
On the client?
Not likely possible
However Acrobat forms can be set to saved with form values intact