Set default printer in Photoshop CS4

I'm a long-time Photoshop user (since Photoshop 3), upgraded to CS4 many months ago, and just updated my printer.  It is one of these all-in-one jobs that prints, copies, and faxes.  It has two printer device drivers: one for normal printing and one for the fax function.  The problem is (I think) that it seems to default in Photoshop to the fax function.  Therefore, when I try to print out a 4x6 photo @ 200ppi, it still defaults to 8 1/2 x 11 format (that you would get with a fax machine).
In CS4, from the main menu, File > Print.  In the pop-up it says 8.5 ins x 11in.  I checked [X] Scale to fit Media, and now it says print resolution 109ppi (yikes ... I wanted 200ppi).  "Bounding Box" was checked as a default, so I left it checked (what is that, anyway)?  The 8.5 x 11 does not go away.  Clicked [Print].
A Print menu pops up.  It says, for some strange reason, HP Officejet Pro 8500 A909g Series fax ... yikes ... in last screen it didn't say fax, so I selected the 8500 option without fax (presume that is the printer). Clecked Preferences, and got "Printing Preferences" popup.  My default printing shortcut was selected (which is for mornal B&W draft-quality text) -- so I checked Photo Printing-Borderles.  Paper size defaluted to Borderless 4x6in, HP Advanced Photo Papers, Best Quality, grayscale off, and changed orientation from landscape to Portrait.  Under "Features" Basic Options were HP Advanced Photo Papers, Best Quality, Portrait (instead of Landscape) ... paper size was set to Borderless 4x6in.  Print in Color.  Clicked OK. That closed the Popup and returned me to the Print panel.  Clicked "Print"
Got a 1.25" wide by 2" high print ... NOT a 4x6.
As I dig down into the menus, it appears to be initially defaulting to the "FAX" drivers for CS4, not the printer drivers.  That's probably why it keeps coming up 8 1/2 x 11 at 109ppi.
What did I do wrong?
Thanks !!

Photoshop CS4 uses an old (introduced in Win16?) printing API that limits the printer name length to 30 or 31 characters. With your printer name, that gets you halfway into "Series" and anything past that will be ignored.
The simple solution is to rename your printer to something shorter. Go into the control panel, printers and faxes, and right-click on the printer and choose "Rename" and rename the printer. That should resolve the problem.

Similar Messages

  • Set Default Printer based on user setting using Powershell script

    Hi 
    I would like to create a script that runs on user log off and captures the default printer (set manually by the user) and then another script to reapply the settings (saved upon log off) when the user logs back in.
    This is because local printers are set as default printer (PDF Creator Programs) when we all use Network Printers so this means a user has to set default printer to the network printer all the time.
    I have found this script to start with:
    $Printer = Get-WmiObject -namespace root\cimv2 -Query “select * from Win32_Printer Where Default = TRUE” -Impersonation 3 | select name | out-file C:\temp\Printer.txt
    But the out file looks like this:
    name
    \\PrinterserverName\Accounts01
    Which I dont see how it can be used on another script plus there are spaces after\Account01 
    Any Ideas please?
    M
    Maelito

    Hi Maelito,
    According to your description, you want to export the default printer name to text file, then read this printer name from text file and set the default printer via Powershell:
    #save printer name to text file
    Get-WmiObject -namespace root\cimv2 -Query “select * from Win32_Printer Where Default = TRUE” -Impersonation 3 | select -ExpandProperty name | out-file C:\temp\Printer.txt
    # read printer name from text file and set default printer
    $name=get-content C:\temp\Printer.txt
    (Get-WmiObject -Class Win32_Printer -Filter "Name='$name'").SetDefaultPrinter()
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Unable to print from a Mac using Maverick 10.9.2 on an Epson Photo printer with Photoshop CS4. Can you help?

    I am trying to print in Photoshop CS4 on an Epson Photo printer (3880) from my Mac. I just upgraded to Maverick 10.9.2 when the problem started. Can you help.

    I have the answer. It took quite a while but I know why the 3880 won't print from Photoshop 4 with Maverick. It is due to the Epson .icc page description files. The way to solve the problem is to make your own .icc. OK, so you don't know how to do it. This is what I did so now I get the quality prints I expect from an expensive printer.
    You need to go to www.datacolor.com/spyderprint and purchase the Spyderprint hardware and software. It comes as a package for $300 to $350 depending on if you get a sale. The software will print on the 3880 test sheets of color blocks. With the hardware reader you then read the colors on the test sheets printed. What this does is match the monitor image with the printer, ink and paper you used. It makes an .icc page description file for you to select instead of the Epson .icc file. When you print again select the new .icc file and also choose "Printer Manages Colors" instead of "Photoshop Manages Colors" I know this is usual but it works. When you are done you will be smiling too with your beautiful results.
    One other thing. If you want, it is optional, also purchase the Spider 4 Pro for $150. It calibrates your monitor and helps make excellent prints.
    I understand it is more money and you already probably have a good computer, expensive camera to go with the 3880 so spend the extra money so it all works together.
    I hope this helps.

  • Group Policy - Computer Startup Scripts - Add/Set Default printer

    Good Morning.
    Let's say we have 2 offices, A and B, and only 1 user.  The user is using Roaming Profiles.  Each office has its own printer.
    What I am trying to do, is make a Startup script that is specific to the COMPUTER being logged into so when any user logs into that computer, they get the printer in that office defined and set as default.
    I am able to do this successfully with my script but ONLY if i have the script be on the USER side of GP (i.e. in the Logon script section)
    That is great that that is working however, when my user goes to Office B, they still get mapped to Office A's printer if I use that method.
    So I figured I could just modify my GP and run the same script from the STARTUP section of the computer, rather than the LOGON section of the user.  It does not work.
    Here is my script:
    Set WRFCUNetwork = CreateObject("Wscript.Network")
    PrinterPath = "\\fileserver\MAINTELLER"
    PrinterDriver = "PrinterDriver"
    WRFCUNetwork.AddWindowsPrinterConnection PrinterPath, PrinterDriver
    WRFCUNetwork.SetDefaultPrinter "\\fileserver\MAINTELLER"
    This is where I Have the script placed:
         Computer Configuration -> Windows Settings -> Scripts(Startup/Shutdown)
    Once i'm in there, I double click Startup, click Add, and select my script which is named:
         MainPrinterSetup.vbs
    I have this GP applied to ONE OU, and that OU has ONE computer in it (my test computer)
    I login with a brand new user called "testuser" (creative, huh?) and basically nothing happens
    except they log in and have some Microsoft Document Image Writer printer set as default (which by the way sure does slow the PC down to the point of it almost being broke if anyone actually tries to print to that by accident)
    No Main Teller Printer, no anything.
    The strangest part about this is, if i apply this script to the user LOGON scripts, it works fine, the printer is there, and is set as default. (but see above why that wont work for my situation)
    So obviously the script works fine, but I guess i'm missing something when it comes to applying GP's to Computers rather than Users.
    Can anyone shed some light as to why the script is not running (i'm guessing the script isn't even attempting to run, rather than failing, but i have no way to know that)
    Thank you in advance!!
    Derek Conlon
    Network Administrator
    WRFCU
    EDIT:  Here are the PC's info that i'm working on:
         Server:  Windows Server 2003 Standard Edition (where my GP's are created and managed with AD)
         Target PC:  Windows XP Professional SP3
    EDIT #2:  I manually navigated to the Script file after logging in and "opened" it and it added and set the default printer no problem.  the issue is definately with the script running at startup.

    I wanted to clarify a few things:
    1. While it is true that printer connections are usually per user, it is definitely possible to create "global printers".  There are a number of ways to do this, but two methods that come to mind are using:
    a. "Rundll32 printui.dll,PrintUIEntry" option with the "/ga" switch.  The "/ga" switch is the key here since it allows you to deploy printers "per machine" instead of "per user".  More information
    about this is available at:
    http://members.shaw.ca/bsanders/NetPrinterAllUsers.htm
    http://technet.microsoft.com/en-us/library/ee624057%28WS.10%29.aspx
    http://www.computerperformance.co.uk/Logon/logon_printer_computer.htm
    http://www.robvanderwoude.com/2kprintcontrol.php
    b. The Print Management console that is available in Windows 2003 R2 and higher can help you deploy printers "per machine" in addition to "per user".  More information about this is available at:
    http://www.czsolution.com/print-management/print-management/print-management-console.htm#DeployingPrintersByGroupPolicy
    http://technet.microsoft.com/en-us/library/cc753109%28WS.10%29.aspx
    2. As Guy mentioned, Group Policy Preferences can help set the default printer.  But there is another way to accomplish this.  The problem with the computer startup portion is that it runs before the user logs in.  And applying this script
    in the login script section would not work per computer unless you used loopback processing.  So another way to do this is to place a script that sets the default printer into the "All Users" startup folder.  Items in the "All Users"
    startup folder run for any user that logs into the computer, but it runs in the user's context.  So, this script would effectively set the default printer on a "per machine" basis.  The script method is a cruder way to approach the problem,
    but it will help get the job done.  Here are some resources on setting the default printer via script:
    http://www.intelliadmin.com/index.php/2007/08/set-default-printer-from-a-script
    http://www.computerperformance.co.uk/ezine/ezine17.htm

  • How to set default print orientation in oracle reports 6i?

    Can anyone please help how to set default print orientation of Oracle Reports 6i? Currently document is printed in Portrait orientation, but I need to print it in Landscape orientation. Is this possible?

    It is solved now. Go to Layout Model -> Main Section, Press F4. In the property pallet select the Orientation that is required to be selected when print is taken for that report.

  • Setting default printer with printers deployed via print management

    Would like to set default printer on a windows 7 workstation to a printer deployed through group policy using print management.  However whenever machine reboots the defualt changes to a local printer XPS or something else.
    HOw can I set the default printer to one of the deployed printers?

    Even though this is a "machine" connection, the connection is created in each users security context.  Default printers are tied to user profiles and settings.
    I'm sure what is happening is the connection is getting created after the system sets a default or the network path is not yet available when the default printer is set.
    You can use prnmngr.vbs to get and set the default.  If get returns XPS printer, then set can change to one of the valid connections.
    Alan Morris Windows Printing Team

  • Setting Default Printer on Client Machine using Webutil

    hi.........
    i have configuired webutil on Application Server.
    i want to develop a form using webutil from which user can set default printer from client's machine.....
    i have tried using CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY();......BUT NOT YET SOLVED..
    Is there any other solution except using CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY();
    pls help me asap........

    Swapnil,
    There are a lot of posts about this. I suggest you search the Forms Forum for 'WebUtil default printer' and see if you can find some that has solved this issue.
    Sorry, I could be more helpful. I started looking through these posts myself and finally decided I was the wrong person doing the search! :-)
    Craig...

  • How to set default Print layout in SDK!

    Hi All
    In Form Delivery (ID=140) I want to Add Button to set default print layout by Addon.
    Please let me know the interface and the table to do it. Thanks

    Hi Tao,
    there's a vb6 sample in the DIAPI documentation
    Sets the specified report layout as default
    Dim oCmpSrv As SAPbobsCOM.CompanyService
    Dim oReportLayoutService As ReportLayoutsService
    Dim oDefaultReportParams As DefaultReportParams
    'get company service
    oCmpSrv = oCompany.GetCompanyService
    'get report layout service
    oReportLayoutService = oCmpSrv.GetBusinessService(ServiceTypes.ReportLayoutsService)
    'get report layout params
    oDefaultReportParams = oReportLayoutService.GetDataInterface(ReportLayoutsServiceDataInterfaces.rlsdiDefaultReportParams)
    'set the report layout code
    oDefaultReportParams.LayoutCode = "POR20005"
    'set the report code
    'the report code is the document type code (e.g. POR2=PurchaseOrder)
    oDefaultReportParams.ReportCode = "POR2"
    'set the user code
    oDefaultReportParams.UserID = 1
    'delete the report layout
    oReportLayoutService.SetDefaultReport(oDefaultReportParams)
    i hope it helps you
    regards
    David

  • How to reset the factory defaults for Adobe Photoshop CS4? [was:need assistance]

    How to reset the factory defaults for Adobe Photoshop, CS4.  My 'image size' box is not quite right. Thank you.

    How to delete/reset Photoshop preferences
    Preference file functions, names, locations | Photoshop CS4
    To reset within the Image Size dialog press Alt (Option on Mac) and click Reset.

  • How can I set default printer options on an iMac for an HP pro 8500 printer to print in draft mode?

    How can I set default printer options on an iMac for an HP pro 8500 printer to print in draft mode?

    When you use the Canon driver, the 2 sided printing is set in a different location. There is an entire menu dedicated to it (at least on my mx892). The printer dialog box has a menu selector in the middle of the screen (I think it says "layout" by default). If you click on it, you will see the duplexing options at the bottom. Much more flexibility than the single checkbox available with "airprint". The interface is unusual (at least for me) but you can pre-set up many different configurations (Fast Duplex, Fine Single-sided, B&W, Photo, etc etc.)

  • Set default printer in free Reader app for Windows 8?

    Is it possible to set a default printer for the free Reader app?  We're new to Windows 8.  We set our HP as the default printer in the windows control panel, and the setting works for our other programs like word and IE, but the Reader app forces us to choose the HP printer every time we try to print a doc.  We have to click the More options and choose the printer from the list.  OneNote and the MS Document writer come up first in the list, and we don't use either of these.

    Photoshop CS4 uses an old (introduced in Win16?) printing API that limits the printer name length to 30 or 31 characters. With your printer name, that gets you halfway into "Series" and anything past that will be ignored.
    The simple solution is to rename your printer to something shorter. Go into the control panel, printers and faxes, and right-click on the printer and choose "Rename" and rename the printer. That should resolve the problem.

  • Unable to print from Photoshop CS4 in an iMac OS 10.6.3 to large format printer Epson 11880

    Hi there! I was wondering if you could help me with this case.
    Old computer: Mac G4  (purchased in 2002)
    Old OS: OS 10.4.11  (Tiger)
    CPU: Dual 1.25 GHz
    Memory: 2 RAM
    Software: Photoshop 7
    Hardware: Large format printer: Epson 11880 (64” wide monster). Prints large posters, banners, etc.
    As you can see, it is time for an upgrade...
    New computer: iMac
    New OS: OS 10.6.3  (Snow Leopard)
    Processor Name: Intel Core i7
    Processor Speed: 2.8 GHz
    Number Of Processors: 1
    Total Number Of Cores: 4
    Memory: 16 GB
    Software: Photoshop CS4
    Hardware: Large format printer: Epson 11880
    Situation: We hooked up everything and managed to print on the 11880 printer 2 times and printed two large format prints. On the third attempt, we encountered a serious problem...
    Problem: After opening a file in Photoshop and sending it out for printing in the large format Epson printer, the file goes to the printer queue and stays there for 6 seconds, and then it disappears. It does not print. :-(
    What we have done so far:
    We made sure we downloaded the latest printer driver for this printer from Epson’s website.
    The printer driver is correct. The computer talks to the printer and we are able to execute all the commands from the printer utilities panel. (i.e. check ink levels, clean heads, etc.)
    And yes, the printer is okay, because we have been using it with the old G4 machine for about a year.
    This problem got so frustrating, that we thought that something we transferred during the computer installation might be the culprit. So at one point we erased the hard drive on the new computer and reinstalled the operating system, and have not put any files from any old computers into this machine. The computer has nothing else in it. Except: The operating systems, and the Mac applications that come when the Mac comes out of the box. The only other program installed in it is Photoshop CS4 and the printer driver.
    We were wondering if this was just a printing problem, period. So we added a small printer to the computer - and old Epson 2200 we have. We sent a file to this printer and there is not problem.
    Perhaps, the file size might have been an issue? It does not matter. We can send a large 60 MB file to the printer or a small photograph measuring only 8 x 10, and these will linger in the queue for 6 seconds, and disappear never to be printed.
    Temporary relief came when we got rid of Adobe Photoshop’s Preferences file. After getting rid of the file and allowing Photoshop to reconstruct it, we managed to print two large files on the printer. Then it failed again. Tried getting rid of the preferences again, and the trick did not work anymore. :-(
    Another temporary relief came when we created another user in the computer. On the new user account it printed again a couple of times only to fail later.
    And yes, the printer WILL print from other Mac programs. If for instance, we open a file on Preview, and send it to the printer and the file will be printed. And yes, we have managed to print very large files with this method.
    In the last couple of days, we have spent 3 hours on the phone with the guys at Epson. They verified the driver and because the computer seems to be communicating with the printer and printing from other Mac applications, they suspected that the problem is with Adobe.
    We called Adobe once, and spent 30 minutes with an Indian fellow who concluded that the problem was with how the computer handles the spooling. According to him, Photoshop sends the file to the computer and the computer seems to get rid of it. So he passed the buck and told us that the problem was with Apple.
    We called Apple and spoke for 30 minutes with a friendly technician, who transferred us to a higher level techno-geek. I spent 1 more hour on the phone with Apple, and we tried everything. We went through Adobe’s knowledgebase and tried every suggested solution (see Adobe’s KB406452). It was with him that we found a temporary fix of removing the Preferences file, but the solution was short lived. He finally thought the problem was with Adobe as the printer is able to print from all applications EXCEPT Adobe Photoshop.
    We called Adobe for the second time...and after waiting on hold from 1 entire hour, we got an Indian technician, that bless his heart, had a very thick accent and had no expertise, in my opinion. He was good at collecting data and he even made me share my computer screen so that he could troubleshoot the problem. After being constantly put on hold by him (because he had to consult with someone else), he passed the buck and said that it was Apple’s problem. I just told him that it was not as likely because all programs print EXCEPT Photoshop. After trying what I would consider a “hail Mary” of DELETING all the printers from my Library folder, and not replacing them, he recorded a case number for another Adobe technician to call us in a few days.
    Because the above technician completely blew the Library, I just erased and reinstalled the OS. This time, I did not allow the OS to be updated - from 10.6.2 (that comes in the box), to 10.6.3. We tried printing using the 10.6.2 and had the same problem. :-(
    Conclusion: I think it is a problem of Adobe CS4 not getting along with Apple’s new operating system. The Epson printer is doing fine, because it has been a product that has been in the market for almost 3 years. What is disappointing is that none of the companies wants to man up and say that it is a problem and that they are willing to work on it. Instead they pass the buck to the next company.
    I can’t believe I am the only person experiencing this. Has anyone had this problem, and have you found a solution or workaround for it?

    Dear Doyle, John and Gator Soup,
    Thank you for your kind replies to my problem.
    PS is assigned 70% RAM. In fact, I have never had so much RAM in my life. Files open at lightning fast speed! :-)  We have never considered a RIP as we do not have an intense workload. In fact all the files we have tried to print print well on our old G4 with Tiger and Photoshop 7, which at the moment has saved our butt. However it would be nice to get the new faster machine with Photoshop CS4 to talk to the Epson 11880.
    Yes, we are printing directly to the printer. We have hooked up the computer via a 6 ft USB cable to the unit.
    The specs and pixel dimensions of a typical file we print are:
    Type of file: tif  (in this case it is an RGB file) // However, we avoid any color management from the computer or the printer when printing it at this time.
    File size: 60 MB
    Pixel size: 6796 x 3100
    Print size: 34" x 16" @ 200 dpi
    I have not tried saving it as a pdf yet. Will try that next.
    I did go to the Console on the Mac though, and recorded its activity between 5:14 pm - 5:19 pm when I tried to print a file.
    Remember, the symptoms are:  We send a file to the printer...The file goes to the printer queue, and it lingers there for 6 seconds. The file then disappears.
    Although there is a cryptic message of "invalid colorspace" in the log, I don't believe that the file is corrupt. First because we have tried several files, second because smaller versions of these can be printed in another Epson 2200 printer, and third because the large format images can still be printed using our old G4 machine with Tiger and Photoshop 7.
    This might provide me with extra ammunition for when I call both Adobe and Apple on Monday. Apple has been quite good on customer support - particularly when they upgrade you to higher level geeks. ;-)   Do you have any idea I what time I should call Adobe so that I can get people on the western hemisphere to answer the phone? It seems that after a certain time they start speaking with an Indian accent over there.
    Enclosed, for whatever is worth, is the Console's log:
    5/15/10 5:14:46 PM System Preferences[2947] Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find:
    /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper
    5/15/10 5:14:46 PM [0x0-0xf00f0].com.apple.systempreferences[2947] System Preferences: OpenScripting.framework - scripting addition "/Library/ScriptingAdditions/Adobe Unit Types.osax" declares no loadable handlers.
    5/15/10 5:14:46 PM System Preferences[2947] .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] Adobe Photoshop CS4(2991,0xa0818500) malloc: *** error for object 0x4b00880: Non-aligned pointer being freed (2)
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] *** set a breakpoint in malloc_error_break to debug
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] Adobe Photoshop CS4(2991,0xa0818500) malloc: *** error for object 0x4e14390: Non-aligned pointer being freed (2)
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] *** set a breakpoint in malloc_error_break to debug
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] Adobe Photoshop CS4(2991,0xa0818500) malloc: *** error for object 0x4e14410: Non-aligned pointer being freed (2)
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] *** set a breakpoint in malloc_error_break to debug
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] Adobe Photoshop CS4(2991,0xa0818500) malloc: *** error for object 0x4e14490: Non-aligned pointer being freed (2)
    5/15/10 5:17:06 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] *** set a breakpoint in malloc_error_break to debug
    5/15/10 5:17:08 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] file://localhost/Applications/Adobe                   P
    5/15/10 5:19:34 PM [0x0-0xf60f6].com.adobe.Photoshop[2991] Sat May 15 17:19:34 Norm-Nielsens-iMac.local Adobe Photoshop CS4[2991] <Error>: CGImageCreate: invalid image colorspace: NULL.

  • How to set default printer in CS5

    I've been using Photoshop CS5 x64, in Windows 7 x64, ever since it came out. I print photographs on an Epson Stylus Photo R2400. I also have an HP Laserjet, for printing documents.
    Whenever I am printing photographs, I change the default printer, in Control Panel, Devices & Printers, to the Epson. Until the last couple of weeks, this has always put the Epson in the default position in the 'Printer' field of the Print Dialog.
    But now the printer field always shows the HP Laserjet.
    This isn't true in any other program. MS Word 2010, Adobe Acrobat, Notepad, Opera, Internet Explorer: they all show the Epson as the default printer. So it seems more likely to be a Photoshop problem than a Windows problem.
    I have the latest Photoshop update, and Windows 7 Service Pack 1. I have the latest drivers  (2007) for the Epson. And I've trashed my Photoshop prefs.
    Is there a solution to this problem?
    Thanks
    Mary

    Noel
    >>If you change the printer in the Photoshop Print dialog, choose [Done], then re-save the PSD, does it come up next time with the proper default?<<
    Well, yes it does, to my surprise--whether I save as PSD or TIF. This is true both of new files (via file dialog) and of existing DNG files newly saved as TIFs in Camera Raw.
    I've now tried opening old files other than the ones I've been working on for the past month. They all default to the Epson printer--not surprising, since I always save files after printing, so that the print settings stick.
    The problem files are the ones I've worked on recently. When opened, they all default to the HP printer. So I'll have to open, change Print settings and save about 200 files. I'll write an action.
    I can't imagine how they got set to the HP in the first place. I've tried turning off the Epson and creating a new file: the Print dialog still says Epson R2400.
    Thanks for your message. It got me to focus more closely on just which files were problematic.
    Mary

  • PSD files will not print from Photoshop CS4 (previously posted in Acrobat printing and prepress)

    My questions are: Does the PSD file have the printer information encoded?
    Also why has this just started to show up? My wife has work successfully under the same conditions, files moved and printed on different printers, with no problems in the past.
    I (we) have been struggling with a recent problem trying to print PSD files from Photoshop CS4. (Vista 32 bit, Epson 3880 networked) When trying to print certain, but not all, PSD files I get the message: "Before you can perform printer-related tasks such as page setup or printing a document, you need to install a printer." I have been in contact with Adobe support about the issue but with little in the way of positive results. I was referred to a kb link: http://kb2.adobe.com/cps/409/kb409119.html Tried all that to no avail. (The first suggestion is absurd to the point of making me wonder what process is used to construct the kbs. You cannot open the print menu when you get this message so....?)
    Other solutions are not acceptable for the work my wife is doing, editing high quality photographs for an exhibition with test prints and so on. We are under intense time pressue with four shows coming up in a very short time. The final solution offered is that CS5 has solved all of this. Hum? interesting. No comment except new program, new problems so not a real solution for us.
    In searching the web about this problem I have come across many other people with the same problem working from different platforms and even different Adobe products. I noticed that the MAC OS seemed to cause the same problem and that there was a problem with Reader and Acrobat. In every case the problem is never solved by Adobe or anyone else and users find some "workaround". I too have found what we hope is a workaround in our contiued travels on the blogosphere, on flickr http://www.flickr.com/groups/wellington/discuss/72157621548183001/ as "...a nasty, nasty solution" but we skipped the flatten part and the GIMP part and resave the PSD under a different name.
    Adobe does seem supportive but not that interested (CS4 right) but I would like to find a real solution and I think many people would benefit from it.
    Anyway what I have found is that the PSD files that will not print have been printed on another printer at some time in the past. In my case the Printer was an Epson Artisan A50. The printer we are using now is the Epson Stylus Pro 3880. Even when trying to print wirelessly to the 3880 from the laptop (Was Vista, now Windows 7) that was used to edit and print with the A50, (USB connection) we saw the same error. So it seems that the printer information is somehow embedded in the PSD file (also mentioned in a Blog) and is keeping PS from seeing the printer because the same printer is not there.
    Has anybody already found the fix?
    I know this is a long post but I have been working on this problem and have heard all of the pat and frankly useless answers and workarounds. Can we find a solution and fix the problem?

    Just a few examples, since you ask:
    Dr Craig wrote:
    …The first suggestion is absurd to the point of making me wonder what process is used to construct the kbs…
    …Other solutions are not acceptable…
    …The final solution offered is that CS5 has solved all of this. Hum? interesting. No comment except new program, new problems so not a real solution for us…
    …In every case the problem is never solved by Adobe or anyone else and users find some "workaround"…
    "...a nasty, nasty solution"…
    …Adobe does seem supportive but not that interested (CS4 right)… b
    …I have been working on this problem and have heard all of the pat and frankly useless answers and workarounds…
    That attitude, Dr. Craig.  Plus the verbosity you unconscionably inflicted on your fellow forum users. 
    Cheers.
    Wo Tai Lao Le
    我太老了        (Not posting as a scientist here
                               but as a Photoshop user
                               so I'll forego listing any unrelated academic titles.)

  • How to set default printing in black only

    Greetings,
    I'd like to set my default printing with Firefox at black ink only, which I can do individually prior to printing a page, but it reverts to color after that printing. But if I set the size at, say, 80%, that becomes the default setting, or if I set portrait/landscape for a single printing, that becomes the default setting. Why can't the desired black-ink only setting default like the size/portrait/landscape setting? What I want to do is set the printing permanently at black only, and the size at 100%, but allow one-time printing at landscape or portrait, or sizes less than 100% without those settings becoming the default. How can I do this? Thanks for any help
    Best wishes, Tom
    I've tried the help solutions on the website to no avail....

    Greeting ideato,
    Thanks so much for your reply. I've clicked on the Firefox button at upper left, then Print, then Properties, then Advanced, under which is listed Printer Features (I have only 1 printer), below which is a line with Print in Grayscale, clicking on which has has 3 options: Off (apparently default), High quality Grayscale, and Black Ink Only. I click on the latter, and click on OK for this window and others in the sequence, and it'll print in black only for the present printing, but will revert to color for the next printing, 'though like I said, if I change the size to 80% or from portrait to landscape, those settings will remain. I can't figure it out. Again, thanks for any help.
    Regards, Tom

Maybe you are looking for

  • ICR process for Open item recon.(003) - Report Display issue

    Hi All, I am facing a problem in the data reconciliation report display.The document number "1212121212" doesn't not exist in the SAP system.But "1212121212" is used as the reference number in the another document which is created in the SAP. Legacy

  • Is there a way I can make a light not affect every group that is in 3D?

    Is there a way I can make a light not affect every group that is in 3-d?

  • Micro USB cable issue

    Hi everyone,  I bought my Z1 a month ago, and always used the cables I already had to connect it to my PC or on car charger, and the wall charger I have since my SGS2. Today I tried the brand new one out of the box of the phone, and surprise, it does

  • Pantone Colors missing from swatch library CS5

    Hi, I loaded the Pantone colors but am missing so many from the library! Even using the find tool they are not there. I read another forum but the link they suggested no longer works. I am using CS5. Thanks so much Ande S.

  • SUS - Confirmation through Catalog

    Hello Folks, Hope your day is going well...I am not lucky today. While creating confirmation into SUS for a limit order, I tried inserting items from a catalog. Upon clicking the button "Add Item from Catalog" I encountered with an error as - Serious