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.

Similar Messages

  • Macbook Pro Pinch/Zoom feature does not work with Firefox 6

    Can someone please tell me how to fix this major problem?
    I can not get the Pinch/Zoom feature on the track pad to work on my Macbook Pro. I am running OS 10.6.8.
    I have seen this below in other posts, and have tried it, but it STILL does not work !!!!
    '''''Some gestures have been removed in Firefox 4.
    '''You can restore the zoom feature by changing the values of the related prefs on the about:config page.
    '''browser.gesture.pinch.in -> cmd_fullZoomReduce<br>
    '''browser.gesture.pinch.in.shift -> cmd_fullZoomReset<br>'''
    '''browser.gesture.pinch.out -> cmd_fullZoomEnlarge<br>'''
    '''browser.gesture.pinch.out.shift -> cmd_fullZoomReset<br>''''''
    '''To open the about:config page, type about:config in the location (address) bar and press the "Enter" key, just like you type the url of a website to open a website.'''
    '''If you see a warning then you can confirm that you want to access that page.'''''''''''
    Please someone help me - this is a great feature and its really pissing me off that I can't use it.
    HELP !!!

    I'VE TRIED THIS:
    browser.gesture.pinch.in -> cmd_fullZoomReduce
    browser.gesture.pinch.in.shift -> cmd_fullZoomReset
    browser.gesture.pinch.out -> cmd_fullZoomEnlarge
    browser.gesture.pinch.out.shift -> cmd_fullZoomReset
    browser.gesture.pinch.latched -> false
    I'VE TRIED ALL OF THE ABOVE NUMEROUS TIMES AND IT DOES NOT WORK ON MACBOOK PRO AND FIREFOX 6.
    CAN ANYBODY HELP? THANKS ♥

  • New Lightroom 4 mail feature does not work with Hotmail

    Hi,
    I have tested the new mail feature today.  Unfortunatelly, it does not work well with my hotmail account. 
    The mail is send by lightroom and received in my hotmail mailbox, but the photo is not visible.  The tekst in the messages is readable, but instead of the downloaded photoI only see a red cross.
    Anyone an idea what the reason is ?
    thanks
    Rudy

    Hi Stone Pan,
    Thanks for answering. 
    I do not see any error message and the received mail contains a correct text message, only the picture is not visible in the mail.  I tried to send a Photo with the email preset on small and normal but without success.
    Kind regards,
    Rudy
    Edit :
    I have tried to send a photo to the hotmail email adress of a friend and it works, text and photo are visible.  Conclusion is that the reason for not showing the photo is not a Lightroom 4 problem.  The reason should be something on my own computer, any suggestions are welcome.

  • 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.

  • CS4 suite serial number does not work for Adobe Acrobat Pro

    Hello,
    I am looking for a solution for the serial number issue I am having with Adobe Acrobat Pro. All of other programs within the suite open fine, but when I open Adobe Acrobat Pro it asks for a serial number. When I type in the serial number, I am given a red "X".
    I have called customer support, but they haven't been able to give me any information that will resolve my issue (uninstalled 4 times now). I have Vista and have looked online and on the Adobe website to find a solution. It looks like others are having the same issue from what I can tell while searching. I have run the script too and then reinstalled, but still nothing.

    After some stupid upgrade in my computer (who knows as Microsoft is always doing something), my Acrobat 9 in CS4 stopped working. The error message said to uninstall and reinstall Acrobat. So I went through the control panel and uninstalled it. I then loaded the CD and reinstalled. However the reinstall would NOT accept the orginal serial number. I called Adobe and they gave me a different serial number. Before I let the guy nof the line I tried the  number and it did NOT work! So then he gave me another number which  asked for the previous verison- apparently it was an upgrade number. Luckily I had my old CS3 software and I gave it that number and then it accepted the install. The program now works BUT there is no longer any ADD/REMOVE choice in the CS4 suite in the control panel. There is no way to automatically remove this program anymore! What a mess.
    After reading some of the installation problems others have had and no solutions, I count myself lucky! At least I was able to get the program running.
    Therefore my advise on the serial number problem is to get Adobe on the phonen and get them to give you a number that will work, and don't hang up until you know the program is working!
    If anyone knows how to add the Acrobat to the the add/remove functions in the control panel, please let me know!

  • Adobe thumbnail preview does not work in adobe acrobat 8.0

    Hi ,
    I have user login using his profile and suddenly his not able to view thumbnail preview of PDF file using navigation panel but the thumbnail preview
    work in administrator profile.
    Si, I guess some settings blocking in user profile to view thumbnail preview.
    I have checked the settings that I know but it still does not work.
    Please advise.
    It is adobe acrobat 8.0 professional using win XP SP3

    Thanks for answering my queries.
    Could you please let get me the following details as well:
    1. The version of Adobe Reader installed on your system.
    2. The default PDF viewing application on your system. You can find the same by double clicking on a PDF on your system and see which application is used to render the PDF.
    3. The value of the following registries:
    HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe
    HKEY_CLASSES_ROOT\AcroExch.Document.7\shell\Open\command
    HKEY_CLASSES_ROOT\AcroExch.Document.7\shell\Read\command
    Ankit

  • 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

  • Why the Apple products does not work with Adobe flash player?

    Could be better if the Apple products work with Adobe Flash Player, I know that Steve does not like to work with them, but I think will be necessary soon.

    From Adobe's own site:
    *** NOTE: FLASH PLAYER IS NO LONGER BEING UPDATED FOR NEW DEVICE CONFIGURATIONS. FLASH PLAYER WILL NOT BE SUPPORTED ON ANY ANDROID VERSION BEYOND ANDROID 4.0.x ***
    While Flash Player remains on Google Play for installation on Android devices that are certified by the manufacturer, installing Flash Player on an uncertified device may result in unexpected behavior and can potentially destabilize your device. A list of certified devices can be found at http://www.adobe.com/go/certifieddevices. Flash Player WILL NOT be supported on any device shipped with or upgraded to an Android version beyond Android 4.0.x
    Further comments on what is the case on Android devices is irrelevant. Adobe has dropped further development of Flash for mobile devices and Apple has made no indications that they have any plans to do so themselves, so it is highly unlikely that there will ever be a native Flash player for any iOS device.
    'nuff said on the matter. Regards.

  • HP ProtectTools password auto fill in does not work with Firefox 4

    My HP Compaq 6715b has a credential manager called ProtectTools that stores user name and password for favorite websites and auto fills the information when the website is opened up. This worked fine with Firefox 3.x.x but since I upgraded to Firefox 4 it is no longer "syncing". I have checked the program and I am "logged in" which is what is necessary to activate this program. I have tried logging off and then back on without any results. I have tried to go back to the 3.x.x version of Firefox and cannot do that either. Technical support for my computer no longer is available from HP due to it's age (2007). Does anyone know if Firefox 4 and ProtecTools is compatible? What do I need to do to get these two "communicating" again?

    I think I solved the problem. I have CCleaner software and had the clean cookies checked. After unchecking the box and restarting, the auto login works fine. So if anyone has a cleaner program or anti-virus program with clean cookies enabled, auto login for google or yahoo will not work.

  • Javascript does not work in Adobe 9 Reader

    I have created a Parent PDF Index with attachments. Next to each document name, I have 3 icons (PDF, Print and Email icons). The PDF Icon has a basic link: "Go to page in another document" The Print Icon has the "Go to page in another document" link and a javascript: app.execMenuItem("Print"); -When someone clicks the Print Icon, the attached document opens and the Print Box opens to print the attached document. The Email icon has the "Go to page in another document" link and a javascript: app.execMenuItem("AcroSendMail:SendMail"); -When someone clicks the Email Icon, the attached document opens and is automatically attached to a blank email. These links and javascripts worked perfectly in Adobe 8 Professional, Adobe 7 Reader and Adobe 8 Reader. However, the Print and Email functions are not working correctly in Adobe 9 Reader. The Print Icon is clicked and the Print Box opens first and the document opens last (therefore, it is printing the Index not the attached document). Same thing with the Email Icon...it is emailing the Index not the attached document. Is there anything I can do to fix this issue? Thank you in advance for your help!

    Security restrictions changed for execMenuItem(). Here's what the documentation says about it:
    "(Acrobat 8.0) The execution of  menu items through execMenuItem method  is restricted to a short list of safe menus. The execMenuItem method will silently fail if a named menu  item is executed that is not on the safe menu list. Menu items may be removed in future releases, or their behavior may change.
    To see the list of safe  menus, create a form button, and in the Button Properties dialog box,  select the Actions tab. From the Select Action list, select “Execute  a menu item”. Finally, click the Add button to see the Menu Item dialog  box with the list of safe menus.
    The app.execMenuItem method may be executed, without  restriction, in a privileged context, such as in the console or in a  batch sequence. For folder JavaScript, app.execMenuItem can be executed, again, without restriction,  through a trusted function with raised privilege. See Example 4, below.
    Another approach to  executing app.execMenuItem without  restriction is through Sign & Certify. When the document author  signs and certifies the document, privileged methods can be executed  from a non-privileged context provided the document consumer lists the  author’s certificate in the list of trusted identities and the consumer  trusts the author for execution of embedded high privilege JavaScript."
    See here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=JS_API_AcroJS.88.131.html#1995136

  • Flash is not working in Adobe Acrobat Reader

    Hi - I created a bunch of Flash tabs in Flash CS6 - they work great - but I want to put them into Adobe Acrobat X PRO (the writer) and they imported just fine and work just great inside of Acrobat X PRO.  However when I go to send the exported PDF with the Flash elements inside of it - to someone who only has Acrobat Reader (but doesn't have the Flash plug-in installed on their machine) - that person can open the PDF and can even view the Flash element but they get a yellow bar across the top of the PDF that says they must install the Flash plug-in to use it.  Well that is great but this PDF is being used out in the field where they cannot install the Flash plugin....
    I am suprised it does this because Flash importing and exporting capability is native to Acrobat Reader...and I thought I read that Acrobat has flash reading/rendering capability natively built into the Reader itself.  Am I wrong - and/or does anyone have a workaround for this?? 
    Andrew

    Hi andrewpweyrich
    What is the version of Adobe Reader You're using ?
    Flash has been removed from the Reader X in latest releases and also it has been removed from Reader XI.
    You Need to sepeately download and install the Flash plug-in to view the flash content.

  • 7.0.1 will not work with Adobe acrobat pdf creator 1.1 - what, if anything can I do to 'make' pdfs?

    wish I were smart enough to add details.... here's the best I can do: before installing 7.0.1 it says the adobe will not be compatible

    You can't use system restore to go back to a previous Firefox version. SR only restores a few specific files and not all files. You will have to do a reinstall of your Firefox version.
    You can find the latest Firefox release here:
    *Firefox 8.0.1: http://www.mozilla.com/en-US/firefox/all.html
    *Firefox 7.0.1: ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/7.0.1
    It is possible that there is a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (e.g. extensions.sqlite, extensions.ini, extensions.cache) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.com/kb/Profiles
    New files will be created when required.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.com/kb/Unable+to+install+add-ons
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to do a compatibility check or see if there is a compatibility update available.

  • I bought this iPhone from Apple Retail Store for the full amount, but  it does not work with my SIM card only works with AT&T

    Hello,
    I have an iPhone 4S 32Gb White AT&T, product part No. MC921LL/A, Serial No. C39GMLPWDTDC
    I bought this iPhone from Apple Retail Store (from Fifth Avenue, NY) for the full amount. Now it does not work with my SIM card only works with AT&T. I restored the phone several times, but I have not received "Congratulations your iPhone has been unlocked". Please activate my iPhone to work with different SIM cards
    Thanks,
    Best Wishes

    When did you buy it?
    Apple did not begin selling an unlocked version of the iPhone 4S in the US until 11/11/11. I believe it went on sale only through the online store at that time. I'm not sure if it's available at retail yet.
    What you purchased was a phone without a contract commitment. It is still locked to AT&T. AT&T will NOT unlock iPhones for any reason.  Return it and get your money back, then use that to purchase an unlocked phone.

  • Eprint does not work with 5510 D

    I have tried several email addresses to associate with my 5510 D  but the e-print feature does not work with any of them

    Do you already have ePrint set up on your printer?
    If I have SOLVED your issue, please feel free to provide KUDOS and make sure you mark this thread as SOLUTION PROVIDED!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Thumbnail preview works in adobe reader 9 but does not work in adobe 8.0

    I have small issue. Thumbnail works in adobe reader 9 but but does not work in adobe acrobat 8.0 in win xp

    Anyone going to tell me how to do this uninstalling and installing??????????
    I don't want to mess things up even more! Geez--I'm almost 60 years old,
    need to work and this might be costing me a job. I'm not 20 and text and
    e-mail etc every day. I'm just asking for a little help that as I see it ,
    is due to a "glitch" with Adobe's software. They can easily in their
    technological minds put a warning on anything before someone downloads
    anything such as "If you download this and you  have already downloaded
    that,, then it won't work." How tough would that be??? They, like most other
    major corporations, are in it for the money. What has happened to customer
    service???
    I need a step by step with my hand held and so it won't screw up things even
    MORE. Adobe...get your customer service and your software together...This is
    draining. I may lose a job over it. I need to have my computer running well
    at this point in time as there is no extra time to spend dealing with
    software issue that are a result of Adobe's software incompatibility.
    I was on the phone for TWO hours last night telling people exactly what was
    going on. I even read the error message word for word. No one would help me
    unless I coughed up the money that I don't have...and in addition I will
    lose a job that might get me some money. This is why I am so upset. Why is
    dealing with Adobe always so difficult??? Of course, I am upset. I'm
    actually a lovely person. It is just that this stuff rattles my nerves.
    Especially when there is a jobwith a raiseinvolved that I may lose as a
    result.
    Now I had better get dressed and ready for the job I have now before I am
    late for work and lose that job, too.....

Maybe you are looking for