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

Submit button to mail specific pages only

New Here ,
Mar 03, 2021 Mar 03, 2021

Good day all,

 

I have some Java Script (below) for submitting a Form, my dilemma is the form is over 30 pages & I only want to send / attach specific pages not all pages, is there a way to adapt this code to pull out a page array or range? Thanks for any help guys - Marc

 

var customSubject = this.getField("Project").value; 
var mailtoUrl = "mailto:me.me@me.com;him.him@him.com?subject=" + customSubject; 
this.submitForm({ 
 cURL: mailtoUrl, cSubmitAs: "PDF" });

 

1.1K
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 ,
Mar 03, 2021 Mar 03, 2021

This is the Using the Community forum (which is the forum for issues using the forums).
Please tell us what Adobe application you are using so that this can be moved to the proper forum for help.

 

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
New Here ,
Mar 03, 2021 Mar 03, 2021

Hi Peru Bob,

 

Sorry, PDF, using both adobe & PDF Expert on mobile devices, thanks 🙂

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 ,
Mar 03, 2021 Mar 03, 2021

Sorry Marco but this is an Adobe product forum.  PDF and PDF Expert are NOT Adobe products.

Unless you have Adobe Acrobat Standard or Acrobat Pro DC, we can't help you here.

 

Nancy O'Shea— Product User, Community Expert & Moderator
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
New Here ,
Mar 03, 2021 Mar 03, 2021

Yes I use Adobe Acrobat Pro DC to create the forms

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 ,
Mar 04, 2021 Mar 04, 2021

Is this form only going to be used in Adobe Acrobat (ie. not in Adobe Reader)?

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
LEGEND ,
Mar 04, 2021 Mar 04, 2021

And not possible with Adobe mobile software at all. Pretty much, the answer is no.

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 ,
Mar 04, 2021 Mar 04, 2021

Not possible in Acrobat Reader.

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 ,
Mar 04, 2021 Mar 04, 2021

Acrobat Reader cannot delete pages in a document.

By tinkering a little we can make it hide (so without really removing them) pages but it can only work with Adobe Reader XI and Acrobat Reader DC in desktop version.


Acrobate du PDF, InDesigner et Photoshopographe
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 ,
Mar 04, 2021 Mar 04, 2021

Why not simply submit the form data only, and then import it on your end into a file that only contains the pages you're interested in?

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
New Here ,
Mar 04, 2021 Mar 04, 2021

Hey TRY67,

 

Thats interesting, do we have any threads on this process? Thanks guys

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 ,
Mar 04, 2021 Mar 04, 2021

Not sure what you mean... All you need to do to achieve it is to change:

cSubmitAs: "PDF"

To:

cSubmitAs: "FDF"

The file that you will receive will be an .fdf file that will contain just the form data. You can then import it using Acrobat to a version of the file that only contains the pages you want, and it will import the data that matches the fields on those pages.

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
New Here ,
Mar 04, 2021 Mar 04, 2021
LATEST

Understood TRY67, you'll have to excuse my ignorance, never done this before, I will give this a whirl today 🙂 Cheers - Marc

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