Skip navigation
vancanjoe
Currently Being Moderated

Why did Adobe remove a useful feature?

Jun 29, 2012 4:19 PM

Will someone please tell me why Adobe would remove such a useful feature as the “File>Attach to Email...” from the Link Properties dialogue box under the “Execute a menu item” - “Add” options list. The idea of an improved version, Acrobat X, is to add utility not make it less useful.

 
Replies
  • Currently Being Moderated
    Jun 30, 2012 11:33 AM   in reply to vancanjoe

    For security reasons only a limited number of menu items can be executed from the context of a document link or button.

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 1, 2012 3:40 AM   in reply to vancanjoe

    Direct access to menu items isn't the preferred method to execute functions available via the JSAPI, you should simply trigger the JS function on a button or link:

     

    this.mailDoc(true);

     

    or if you want to set the message params:

     

    this.mailDoc({

    bUI: false,

    cTo: "recipient @ example.addr",

    cCC: "cc @ example.addr",

    cSubject: "A PDF file",

    cMsg: "here is the PDF."

    });

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 6, 2012 5:39 PM   in reply to vancanjoe

    JSAPI = JavaScript API.

     

    To use the code in bold from my previous reply, create a new link or button on your PDF page and in the dialog choose "Custom link" - then in the second dialog switch to the Actions tab and choose "Run a Javascript". Click Add, and in the editor that appears paste the code - e.g. this.mailDoc(true); - and click OK until the dialogs close.

     

    Click your newly-created link and your file will be attached to a new email message.

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points