Acrobat changes my default printer

I have Acrobat 9 pro installed as part of the CS4 web premium suite. I'm using the pdf maker toolbar in microsoft word to output a pdf.
Everytime I do this Acrobat decides to change my default printer to Adobe PDF which is really annoying. I did a little bit of searching and found others complaining about the same thing, but no solutions.
Anybody.
If it matters Windows XP Service Pack 3, Word 2003 SP1, Acrobat 9.1.0 pro

Thank you very much for the timely reply.
            I am not sure what is causing it myself, well I guess that's pretty obvious.  I got really confused by your explanation and I do appreciate you taking time to clarify your answer.
            The last time it happened it wasn't after selecting a printer in word or any other such program. I had gone in and made sure it was set to default on my networked printer and then I printed some text notes I created in notepad. After that I went to a web page to print out a coupon for my wife and that's when I noticed that it had again been changed to the Adobe PDF printer?  So I'm kind of, well not kind of, I'm very confused as to what is resetting my default printer??
            I assumed since it has happened in such a variety of situations that it had to be some sort of a win 7 issue? But I am not real good at this sort of troubleshooting.  Is there any chance that this kind of non-invasive event would be noted in the event logs somewhere?
Thanks again for the response

Similar Messages

  • Cannot change from default printer in Acrobat X by code

    pp.printerName = "\\\\print server\\printer"; works flawlessly in Acrobat 9 Standard but will not change from default printer in Acrobat X Standard unless run in the console. I've checked the printer names through the console and they are listed correctly. Javascript enable menu items is checked. I've even tried creating trusted functions (which still work flawlessly in Acrobat 9, but not in Acrobat X). All other printer settings in Acrobat X change as coded once the printer is changed manually.
    Any suggestions?

    function printFullPEng() {
    var pp = this.getPrintParams();
    var pSize = this.getPageBox("Crop");
    if (pSize[1] > "792") {pp.printerName = "\\\\print-server\\HP Designjet 4000 HPGL2/RTL (Copy 1)";}
    else {pp.printerName = "\\\\print-server\\TOSHIBA 4520C PCL6 - Engineering";};
    pp.NumCopies = 1;
    pp.pageHandling = pp.constants.handling.none;
    fv = pp.constants.flagValues;
    pp.flags = (fv.setPageSize);
    this.print(pp);
    This is tied to a menu button. As I say, it works flawlessly in Acrobat 9, but will not change printers in Acrobat X.

  • Is there a way to print a pdf to a pdf without changing your default printer?

    With the recent Adobe update (current version Adobe Pro XI Pro (1637-0001) 11.0.00), there were some changes that have caused a program my company uses to distort all or part of a pdf once it has been imported. We have found a work around. However, the work around is now becoming time consuming with the amount of files we deal with on a daily basis. Is there a way to print a pdf to a pdf without changing the default printer to the Adobe printer? (this is our work around solution).
    Thanks!

    For what you are trying to do, probably not. You have to open Acrobat and go to the print menu to select the Adobe PDF printer if it is not the default. The only possibility that I can think of (you will have to try it to tell if that is the case) is to drag the PDF to the Adobe PDF printer and see if it prints. This used to work, but I just tried it in Win7 and it did not do the job.

  • How do I change my default printer to print in grayscale?

    How do I change my default printer to print in grayscale using a MacBook Air?  I have gone to "system preferences" and "printers & scanners."  However, there is absolutely no option to change the print color scale.  I see that option when I go to a document & print, but I don't want to go through the hassle of changing to "gray scale" every time I print.  Thanks so much in advance!! 

    Hi,What operating system you are using? What application you are printing from?

  • Is there a way to change the default print tray on an HP LaserJet 500 color M551 Printer

    Hi
    Is there a way to setup the default print tray for a HP LaserJet 500 color M551 printer to be tray 2 printing both online and direct?
    If so what would be the best way to go about implementing it?
    Thanks
    This question was solved.
    View Solution.

    Usually, you can change the default paper trays through the control panel and through the Embedded Web server (EWS).
    Check the settings on your control panel. Here is a link to the User Guide, check out page 94 and see if that helps you out.
    m551 User Guide
    For the EWS, put the printer IP address into your browser, then go to the tab that would list tray settings. Not sure exactly which tab has it for this printer series, but on other printer series it is on the system tab under paper setup.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • CR XI R2 Sp6 - How do you change the default printer used by the Viewer?

    CR XI R2 Sp6
    .NET
    VS2005, C++
    The app selects printer for the job as m_Report->PrintOptions->PrinterName = ss_Device;
    This works nicely for printouts to the printer, but is ignored by the viewer. There, the machine default printer is always selected when I hit the print button.
    Found this which is sortof similar:
    http://forums.sdn.sap.com/thread.jspa?threadID=1275149
    Is there any way to fix this? If no, then is it fixed in more recent versions of CR?

    All of that above can be changed at runtime, but you'd somehow need to figure out what the default printer driver is on each machine and then assign it to the report.
    Yes,but that is exactly what I do. The app normally uses the Windows default printer just as any C++/MFC app will do. On the file menu there is an option to select printer which calls CWinApp::OnFilePrintSetup(); which sets the application default printer setup.
    In the app there is a function to retrieve the default printer:
    CString CLpApp::GetDefaultPrinter()
         PRINTDLG     pd ;
         CString          printer("Failed") ;
         pd.lStructSize = (DWORD)sizeof(PRINTDLG) ;
         BOOL bRet = GetPrinterDeviceDefaults(&pd) ;
         if (bRet)
              // protect memory handle with ::GlobalLock and ::GlobalUnlock
              DEVMODE *pDevMode = (DEVMODE*)::GlobalLock(m_hDevMode) ;
              printer = pDevMode->dmDeviceName ;
              ::GlobalUnlock(m_hDevMode) ;
         return printer ;
    When I print, I do:
    void CSkrivDlg::StartReport(CLpReportJob^ jobb)
         jobb->SelectPrinter("",theApp.GetDefaultPrinter(),"");
         if(m_tillSkrivare)
              jobb->OutputToPrinter(1);
         else
              jobb->OutputToWindow("Fönsternamn", 0, 0, 200, 200, 0, NULL, NULL);
    This works correctly for OutputToPrinter(1);, but not for OutputToWindow() which are simply wrappers for the CR functions:
    bool CReportJob::OutputToPrinter(int nCopies)
         bool rc = true;
         try
              m_Report->PrintToPrinter(nCopies,true,0,0);
         catch (Exception ^e)
              TRACE("
    %s",e->Message);
              m_LastError = e->Message;
              rc = false;
         return rc;
    // OutputToWindow()
    // a,b,c,d = Fönsterkoordinater eller noll för default
    // style = flaggor för fönsterposition
    // window = fönster efter vilket vi dyker upp
    // child = rapportfönstrets handle om vi vill ha den
    bool CReportJob::OutputToWindow(CString Namn, int a, int b, int c, int d, int style, CWnd* window, CWnd **child)
         bool rc = 0;
         CString title="Dummy1";
         title = m_Report->SummaryInfo->ReportTitle;
         CFloaterDlg *Floater = new CFloaterDlg(NULL);               // TODO: Get window
         Floater->Create(IDD_FLOATER_DLG, NULL);
         if(Floater != NULL)
              m_Report->ExportOptions->ExportFormatType = CrystalDecisions::Shared::ExportFormatType::PortableDocFormat;
              Floater->m_Viewer->ReportSource = m_Report;
              Floater->m_Viewer->Zoom(theApp.m_ScreenZoom);
              // Sätt fönsterrubrik från rapporten
              Floater->SetWindowText(title);
              // Puffa på så att den kan ändra storlek på Crystal-kontrollen
              Floater->Size();
              // Visa fönstret om det är stängt
              if(!Floater->IsWindowVisible())
                   Floater->ShowWindow(SW_SHOW);
              rc = true;
              if (child!=NULL) *child=Floater;
         else
              AfxMessageBox("Kunde inte skapa fönster för utskrift",MB_OK);
              rc = false;
         return rc;
    Floater is simply a dialog that holds the Viewer control.
    For some reason does the Viewer not obey the printer selection done in the report

  • Changing the default printing order

    How do I change the printing default order from "back to front" to "front to back"? Until now, I change it every time I print more than 1 page, but I'd like to change my default. I've looked at all of the Edit Preferences and can't find the option I'd like to change.

    Take a look in the Export Action script of whatever adapter you are using. This is where the output format is defined.
    Forgot to mention if you are using the Essbase adapter you can do this via setting the calc sequence for each dimension which will determine the order it is displayed in the output file. This can be set in the workbench or web client
    Edited by: SH on Oct 18, 2011 9:43 AM

  • Adobe Reader changes Windows default printer?

    Hello.
    Currently our customers are complaning about the anomaly, that the default printer is sometimes changed after printing *.pdf's with Adobe Reader. I have never heard of a problem like this before and am even not able, to confirm this behaviour.
    That is why I want to ask you, if you have ever heared of something similar like this. Under which circumstances does Adobe Reader print on another non-default printer automatically? Btw. I don't know how to handle this problem so far.
    Yours,
    Moeki.

    Interesting! What was the color scheme prior to launch? Does this problem happen on every launch of Reader X? What if you restore the color scheme and re-launch Reader? If possible can you stick a screenshot of the issue you just described.

  • How can I change the default "Print to File" location from the Mozilla Firefox directory?

    I have looked all over the Internet to find the solution to change the default of the location Firefox create the files created from the Print to File option. I have modified all of the instances of "print_to_filename" as one forum suggested. But, that was unsuccessful.

    Autre façon : Ouvre un nouveau document. Il va être en A4. Dans le menu Fichier--->Format d'impression. Une fenêtre apparaît. Dans la ligne... Taille du papier, tu choisis... Lettre US; tu fais OK. Ensuite tu sauves ce document comme modèle. Menu Fichier----> Enregistrer comme modèle et tu lui donnes le nom, par exemple... USLettre.
    Ensuite, va dans le menu Pages, va dans préférences et dans la fenêtre qui s'ouvre - Préférences générales - tu choisis : Utiliser le modèle... et tu cliques sur Choisir... à droite un peu en bas de Utiliser le.... et là, dans la fenêtre qui va apparaître, tu trouves le modèle que tu viens de faire...USLettre.
    Voilà. Chaque fois que tu vas ouvrir Pages, ce sera USLettre qui sera là par défaut.
    J'espère que ça va te satisfaire.
    Évidemment l'idéal serait de pouvoir changer la template Vierge par une template Vierge US... mais j'ai pas encore réussi.
    Message was edited by: BenwaR

  • When changing the default printer in windows vista why doesn't the default printer change in firefox (firefox was running when the default printer was changed)?

    I am not sure whether or not this is a bug or a feature, but I was running firefox on my laptop. I then went to add a new printer and set it as a default printer. When I went back to firefox to print, it did not automatically choose that new default printer as the printer of choice. I then had to choose the new printer manually to print to. This is merely a convenience issue but thought I would bring it to the attention of Mozilla in case.

    Hello bradleesargent
    as i can see the note in the kb article ([https://support.mozilla.org/en-US/kb/how-print-websites#w_print-window-settings Print window settings]) ''The default printer is the Windows one. When a web page is printed with the selected printer, it becomes the new default printer.''
    do you have your previous printer also, or you uninstall the previous printer and then install the new one and make it default ?
    I think firefox must be closed when you set up a new printer. Do you have it open when set up the new printer ?
    thank you

  • Changing Permanent Default Print Settings

    Hello All,
    A few months ago, I somehow managed to change my print settings permanently to B&W. I know it wasn't just changed to grayscale through the print menu when I try to print a document. I have a Canon MP470 and am running Leopard OS X. I remember having to go through lots of layers of menus to get it to do this, I just don't remember how I got there.
    A page somewhere on the internet showed step by step how to do this. I can no longer find it. I know my printer still prints color as it will still make color copies using the copy machine function.
    Does anybody have any idea how to undo this?
    Thanks for your help!

    The location of the grayscale setting would depend on which driver you are currently using. There are two Canon provided drivers, a v6.9.3 and a v10.1.2 'CUPS' driver. There is also a Gutenprint offering and there is also PrintFab.
    If you open System Preferences > Print & Fax and select the MP470 in the Printers list, you can check the version of driver you have by selecting the Options & Supplies and looking at the General tab.
    For the v6.9.3 driver, the Grayscale Printing setting is located under the Quality & Media menu. If you selected this and then made a Preset, then that would give you a default b&w option.
    But your post suggests that you changed more than this so I'm not sure what you would have done differently to the above. There is no function to default the printer to b&w via the machine control panel.
    If you want to keep your locked b&w driver you could add another printer queue using the same version driver or the other version driver.
    Or if you want to remove the current b&w driver, then you could reset the printing system and then add a new printer queue.
    PaHu

  • How to change the default print template for broadcast PDF Export

    Hi,
    I have currently designed a print template for printing purposes and use this as the template for the print button(Export to PDF),if i were to click on this button the output pdf is the desired PDF. But if i were to broadcast the template with output format as PDF it picks the layout of the current template, how do i set broadcast to pick up the print template also???
    Further how to insert a page break in a PDF print template.

    Hi Nagesh,
    These setting are for
    1.Adhoc Template for Queries
    2. Adhoc Template for reports designed through report designer
    3. Template for query precalculation
    4. Template for displaying broadcasting wizard.
    When we use broadcasting from query designer  to email PDF's the system uses 0QUERY_TEMPLATE_BROADCAST_PDF.
    From WAD the system uses the current template layout as PDF Layout.
    P.S: OSS note 1054460 -<b>Depending on the BI object type and possibly other criteria, different Web templates are used in BI broadcasting to generate PDF (and PS or PCL) formats:</b>
    <i>For Web templates: the Web template itself is used</i>

  • How do I change the default printer in the newest version of adobe reader?

    Just downloaded the newest version of adobe reader and am unable to link it to my cannon printer

    Hi fldiva,
    Do I understand correctly that your Canon printer doesn't show up in the Printer drop-down menu in Reader's Print dialog box? Does it show up in other applications?
    Best,
    Sara

  • Acrobat X: Lost default duplex print

    When I upgraded, I lost the ability to duplex print by default and would like to know if I can restore it. I'm working on a mac and there is no duplex option in Acrobat's print command. My printer settings are set on duplex and it operates just fine in other programs. In Acrobat, I have to go into its printer settings via Properties to select duplex. I just want Acrobat to not override my printer settings and default to single-sided when I want 2-sided. Is there way to at least change the default print settings in Acrobat without having to change the Properties setting for each and every file? What an odd feature for Adobe to put into this software and I hope a fix is imminent if there is no simple solution in the current version. One expects an upgrade to be an improvement only in areas where it improves the workflow, not detracts from it, yes?

    Dov Isaacs wrote:
    Please understand that this forum is absolutely not a means of communicating directly with Adobe. It s a User to User Forum primarily provided as a means of end users assisting each other. Adobe executives and management do not monitor these forums directly. Some Adobe employees do monitor these forums, pretty much on a volunteer basis and try to provide some assistance and feedback to decision makers.
    The changes in Acrobat & Reader 10.1.2 associated with printing were clearly a big problem. As far as we know,  no one actually lost the capability of controlling simplex versus duplex printing, but rather, a very ill-conceived mechanism was introduced that assumed that if your printer has duplex capabilities of any type, you would or should use them.
    The plans of record are to provide a fix for this issue in the next quarterly update to Acrobat and Reader due next month. There will be a control for duplex in the print dialog, but it will only reflect what you have already set in the printer properties (either on Windows or Macintosh). The dialog will allow you to change that setting while in Acrobat, but it will not make assumptions as to what you could or should do vis-a-vis duplex printing. In this respect, it will be similar to print dialogs in applications such as Microsoft Office in terms of allowing access to duplex printing, but not forcing it.
    However, there is something peculiar in your particular situation. Normally, with Acrobat & Reader 10.1.2, if the printer supports duplex as determined by the printer's PPD file (for PostScript devices) or from the driver otherwise, you would see a duplex control in the print dialog itself. The fact that your printer supports duplex (correct?) and that you aren't seeing the duplex control in the print dialog is a problem we aren't currently aware of. You are seeing the forcing of duplex without the ability to control it from the print dialog? Correct? I'll send the report of this to the appropriate group within Acrobat engineering.
             - Dov
    Hello Dov.
    Thank you for your input. Can you confirm that these strange printing issues would also cause my PDF files to print in color and 1-sided even when the default in Control panel for my printer is 2-sided and B&W?
    Thanks!
    -cw

  • Cannot change from System Default Printer

    Using Windows XP (still, I know) and Adobe Reader XI, I am unable to switch from the default printer to another printer in Adobe Reader. I am able to do this in all other applications except Reader.
    I can change the default printer in Windows, open Reader and print to another printer, but the print dialog box doesn't allow me to change the default printer.
    I can select another printer from the drop down box. Then, I'm unable to open the printer settings dialog. If I click print, it sends the job to the default printer instead of the one I've chosen.
    The issue persists for multiple users on this pc even after creating new user profiles in Windows. I have about 10 printers installed on this machine and this happens with all of them. Different makes and models (Brother & Konica Minolta mostly) and also the default Microsoft XPS printer all do the same thing.
    TD;LR: I can only print to the Windows default printer.

    function printFullPEng() {
    var pp = this.getPrintParams();
    var pSize = this.getPageBox("Crop");
    if (pSize[1] > "792") {pp.printerName = "\\\\print-server\\HP Designjet 4000 HPGL2/RTL (Copy 1)";}
    else {pp.printerName = "\\\\print-server\\TOSHIBA 4520C PCL6 - Engineering";};
    pp.NumCopies = 1;
    pp.pageHandling = pp.constants.handling.none;
    fv = pp.constants.flagValues;
    pp.flags = (fv.setPageSize);
    this.print(pp);
    This is tied to a menu button. As I say, it works flawlessly in Acrobat 9, but will not change printers in Acrobat X.

Maybe you are looking for

  • Open firmware startup disk by default

    I have an iMac which by default always goes to the open firmware startup disk screen. How do I get rid of this? I have tried zapping the PRAM, reinstalling the OS and a different hard drive. There are no problems w/ the functionality of the computer

  • Windows 7 Driver Issue

    I cannot get my windows 7 home premium N (64-bit) PC to load the driver for my iphone 3g. I formatted my hard drive and reinstalled a fresh OS (windows 7) trying to fix this issue (moments ago). The computer knows that it is an iphone. It shows up in

  • PDF from single website opens as a .gif

    I'm running Acrobat X and when I go to a specific website and attempt to open a document they have in .pdf format it fails. I noticed that when I attempt to save the document, instead of opening in the browser, it saves it as a .gif instead of .pdf.

  • Streaming video on youTube

    My neighbor gave me an eMac for my 9 yr old daughter to use. I upgraded it to OS 10.4.11 and it works fine except for watching streaming videos. Both Quicktime and Flash stutter in Safari, but since I've reinstalled Quicktime it works only on Firefox

  • Where's the Reload button on Firefox 6?

    I installed Firefox 6 and now I cannot locate the Reload button. On my previous version it was just to the right of the forward/back arrows.