A mailto-link does not work anymore in Acrobat Reader XI

A mailto-link, i.e. mailto:[email address]?subject=[subject] in a PDF does not work anymore as it should be. Het whole mailto string is send to the TO-line in Outlook 2010.
==>

Hmm... worked on 10.8 doesn't work on 10.9... that would seem to answer your question... you upgraded from something that does work, to something that doesn't
Go to http://forums.adobe.com/community/premiere and, in the area just under Ask a Question, type in
mavericks
You may now read all the previous discussions on this subject... be sure to click the See More Results at the bottom of the initial, short list if the initial list does not answer your question
I am Windows so did not bookmark the messages, but I have seen SOME message threads with SOME solutions for SOME mavericks problems

Similar Messages

  • This.print(pp) with interactive type silent or automatic does not work  after upgrade acrobat reader 9 to acrobat reader 11

    After an upgrade of acrobat reader 9 to acrobat reader 11 the automatic printing of a pdf. The pdf is opened, but the print does not happen. With acrobat reader 9 it works. But with acrobat reader 11 the printing does not happen.
    I discovered when you specify pp.constants.interactionLevel.full it works on acrobat reader 11. But when you specify pp.constants.interactionLevel.silent or pp.constants.interactionLevel.automatic it does not work on acrobat reader 11. But with the full option we have a dialog  print box
    we do not want.
    In our jsp we load a pdf document and create a message handler to detect the print events of a pdf document that is in an <object> tag.
    In the pdf document we add
    package be.post.lpo.util;
    import org.apache.commons.lang.StringEscapeUtils;
    import org.apache.commons.lang.StringUtils;
    public class AcrobatJavascriptUtil {  
        public String getPostMessageToHostContainer(String messageName, String messageBody){
            return "var aMessage=['"+messageName+ "', '"+ messageBody+"'];this.hostContainer.postMessage(aMessage);";
        public String getAutoPrintJavaScript(String interactiveType, String printerName,String duplexType) {    
            String interactiveTypeCommand = "";
            if (StringUtils.isNotBlank(interactiveType)){
                interactiveTypeCommand = "pp.interactive = " + interactiveType + ";";
            String duplexTypeCommand = "";
            if (StringUtils.isNotBlank(duplexType)){
                duplexTypeCommand = "pp.DuplexType = " + duplexType + ";";
            return "" + // //
                    "var pp = this.getPrintParams();" + // //
                    // Nointeraction at all dialog, progress, cancel) //
                    interactiveTypeCommand + //
                    // Always print to a printer (not to a file) //
                    "pp.printerName = \"" + StringEscapeUtils.escapeJavaScript(printerName) + "\";" + //
                    // Never print to a file. //
                    "pp.fileName = \"\";" + //
                    // Print images using 600 DPI. This option MUST be set or some barcodes cannot //
                    // be scanned anymore. //
                    "pp.bitmapDPI = 600;" + //
                    // Do not perform any page scaling //
                    "pp.pageHandling = pp.constants.handling.none;" + //
                    // Always print all pages //
                    "pp.pageSubset = pp.constants.subsets.all;" + //
                    // Do not autocenter //
                    "pp.flags |= pp.constants.flagValues.suppressCenter;" + //
                    // Do not autorotate //
                    "pp.flags |= pp.constants.flagValues.suppressRotate;" + //
                    // Disable setPageSize i.e. do not choose paper tray by PDF page size //
                    "pp.flags &= ~pp.constants.flagValues.setPageSize;" + //
                    // Emit the document contents. Document comments are not printed //
                    "pp.printContent = pp.constants.printContents.doc;" + //
                    // printing duplex mode to simplex, duplex long edge, or duplex short edge feed //
                    duplexTypeCommand +
                    // Print pages in the normal order. //
                    "pp.reversePages = false;" + //
                    // Do the actual printing //
                    "this.print(pp);";
    snippets for java code that adds
    package be.post.lpo.util;
    import org.apache.commons.lang.StringUtils;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfAction;
    import com.lowagie.text.pdf.PdfDestination;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfName;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    public class PdfMergerUtil{
        private static final PdfName DID_PRINT = PdfName.DP;
        private static final PdfName WILL_PRINT = PdfName.WP;
        private List<PdfActionJavaScriptHolder> actionJavaScripts = new ArrayList<PdfActionJavaScriptHolder>();
        private class PdfActionJavaScriptHolder{
            private final PdfName actionType;
            private final String javaScript;
            public PdfActionJavaScriptHolder(PdfName actionType, String javaScript) {
                super();
                this.actionType = actionType;
                this.javaScript = javaScript;
            public PdfName getActionType(){
                return this.actionType;
            public String getJavaScript(){
                return this.javaScript;
        public void writePdfs(OutputStream outputStream, List<InputStream> documents, String documentLevelJavaScript) throws Exception {
            Document document = new Document();
            try {          
              // Create a writer for the outputstream
              PdfWriter writer = PdfWriter.getInstance(document, outputStream);
              document.open();      
              // Create Readers for the pdfs.
              Iterator<PdfReader> iteratorPDFReader = getPdfReaders(documents.iterator());
              writePdfReaders(document, writer, iteratorPDFReader);
              if (StringUtils.isNotBlank(documentLevelJavaScript)){
                  writer.addJavaScript(documentLevelJavaScript);
              addAdditionalActions(writer);
              outputStream.flush();      
            } catch (Exception e) {
                e.printStackTrace();
                throw e;
            } finally {
                if (document.isOpen()){
                    document.close();
                try {
                    if (outputStream != null){
                        outputStream.close();
                } catch (IOException ioe) {
                    ioe.printStackTrace();
                    throw ioe;
        public void addAdditionalDidPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(DID_PRINT, javaScript));   
        public void addAdditionalWillPrintAction(String javaScript){
            actionJavaScripts.add(new PdfActionJavaScriptHolder(WILL_PRINT, javaScript));   
        private void writePdfReaders(Document document, PdfWriter writer,
                Iterator<PdfReader> iteratorPDFReader) {
            int pageOfCurrentReaderPDF = 0;      
              // Loop through the PDF files and add to the output.
              while (iteratorPDFReader.hasNext()) {
                PdfReader pdfReader = iteratorPDFReader.next();
                // Create a new page in the target for each source page.
                while (pageOfCurrentReaderPDF < pdfReader.getNumberOfPages()) {
                  document.newPage();
                  pageOfCurrentReaderPDF++;          
                  PdfImportedPage page = writer.getImportedPage(pdfReader, pageOfCurrentReaderPDF);
                  writer.getDirectContent().addTemplate(page, 0, 0);          
                pageOfCurrentReaderPDF = 0;
        private void addAdditionalActions(PdfWriter writer) throws DocumentException{
            if (actionJavaScripts.size() != 0 ){
                PdfAction action = PdfAction.gotoLocalPage(1, new PdfDestination(PdfDestination.FIT), writer);
                writer.setOpenAction(action);
                for (PdfActionJavaScriptHolder pdfAction : actionJavaScripts ){
                    if (StringUtils.isNotBlank(pdfAction.getJavaScript())){
                        action = PdfAction.javaScript(pdfAction.getJavaScript(), writer);
                        writer.setAdditionalAction(pdfAction.getActionType(), action);
        private Iterator<PdfReader> getPdfReaders(Iterator<InputStream> iteratorPDFs) throws IOException {
            List<PdfReader> readers = new ArrayList<PdfReader>();
              while (iteratorPDFs.hasNext()) {
                InputStream pdf = iteratorPDFs.next();
                PdfReader pdfReader = new PdfReader(pdf);
                readers.add(pdfReader);        
            return readers.iterator();
    JSP code
    <script type="text/javascript" src="<bean:message key="scripts.js.internal.jquery" bundle="app"/>"></script>
        <script language="javascript">
        function goToDidPrintUrl(){
            var url = "<%=didPrintUrl%>";
            window.location.assign(url);
        function createMessageHandler() {
            var PDFObject = document.getElementById("myPdf");
            PDFObject.messageHandler = {
                onMessage: function(msg) {
                     if (msg[0] == "WILL_PRINT"){      
                        $("#printingTransitFeedBackMessage").text('<%=willPrintMessage%>');                   
                     if(msg[0] == "DID_PRINT"){
                        $("#printingTransitFeedBackMessage").text('<%=didPrintMessage%>');               
                        setTimeout('goToDidPrintUrl()',4000);
                onError: function(error, msg) {
                    alert(error.message);
        </script>
    </head>
    <body onLoad="createMessageHandler();">
    <div id="printingTransitFeedbackArea">
      <div class="info" id="printingTransitFeedBackMessage"><%=documentOpenMessage%></div>
    </div>
    <object id="myPdf" type="application/pdf" width="100%" height="100%"  data="<%=toBePrintedUrl%>">
    </object>
    </body>

    From the JS API Reference of the print method:
    Non-interactive printing can only be executed during batch, console, and menu
    events.
    Outside of batch, console, and menu events, the values of bUI and of interactive are ignored
    and a print dialog box will always be presented.

  • Full screen auto-hide feature does not work with Adobe Acrobat Reader add-on 11.0.0.379 in Firefox 17.01.

    "Full screen" menu item and its keyboard short cut F11 stop working with Acrobat Reader. The Firefox top edge border does not hide once you have moved around in the Acrobat document. Therefore it is not possible to display PDF documents in a true full screen mode within Firefox. The auto-hide full screen mode works nicely with other Firefox windows, so apparently the Acrobat Reader add-on breaks the feature. Windows 7 64-bit.

    From the JS API Reference of the print method:
    Non-interactive printing can only be executed during batch, console, and menu
    events.
    Outside of batch, console, and menu events, the values of bUI and of interactive are ignored
    and a print dialog box will always be presented.

  • Ios 6.1 does not work anymore. Video sites

    some videos on sites that previously ran with quicktime, now after upgrading to ios 6.1 does not work anymore.

    Examles, please.

  • My Creative Cloud does not work anymore. When I try to reinstall it I receive the message "AAM cannot initialise". I have tried all the instructions but it still does not work. Robert

    My Creative Cloud does not work anymore. When I try to reinstall it I receive the message "AAM cannot initialise". I have tried all the instructions but it still does not work. Robert

    Try perform below steps.
    Open task manager by pressing Ctrl + Shift + Esc  keys. Click on more details if the option available.
    Then end all Adobe related processes, including Creative Cloud and Coresync ( if running )
    Then hold windows key on your keyboard and Press R key.
    It will open Run window
    In Run window, type Appdata and click on Ok
    Open Local > Adobe folders
    Delete AAMUpdater and OOBE folders
    Then navigate to C:\Program Files (x86)\Common Files\Adobe
    Delete Adobe Application Manager and OOBE folders
    Go back to Program Files (x86) and Open Adobe folder
    Try deleting Adobe Creative Cloud folder, if it is not allowing rename it to Adobe Creative Cloudold
    Download and install Creative Cloud App from below link
    https://creative.adobe.com/products/download/creative-cloud
    Then check

  • Equium L20-197 does not work anymore

    May I call on you all for a bit of help on this one.
    I have been given an Equium L20-197 which does not work anymore. Not having the chance to ever see it running I'm not sure on a couple of things.
    It's totally dead, with the power supply connected there is no sign of life, no power light, nothing.
    I know there are many things it could be.
    Question is should it power up while there is no battery connected, just the power supply plugged in?
    If it will then at least I can move past a battery problem, yes the battery may still be faulty but it would mean that the motherboard is probably us. If it must have a battery fitted, even a flat one then it could be the battery.
    Just trying to work through it step by step.
    Any help much appreciated.

    Hi mate,
    hehe, looks like a technician is here. :) Its a really good idea to making it step by step because every good techie acts like you. So I do, and it helped me many times.
    Regarding your question: the battery must not be connected to start the machine, so if the machine wont start up even just with AC connected then you can be sure that a really serious hardware problem is present.
    In such case, you can either remove everything (HDD, CDROM,etc) and try it again. You can also exchange the AC-adapter and the RAM. So, if the machine still wont start up, then contact an ASP (Authorized Service Partner) and ask for a hardware checkup/repair. That would be the last resort.
    Heres a link to find the nearest ASP in your country:
    http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/generic_content.jsp?service=EU&ID=ASP_SUPPORT
    Greetings and good luck

  • My new orkut page does not works anymore after uptading firefox from Firefox v9.0.1 to 10

    My new orkut page does not works anymore after I uptaded this morning my browser firefox from Firefox v9.0.1 to 10 . How can I find that version mozilla Firefox v9.0.1???

    Hello, friend. Thank you so much. I've already solved the problem once you sent me that link.
    Cheers!

  • Satellite U400 - the webcam does not work anymore

    Hello guys here is my sudden probloema!
    About a year ago I purchased a laptop
    TOSHIBA - Satellite U400
    with s.o. WinVista 32bit and with integrated webcam chicony etc. ....
    For a year, everything worked correctly, but for some days now, the webcam does not work anymore.
    As soon as I try to open it, a message of management software cam that says "Webcam driver open fail, please restart or computer room"
    I tried to do it all: aggioronato and downloaded the drivers from toshiba, uninstalled the program and re installed the webcam ....! updated bios notebook ....! useless!
    the strange thing .. well that going into device manager ... the webcam is not there ....! but if the launch seems to open just then check quell caz ... Warning!!
    Gan you help me?
    Graziee

    Are you familiar and comfortable with LINUX LIVE bootable discs to load an alternative operating system with unobtrusive but extensive Toshiba device support so you can determine if your webcam hardware is ruined or if the problem is software and possibly solved reinstalling Windows ?
    At this point, you're pondering less time consuming but more expensive choices such as buying another web cam, or another computer and you might be temporarily borrowing someone else's web cam / using a non preferred spare web cam that isn't optimal for your needs.
    Continuously downloading software, registry cleaners, and repeatedly reinstalling drivers will eventually ruin your Windows installation and consume more time than you've wasted so far and still doesn't guarantee to fix your malfunction.

  • TouchPad lock key does not work anymore on Dell XPS L401X

    Hi everyone,
    On my Dell XPS L401X laptop, there is a key to lock/unlock the touchpad. It used to work fine on Windows and on new fresh install ArchLinux, but now it does not work anymore. If I remember correctly, I did not change, configure any shortcut so far.
    Any hint to fix this problem?
    Many thanks!
    Tinh

    Try mapping the button as shown here: https://wiki.archlinux.org/index.php/To … are_Toggle
    I'm sorry i can't help more.

  • Reply link does not work on ipad

    After logging in to this group, the reply link does not work on either my ipad 2  running IOS 8.1.3 nor my iphone 4 running 7.1.2. Not helpful really. I have had to switch on my old laptop.Also I never know which group to post a new question in, The names like Snow Leopard dont really give me a clue, so if the key word does not find an existing topic, i just end up guessing.

    You seem to have double posted, Lynne.   I have replied on the other one.
    Snow Leopard is one of the Apple operating Systems (OS X) as opposed to iOS 

  • TV does not work anymore on Qosmio G10

    Good morning,
    TV does not work anymore, may be due to an update. It has been working OK before.
    When selecting TV option 'TV direct ' with MCE menu, I get the following error message: "necessary files for video display are not installed or do not work properly, restart MCE or the computer". Restarting MCE and / or G10 does not solve the problem.
    -Intervideo WinDVD creator is installed.
    -TV PCI tuner seems to work properly (as per hardware status)
    Which files can be missing? What needs to be done?
    Any help, suggestions, well appreciated.
    Thank you to anyone answering this message.

    Hello Luciano
    Like you know on this way it is not easy to give you precise answer because we dont know what did you done exactly with your Qosmio.
    Please try to use System restore tool at first and roll back the operating system to earlier time. Maybe this will help you and the MCE configuration will be as before.
    Try it at first.

  • HT204135 I update my Mac to version 10.9.2 and now my printer does not work anymore. I did all the software updates and I do not understand why my mac does not recognize the printer anymore?

    I update my Mac to version 10.9.2 and now my printer does not work anymore. I did all the software updates and I do not understand why my mac does not recognize the printer anymore?

    Go to the website of the manufacturer of your printer and check to see if they have released an updated driver for your particular model.

  • I'M AN AMERICAN ON TEMPORARY ASSIGNMENT IN ITALY AND CANNOT GET TO ANY HELP SOURCE ONLINE OR BY THE PHONE NUMBERS LISTED ONLINE.  I'M TRYING TO RENEW MY ONE TO ONE SUPPORT PROGRAM AND THE "RENEW NOW" LINK DOES NOT WORK!  HELP!

    APPLE SENT ME AN E-MAIL WITH A LINK TO RENEW MY ONE TO ONE SUPPORT.  THE LINK DOES NOT WORK.  AFTER I LOG INTO MY APPLE ACCOUNT AND CLICK "RENEW NOW" FOR ONE TO ONE, AN ERROR MESSAGE APPEARS SAYING "PAGE NOT FOUND".  AMAZING.  WHEN I TRY TO CALL THE TOLL FREE APPLE SUPPORT NUMBER FROM MILAN, ITALY WHERE I AM NOW LIVING, IT DOESN'T WORK. THE ITALIAN SUPPORT DESK APPEARS TO BE AVAILABLE ONLY ON WEEKDAYS DURING NORMAL BUSINESS HOURS.  HOW CAN I REACH A LIVE APPLE SUPPORT PERSON?

    Start by going here - https://expresslane.apple.com/GetproductgroupList.action?locale=it_IT
    Best of luck.

  • While updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    while updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    Disconnect the iPad, do a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is 'appsolutely' safe!, reconnect and follow the prompts.
    If that does not work then see here http://support.apple.com/kb/HT1808

  • I have recently upgraded from my iphone 5 to a new phone. My iphone 5 's touch screen does not work anymore. I need to backup my phone, but I can't do it on itunes without my password. Everything besides screen is ok. Is there a way around it? :(

    I have recently upgraded from my iphone 5 to a new phone. My iphone 5 's touch screen does not work anymore. I need to backup my phone, but I can't do it on itunes without my password. Everything besides the screen is completely fine-the screen will not recognize my finger anymore. I am not trying to fix the phone, but I need to have my contacts. The pictures have already synced, but I need my password to do a full backup. Unfortunately, I can't type in my password. Is there any way around it? If I take my phone to the apple store, will they be able to help me? I am not willing to replace the screen just to do this, however, so that is out of the question. 

    Someone else may have a workaround, but, as far as I know, if you cannot interact with the screen on the iPhone, there is no way to unlock it so you can get to your contacts.
    Were you saving them to iCloud by chance? If so, you can restore them to your new phone.
    ~Lyssa

Maybe you are looking for

  • My iPod touch won't start up/charge/sync

    on what i think is the ipod touch 3rd gen (if that helps) when i plug it into my laptop the black screen with the apple sign comes up as if it were to start up as normal, however it just stays on that same screen for as long as it's plugged in, it th

  • Xtreme music not recogni

    I've done everything to make this card work. Uninstalled all sound drivers. Used Drier cleaner. Used CCleaner. Cleared anything to do with Creative from everywhere. Disabled onboard sound in the bios. Restarted. Windows reports Multimedia Audio COntr

  • Installed Photoshop CS6 3 times from Perpetual License download - error messages keep coming

    Windows 7-64 I bought Photoshop CS6 as an upgrade to CS3 and CS5 which I had previously bought on Disk. This new version came as a Download from Adobe but I have continuing problems with this download. On first installation I ran the updater from ins

  • Event Log / ServiceNow

    Greetings, Recently the company started using the ServiceNow application for tracking IT incidents and request.  A new process in xMII BLS 14 is being requested that should create incidents in ServiceNow as they occur. The current process to make thi

  • IDM reconciliation logs

    Where can I find the logs to view the errors for my reconciliation? Thanks.