Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Java Script changes my form to FDF, how do I send as PDF?

Guest
Jan 09, 2019 Jan 09, 2019

I have a java script that I use to submit a form to 2 different addresses depending on a certain field.

But when it send the form it sends as an FDF not a PDF; I need it sent as a PDF.

How do I ensure it is sent as a PDF not an FDF?

I am an absolute novice at java script so any help would be appreciated.

thanks in advance

R.Keev

var addr= "";

if (this.getfield("DropDown1").value=="Yes")

{

addr="1stmaillist@whatever";

}

else

{

addr="2ndmaillist@whatever";

}

This.submitform("Mailto:" + addr);

TOPICS
Acrobat SDK and JavaScript , Windows
774
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jan 09, 2019 Jan 09, 2019

No, do it like this:

this.submitForm({cURL: "mailto:" + addr, cSubmitAs: "PDF"});

Translate
Community Expert ,
Jan 09, 2019 Jan 09, 2019

Specify this with the parameter cSubmitAs. Look at the documentation of the method submitForm.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jan 09, 2019 Jan 09, 2019

Thank you Bernd Alheit for the assistance. So do I change it to;

this.cSubmitAs(PDF,"Mailto:" + addr);

or something else??

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 09, 2019 Jan 09, 2019

Use this.submitForm with the parameter cSubmitAs.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 09, 2019 Jan 09, 2019

You also have multiple other errors in your code related to lower/upper-case letters, so I assume you re-typed it instead of copying and pasting it, as the code you posted will not work at all.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jan 09, 2019 Jan 09, 2019

Yes try67 I re-typed it (I am awful at spelling with a capital O). the original code worked but the attachment it created to mail was an FDF not a PDF. But thank you for your assistance

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 09, 2019 Jan 09, 2019

No, do it like this:

this.submitForm({cURL: "mailto:" + addr, cSubmitAs: "PDF"});

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jan 09, 2019 Jan 09, 2019
LATEST

Thank you again Try67; working great!!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines