Printer defaults won't change

Friends,
I'm trying to create some new printer presets for printing from Safari. The problem is that the printer always defaults to 4x6. It does so even if I change the default paper size and click "save" for the preset. What am I doing wrong? How can I convince the computer to save the paper type I want?
I have an HP 8450.
Thanks!
Steve

If you go to the "Print & Fax" in "System Preference" you can choose the default paper size on the bottom of the panel.

Similar Messages

  • Mac only prints landscape, won't change orientation

    My Mac book pro will not print correctly to my two  HP Printers, 8600 and 4630.  Seems to want to print in landscape only, and if by chance I can get it to print in Portrait, it leaves about a 3 inch margin and cuts off bottom as if it is still confused and thinks its portrait.  I have been with both Apple support and HP support and they are baffled. They even remotely saw for themselves what was happening.  How frustrating!  If I want something to print correctly I have to print from IPad or Iphone and that works perfectly!  I really want a solution so that I can print from my computer.
    Weight Loss Coach
    www.winningchanges.com

    Welcome to the forums winningchanges,
    I saw your post about the printing issues you have been experiencing with both of your Officejet 8600 and 4630 models from your Mac computer.
    First of all, test the actual printer hardware by making a copy from each unit. If the copies work successfully, the printers test out fine and the issue would be software related.
    If the copies are successful we can move on to troubleshooting the Mac.
    Please let me know which Mac OS X you're running and also how your printers are connected to your computer. (Ethernet, wireless or USB).
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Please print from more than one program on your computer and let me know if the printing issue happens if you print from anyone, or is more related to one certain program.
    Thank you
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • HOW DO I CHANGE MY PRINT SETTINGS SO THAT THEY STAY SET TO MY PRINTER DEFAULTS?????????????????????????????????????????

    This one issue is probably the one thing that would make me abandon Firefox FOREVER (besides the problems with Flash). If I change print settings for ONE COPY I have nothing but HELL trying to get my print settings BACK to my PRINTER defaults. Why can't Firefox be like the REST of the computer world and have the PRINTER DEFAULTS override Firefox?????
    I made a change yesterday and I have NOT been able to get it changed BACK to the defaults.
    Is thois too complicated?

    Hello Grillmark55 , any luck if you [https://support.mozilla.org/en-US/kb/fix-printing-problems-firefox#w_reset-firefox-printer-setting Reset Firefox printer setting] ? , if the above link is not helpful then see: [https://support.mozilla.org/en-US/kb/fix-printing-problems-firefox#w_reset-firefox-printer-setting Reset all Firefox printer settings]

  • Change Printer Default Page size to A4 from Letter in Firefox

    Firefox overides printer default page size every time I print. I need Firefox to print to A4 but it automatically sets the Page size to Letter. I have to manualy change the size each time I print.
    There are no options in Firefox to change this setting permanently. I am running the latest version of Firefox on Windows XP.
    In control panel the default page size is set to A4 which Internet Explorer and other applications use correctly.
    Thanks,

    I solved it! For anyone having a similar problem try this.
    Change the default printer, choose another one.
    Change something in that printer and close firefox.
    Reopen firefox and choose yet another printer (not the first one).
    Change something in that printer and close firefox again.
    Reopen firefox and choose the first printer. Select A4 as default paper and close firefox one last time.
    Reopen firefox and the problem should be gone. Weird, innit?

  • Change printing default presets?

    Whenever I print, currently on an Epson NX420, I have to go in and change one of the presets for color options to OFF (no color adjustments) and I'd like this to be the default. Some pages seem to take a very long time to print if I haven't changed this setting.
    I can create a new preset; but would like to change the default altogether.

    You can change the printer defaults via the CUPS web page. But by default, the CUPS page is blocked. To enable it, open Terminal and type "sudo cupsctl WebInterface=yes" (without the quotation marks). Enter the admin password when prompted and then refresh the browser view.
    With CUPS web page open, select the Printers tab and then select the printer you want to modify. Then from the Administration drop menu, change to "Set Default Options".
    This will show a new page with four menu headings (links); Options Installed, General, Banners and Policies. Select General.
    Scroll down the list until you find the option you want to set as default.
    With the option select you then need to scroll down the list to the bottom of the page where you will see the ‘Set Default Options’ button.
    When you click the 'Set Default Options' button you will then be presented with an authentication window. Enter the account name and password that has been set as the admin for this Mac. And then press the Log In button. You will then see another page stating that the information change is completed.
    You can now exit the CUPS admin page and check that the change is set.

  • Changing Printer Default Setting

    Hello Folks,
    I got a requirement to change the printer default settings, but its not reflecting in ALV Reports.
    Any inputs? want to change layout to X_65_255
    Here is the coding i have done.Please let me know on Corrections.
        DATA: l_t_params LIKE pri_params,
              l_valid  TYPE c,
              l_f_repid      LIKE sy-repid.
        DATA: l_days       LIKE pri_params-pexpi VALUE 5,
              l_count      LIKE pri_params-prcop VALUE 1,
              l_list_text  LIKE pri_params-prtxt,
              l_text(12)   TYPE c.
    *&--FETCH DEFAULT PRINTER FOR A USER
        CLEAR usr01.
        SELECT SINGLE * FROM usr01 WHERE bname = sy-uname.
    *&--IF DEFAULT PRINTER DOESN'T EXIST SET IT TO 'LOCL'.
        IF usr01-spld IS INITIAL.
          usr01-spld = 'LOCL'.
        ENDIF.
    *&--GET THE EXISTING DEFAULT PARAMETERS
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
          EXPORTING
            no_dialog      = 'X'
          IMPORTING
            out_parameters = l_t_params.
    *&--MODIFY THE EXISTING DEFAULT PARAMETERS
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
          EXPORTING
            destination    = usr01-spld
            immediately    = 'X'
            copies         = l_count
            list_name      = l_text
            new_list_id    = 'X'
            line_size      = 255
            abap_list      = 'X'
            line_count     = 65
            layout         = 'X_65_255'
            receiver       = sy-uname
            no_dialog      = 'X'
          IMPORTING
            out_parameters = l_t_params
            valid          = l_valid.
        alv_print-print_ctrl-pri_params = l_t_params.
        CALL METHOD g_o_grid->set_table_for_first_display
          EXPORTING
            i_bypassing_buffer            = 'X'
            is_variant                    = alv_disp_variant
            i_save                        = 'A'
            i_default                     = 'X'
            is_layout                     = alv_layout
            is_print                      = alv_print
            it_toolbar_excluding          = alv_excl_func
          CHANGING
            it_outtab                     = $alv_outtab[]  "because with
            it_fieldcatalog               = alv_fieldcat
            it_sort                       = alv_sorttab
          EXCEPTIONS
            invalid_parameter_combination = 1      "header line when density
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4.

    Hi,
    Ofcourse, its different issue...Can you explain me why you have used the below code
    *&--GET THE EXISTING DEFAULT PARAMETERS
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
    no_dialog = 'X'
    IMPORTING
    out_parameters = l_t_params.
    I mean you are importing the existing default parameters but you are not modifying the parameters in l_t_params. I hope you are not required above code.
    Satya

  • Change printer default settigns for all sheets

    We are running Office 2007/2010/2013. Normally, our client send us an excel file with 20 or 30 jobs (sheets).
    Our Canon printer default settings is 2 sided on 1 page. When we change the default settings from 2 sided to 1 sided, we need to do it one sheet at one time. In other words, we need to do it 20 or 30 times for that excel file. We wonder
    how to change the settings from 2 sided to 1 sided that will change whole book settings.
    Bob Lin, MCSE & CNE Networking, Internet, Routing, VPN Networking, Internet, Routing, VPN Troubleshooting on http://www.ChicagoTech.net How to Install and Configure Windows, VMware, Virtualization and Cisco on http://www.HowToNetworking.com

    right click sheet1=>select all sheet=>set print on one side.
    KR

  • Changing Printing defaults in Adobe Reader XI

    Hi there,
    In the following thread (http://forums.adobe.com/thread/1108160) it was asked if the print setting defaults can be changed in Adobe Reader XI - this wasn't answered, and I'm wondering if there is a possibility that this can be done.
    Thank you!

    When you use Kaspersky software install the updates from Kaspersky.

  • Ordering Calendars for delivery in different countries?  Live in the UK and want to order a calendar for printing/delivery in Canada.  However - can't change the default country -even changed the address in my Apple Account, no result.  Any suggestions?

    Ordering Calendars for delivery in different countries?  Live in the UK and want to order a calendar for printing/delivery in Canada.  However - can't change the default country -even changed the address in my Apple Account, no result.  Any suggestions?

    The general rule is that the shipping address must be in the same country as the billing address of the credit card used to order. However, you can try changing the Print Products store in iPhoto's Advanced preference pane to Canada and try ordering again.
    Happy Holidays

  • X64 deskjet won't change pic sizes to print

    Scanner won't change pic sizes for printing

    Hello taco51,
    Welcome to the HP Forums.
    I see that you are having some scanning issues in regards to the size of the scan's.
    So I can better assist you, please respond with which Operating System you are running as well as the exact model of the printer.
    Which Windows Operating System am I running?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    How Do I Find My Model Number?
    Write me back when you have time and I will be happy to help.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Change printer default settings

    I have and HP Officejet Pro 8600.  The print default setting is to print colour.  How do I set the default setting to Black Ink  
    Regards

    Go to Devices and Printers, right click the printer, click Printing Preferences then go to Advance tab, usually there is an option there that you have to set to print only in grayscale. Hit Apply then ok, then close the window.

  • ID3 tags won't change...

    Hi everyone,
    i've a problem with my mp3 tags, i'm trying to organize my library trough updating the ID3 tags but it won't work.
    For example, I've 2 artists: ACDC and AC/DC, when I change the info artist into ACDC, it won't change anything and i'll still have both names aperaing.
    Worse, on some compilation, in my iphone, the album nam will appear as many times as there is songs... if I've 20 songs in an album called "Compilation 1" for example, the album "Compilation 1" will appear 20 times in my iphone list...
    any idea?
    thanks

    cedricsh wrote:
     However, they are not on my computer's hard drive but on an ethernet connected external drive, do you think it could be the problem ?
    seems very likely to me. - but I've never tried that. That's worth a seperate topic here, perhaps someone who's used one could reply, Barring that, See below (for a way to test)
    cedricsh wrote:
     I've already tried some of your , my last chance will be to reinstal iTunes, however, will all of my library be lost (i mean, will i have to re-upload all the songs ?, i've over 8000 songs so it's pretty long).
    No removing the program won't do anything to your music.  After you reinstall itunes first try copying a few songs to default location on your internal HD,  and see if problem still exists (make sure iTunes is pointed to it) THEN reestablish the external,
    PS: I forgot to ask Does your iTunes Prefs > Advanced Tab show the correct path to your media folder? Do you have the "Copy files to Media Folder when adding... "  checked?
    Warning: I don't know about iTunes Match: but I would definitely turn off all Automatic updating (everywhere iTunes, iPhone etc ) while you're messing with this.

  • I cant' print using firefox. print preview won't display, won't print, printing dialog box won't display, etc

    Seems like since I updated to firefox 5 I can't print web pages, print preview won't work. I click on the print option under file and nothing displays or prints.

    Try the Firefox SafeMode and see if you can initiate printing from within Firefox. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    # You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    # Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Printer defaults not propogating down to clients

    I've set up a copy of server 08 r2 as a print server for my organization. It is currently managing the print jobs for 5 printers, all Ricoh/Lanier. When I set up printer defaults like two-sided black and white the defaults do not show up on the print properties
    page for clients. I've replaced the driver by Ricoh/Laniers recommendation but the settings still do not apply to the clients. Any thoughts on how to force the settings out to desktop clients?

    One way to work around the problem is to modify the default Presets that are built-in to the driver.  The only downside (apart from the complexity) is that you have to push out a new print queue each time you want to change the Presets. See the proceedure
    below.
    Install the free 7-Zip file compression program
    Download the driver file from the Ricoh website
    Expand the driver files as normal
    Install the standard driver on a PC,
    Create the presets you want to make the default.
    Export the additional presets to a json text file using
    Manage Presets.
    Open the json files with a text editor,
     make sure the name_id field matches the json filename without the extension.
    The folder where the driver is expanded to should contain file called
    rica66cf.cfz, (this file is actually a compressed directory).
    Open the 7-Zip program.
    Navigate to the rica66cf.cfz file,
    right click the file and select 7-Zip > extract
    Select the same folder as the driver files as the destination,
    a new folder called rica66cf will be created.
    In the decompressed folder navigate to the gui/shortcut folder.
    The folder will contain a list of the standard presets that come with the driver.
    Open the shortcut_settings.json file with a text editor (notepad)
    modify the factory_shortcuts field to include all the defaults you want to be included in the modified driver (separated with commas and enclosed in Quotations)
    make sure the name is the same as the json file without the  extension as per 5.1 above.
    Save the file.
    Using 7-Zip navigate back to the original rica66cf.cfz compressed file.
    Right click and select Open Outside.
    The directory structure of the compressed file is shown in
    7-Zip,
    Navigate to the gui/shortcut  folder
    In windows explorer,  navigate to the expanded
    rica66cf folder
    Drag and drop your modified shortcut_settings.json file on to the open shortcut folder in 7-zip
    Confirm to replace the original Ricoh file.
    Also drag and drop the additional json shortcut files on to the same window, these will be added to the compressed folder.
    Close the 7-Zip window to save the compressed file.
    Open the OEMSETUP.INF file in the driver folder with a text editor,
    Modify the DriverVer field and increment the driver version  e.g from 12/14/2012,1.2.0.0 to 04/15/2013,1.2.0.1 .
    Save the file.
    You can now delete the uncompressed (rica66cf) folder
    Install the driver on the server by selecting the OEMSETUP.INF and share out as you would normally do.
    Presets should be installed.

  • How set printer defaults for a printer

    My motivation is to have my wife's new MacBook always print double-sided. Currently she needs to select the preset that we've made for printing duplex, but that's easy to forget to do.
    OS is 10.4.7
    Is there a way to set the printer defaults in this OS?
    I want to have duplex just be the default, even after reboot, and if she wants to print single-sided then she'd need to select the other preset.
    BTW: If it makes a difference -- We're using a Xerox 8550DP, for which the duplex selection is in the standard place of Print -> Layout -> Two-sided -> Long-edged binding
    (Some other printers require using the duplex selection in their own printer's section under that Copies & Pages dropdown menu but not this one.)
    Maybe I'm just not a very good searcher. I searched many here, MacFixit, MacWorld magazine, generally on the web. Looked in my David Pogues's Tiger book and Andy Ihnatko's Tiger book. I came up with nothing about setting printer defaults at all.
    I bet I can tweek it in a pref file. I hope I don't have to resort to a hack to do something this standard.
    Any help or pointers would be greatly appreciated!
    PB G4, MacMini (Tiger Server), MacBook Pro   Mac OS X (10.4.5)  

    I think you can do this. Set up a two-sided setting,
    and save it. Print with it. Then find the preference
    file com.apple.print.custompresets.plist, choose Get
    Info, and lock it.
    If you want to save another setting, you will have to
    unlock it.
    Hey this is only a workaround but it is a pretty darned good workaround, especially because it's not too invasive (only locking a pref file at the user level) and what's stored in that custompresets.plist file is com.apple.print.lastPresetPref, which is probably the key to your suggestion. I think I understand it, anyway.
    I followed that procedure, created a Custom Preset with duplex turned on which I named "Standard Duplex", then locked the file you suggest that's in my user's home Library. It survived app switching and a reboot. It seems to work great, and I can still use the Standard setting as well if I want to. I even chose the custom setting and although it's locked the temp changes I made were enacted (I chose to print this page, scaled to fit a #10 envelope) and that worked too. The Standard or other presets can still be chosen when you want to use those, and the app remembers the last setting through the rest of the session, it's just that upon opening an app the default is now my custom "Standard Duplex". This does what I want.
    I think this is a great workaround. I'm going to go load it onto my wife's MacBook. I suppose I should mark this solved even though there's no real, y'know, user-manual way to do this. Maybe something I'll just hope is a feature in Leopard.
    Thank you Bruce and all the other helpful folks who pondered on this one! Heh, I'm sure 1/2 of the tree population thanks you too.
    PB G4, Mac Mini G4, MacBook Pro, MacBook   Mac OS X (10.4.7)  

Maybe you are looking for

  • The publisher in the uploaded package does not match the expected publisher x2

    I spent an hour with a very helpful MS tech support guy today to try and resolve this issue to no avail.  He ensured it wasn't on their end within the Dev Center which means it would lie in the App Studio Beta team's end. So I have double and tripled

  • Is Chrome compatibile with Snow Leopard?

    I am having problems with Google Chrome Version 22.0.1229.79 in OSX (10.6.8). Adobe Flash Player doesn't work and some sites that functioned just fine in Safari Version 5.1.7 (6534.57.2) don't respond when I use the touchpad to click on icons/items.

  • Fresh install, random 100% drive usage and system wide lag.

    Hi there, i just fresh installed Win 8.1 after having the issue of a svchost thrashing 100% disk access for minutes at a time and lagging whole system inc mouse pointer to the point that apps and games start to crash and the issue has not gone away. 

  • Photo won't open in editing software

    I have set iPhoto to open Elements 4 when I edit a photo. When I try to edit a photo, Elements opens but the photo doesn't come up. Any help would be greatly appreciated! Many thanks.

  • I just got a replacement 4s and now i need to reload my ringtones

    (that I made for the other one)  but the "new" i-tunes doesn't have the same feature to do this.   help!!!!   i-tunes isn't intuitive on my PC.. and the "back up" didn't just automatically reload my ringtones!!!