PSE 9 Print default change?

How do I change my default print values in PSE 9?
(For example, I want the default "Paper Tray" to be "Paper Feed Switch" but I need to change it from"Auto Sheet Feeder" every time I print a different file.)

Sometimes this is due to write permissions. You could try right clicking on the editor application and selecting “Run as Administrator“ on Windows Vista or Windows 7.
Alternatively navigate to C:\Program Files\Adobe\Photoshop Elements 7.0
Right click on the folder Photoshop elements 7.0 and choose properties.
Then click on the security tab and make sure Group or user names is set to Everyone.
Click to highlight Everyone and if necessary click the edit button and select Allow Full control.
PSE should then remember your previous settings rather than reverting to default.
N.B. Example for PSE7 - choose your own version.
If you don't have Everyone - In Windows - open Windows Explorer and navigate to:
C:\Program Files\Adobe
Locate the Photoshop Elements 7 folder (the one with the blue PSE logo)
Right click on that folder and choose Properties - then click the security tab and make the following changes:
1. Click on the edit button to change permissions.
2. Click Add and type the word “Everyone” in the Object names Box (without the quotation marks) and click OK.
3. Under group/User Names select everyone so that it becomes highlighted.
4. Put a check mark in the box against Allow Full Control and click Apply.
N.B. for Windows 64 bit navigate to Program Files (x86)

Similar Messages

  • 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

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

  • Printing Paper Changes not Taking Effect

    Hi,
    I recently upgraded to Windows 7 from XP and I also have Acrobat 9 Pro installed.
    When I use a different size page, in this case 11x18, and go to print it will start out as our printer default 8 1/2x11 which is should be. I would then proceed to go to the printer preferences and change the paper size and click "ok" to get back to the main print page where I would notice that the print preview would not update ot the new size. If I proceed to print with it showing the 8 1/2x11, even though it is set to 11x18, it would scale it to the 8 1/2 x11. What I have found to work around it is if I click and then unclick the button "Choose Paper Source by PDF Page Size" it would scale the paper to the correct size. I use different size paper and do not want to change the default size.
    This is sort of a hassle and I sometimes notice that when I'm going from 11x17 to 23x20 it would not even update and would not allow me to print on the correct paper size.
    I am using a sharp AR-M207 printer. I have tried to use the PCL/PS/PPD drivers for the latest version and they all have the same effect. Additionally Acrobat 9 Pro is also up to date.
    Is there an update or a patch somewhere or another reason why this is occuring. I am not included to switch printer mainly because I do need a large format printer and its difficult to find one.
    Thanks,

    Daniel,
    Yes I am currently using the most recent version of Acrobat and Printer Drivers.
    I have not tried the Help > Repair option. I actually noticed that this issue occurs on my laptop as well, same operating system (Windows 7). It is possibly an issue because of compatability with Windows 7 although there might be a workaround for it.
    I have tried a different printer, ie my laptop, and the same problem occured.
    I can look for outdated Sharp print drivers but that might be difficult to find.
    Also I currently use Windows 7 64bit.

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

  • Windows 7 Thinkvanta​ge Access Connection​s 5.41 does not stick to printer default

    hi
    i have installed windows 7 on 3 lenovo laptops (x60s, x61, t500) and installed AC 5.41 but and have configured them with 5 profiles each with their own default printer preferences but for some reason when i toggle from 1 profile to another the default printer setting does not change accordingly
    this is really annoying as i have managed to print documents to the wrong printer a couple of times and it seems to be accross the board on all my windows 7 installations
    is this happening to anyone else?
    cheers

    no i haven't
    i have now deployed 5 thinkpads (x200 with lenovo windows 7 installation disk) and 4 X61 and T500's with my own windows build and downloaded all the thinkvantage software using system update (had to manually upgrade to 5.42 as system update did not pick up on the updates)
    the printer default sometimes swaps over but often it just defaults to the original ms windows xps writer and not the the one i had specified.
    very frustrating, luckily a lot of my users do not switch locations very often and only print from 1 location but i have some laptop roll outs planned for users who do use this printer default settings a lot and i will get some stick for this.

  • How to set printer default to Tray

    Just purchased an Epson WorkForce 845 all-in-One. The printer has two paper trays. Paper tray #1 can be adjusted for paper size and envelopes. Tray #2 can only handle 8.5x11 inch paper. I would like to set the print default via ethernet to use tray #2, with a separate saved setting to use tray #1 for envelopes. After trying to do this via the Print & Scan System Preference in conjunction with a print dialog in Pages, the printer sent back an error message to the Epson WorkForce 845 printer status window.  I eventually deleted the printer from the printer list in the System Preference and reinstalled it. Everything prints normally if each print job is set up each time in the application print dialog. That means reloading paper or envelopes after each type of print job. The solution is probably pretty simple, but so far, has eluded me. Any thoughts?
    2011 iMac 20.5 inch using OS 10.7.3 with 12 MB Ram via ethernet.

    I just got this printer (Workforce 845) and had similar frustrations with the unit as it defaults to print tray 1.   This is the only tray that will hold 4x6 photo paper, so everything, including the test page, printed onto the photopaper.
    I am running on a mac runing Lion 10.7.X
    I  tried many things including contacting epson and they said "On a Mac, you are unable to change the printer's default settings."
    The trick is to use the printer pop up (accessed when printing) by selecting the drop down in the middle of the screen that, on my mac, shows that app's name that is running.  Select the "print settings' line and set the tray to cartridge 2, then save this as the default by going to the printer 'presets' drop down (second from the top) and select'save current settings as Preset...".   It's really pretty simple, but I wasted a lot of time trying all the other options, so I thought I would try to save others the hassel.
    This can be seen in the user manual under: http://files.support.epson.com/htmldocs/wf845_/wf845_ug/index.html
    Additional info:
    Access to the printer can be gained from your browser by going to URL: http://epsonbb82c2.local./PRESENTATION/HTML/TOP/INDEX.HTML?
    but this didn't help to configure the trays, but it does allow for a firmware update that I decided to try.
    Epson's late response to Lion drivers (you must download these from the Web and they warn against using the CD drivers that come with the printer if you run Lion) and there poorly implimented  mac s/w drivers tainted my first impressions for this product.
    Epson: Hire a Mac programmer and improve your firmware!

  • Printer default number

    Hi:
    How to set a user's printer default page number to 1.
    An user said:
    "Once she is ready to print where it says "Print the Output to:" the number of copies should always be set to 1 but it keeps defaulting back to 0. Client goes into settings to change the number of copies but it keeps changing back to 0. Client states that all the buyers in her department have the default set to 1 and it was set by IT."
    Thanks.
    Edited by: user13610526 on Sep 27, 2011 9:00 AM

    Check the profile option value of "Concurrent:Report Copies" for this user -- How to setup Printer Arguments Within Oracle Applications [ID 73804.1]
    Thanks,
    Hussein

  • Mac print default settings by document?!

    i am on a mac running Mountain Lion. I have an HP 8600 and an Epson Wide Format. I have documents that are 11 x 17 and 12 x 18. these all seem to default to print on my 8600 at 8 x 11.
    this means that every time i try to print these documents i have to hit PAGE SETUP, then I have to pulldown to the EPSON, then i have to pull down to 11 x 17 PAPER, then i have to hit OK, then i have to pull down to ESPON AGAIN (because the default printer that i use is the 8600 for 8 x 11 prints).
    half the time i make some kind of mistake and the document comes out on the 8600 on 8 x 11 at the /correct/ size (even though it is missing half the document) /or/ it comes out on the Espon on 11 x 17 paper as if it was being scaled to fit for 8 x 11.
    is there some way to figure out how to print out of Acrobat X in some more reliable way? is there some technical document that explains this? the software suite was like 1200 US or something i would think that i would not continue to have these kinds of problems.
    is there some step by step guide for setting up presets? another solution?
    it took me about a year and a half to finally figure out how to simply print to 12 x 18 paper (don't ask) and i am still manually swapping out paper trays for slot 1 so that i can print on 11 x 17 or 12 x 18 respectively simply because trying to find another variable in these dialogs is like adding a multiplicity factor which makes the possible combinations like trying to calculate the parabolic trajectory for landing on the moon from earth.
    should i just give up and print out of Mac Preview?
    anyone able to explain why this is so complicated?
    THANKS

    I work at a PC, AA9, but is there an option in your print dialog
    Choose Paper Source by PDF Page Size?
    assumes the documents are 11 x 17, 12 x 18
    Optionally, you might create a 2nd (and 3rd) instance of your Epson printer and change it's default paper size to 11 x 17 (12 x 18) and name the printer Epson Tabloid (Epson Tabloid Extra). Choose the appropriate printer per the document. 

  • Printing defaults

    I am trying to set the printer defaults, having reinstalled the driver software.  I have selected the printer in Devices and Printers.  The printer name has been shortened to C410 for ease of recognition.  I right click and select printing preferences and change the paper type from letter to A4 on the General Everyday printing tab and click Apply.  However when I move to a different tab and then back to General Everyday printing the paper type has reverted to Letter.
    What am I doing wrong and how can I set the defaults to print only on A4 please

    Hello elliottrob,
    Welcome to the HP Forums.
    I see that you are having some issues with the print settings.
    Once you have made all the changes for the A4 printing, do not select the General Everyday printing tab.  This will default the printer back to the Letter size paper every time.
    Make the changes for the A4 printing and leave it at that.
    I hope this information is helpful.
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you. If you are calling within North America, the number is 1-800-474-6836 and for all other regions, click here: click here.
    Thanks for your time.
    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

Maybe you are looking for

  • Error on the error log of the apache

    Hi, my site configuration is an oracle application server is installed on a dell server power edge 2800 type of installation is forms and reports . i am not using all the services i am using only report services and java service. i am deploying on th

  • Image motion blur effect

    Hi, Anyone know how to acheive these motion blur effects, like in this site. When you click on an image it zooms up in a blur? (in the site click one of the images behind the sketch book. Thanks....

  • Window 7.8 update

    Is window 7.8 update available for lumia 710. & if available then on updating my data will remain safe or not. Solved! Go to Solution.

  • Invalid alert ID

    Hello there, I have a form with alerts. I always use FIND_ALERT before SHOW_ALERT. Suppose a user updates a record and tries to exit the form, i have an alert that should ask " do you want to save changes". Here's my key exit code Declare Msg_Lvl Num

  • Scrambled, Mixed E-mails

    Windows 7 64-bit SP1 Intel Core i7-3770 CPU @ 3.40 GHz 32.0 GHz RAM NVIDIA GeForce GTX 580 I think I have a disaster here and I need help, please. I just started Thunderbird and opened an e-mail that I had previously viewed. The contents were NOT the