Job error in external Service when printing from Google Cloud: HP Laserjet Profession​al P 1102w

I have set up my printer and associated it with Google Cloud Printing. I have shared the printer with my daughter who is on a chromebook. When she tries to print, the printer is there and the job is sent to ePrint bu I get an error saying: "job error in external service". No documents are able to print. Google says this is an HP problem.
I have deleted the printer on my daughters account and re-shared it and reassociated it, but this does not help. On my printers page, my daughter's google account is identified as "allowed to print". But it still doesnt work. Any ideas?
This question was solved.
View Solution.

Hello mapuche,
Welcome to the HP Support Forums!
Will the Laserjet P1102w accept an ePrint from any / all other areas? For example, if (on the Chromebook) you open an Email, forward the Email to the printers ePrint address, will it print?
Try logging into HPConnected, under Devices, click Settings> Open to Anyone.
Try sending a print via Google Cloud Print now with this setting enabled, let me know if it sends the print through. I have seen this straighten many issues out.
Would not be a bad idea to check for firmware updates on the printer too: HP LaserJet P1102w Firmware Update Utility<---A USB connection and Windows computer is needed.
Cheers,
JERENDS
I work on behalf of HP
Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

Similar Messages

  • Ai PDF becomes distorted when printed from Google Docs

    For work, I create price sheets that I save as a PDF and host them on Google docs where other coworkers can access them. When documents are printed from Google Docs, they often become distorted. Sometimes images, such as a logo in the header, will be shifted to the right and bumped down an inch or so. I can usually fix this by rasterizing the objects that are moved. Has anyone else seen this before? An idea as to why this might be happening?

    This is really better suited for the Acrobat Windows support forum...
    When you repost, be sure to list details of what version(s) of Acrobat or Reader are being used by your client to print on what OS to what type of printer with what version of the driver...because they will ask!
    Leonard

  • Printer hijacked (Google Cloud Print)

    Somebody else has somehow registered my printer in Google Cloud Print. I received a Google Cloud Print test page and a printout from them. I logged into my ePrintCenter account, changed my password.  I then tried to change my ePrint settings. There are other email addresses in the list so I removed them and saved my changes. However, when I sign out and sign back in, the addresses reappear.I tried to remove/add my printer but that has no effect. I am also unable to register my printer with Google Cloud Print. It says my printer is already registered (which is something I never did). My printer also does not show up under my printer list in Google Cloud Print
    Any suggestions?
    This question was solved.
    View Solution.

    Hi j_to_the_m,
    Thank you for being a member of the HP Support community.  I understand that another person has accidentally claimed your printer using Google’s Cloud Print. Google Cloud Print is a function of Google, and is generally supported by Google.  I’ve included the link to Google Cloud Print Support, which is a FAQ page.
    You will need to contact the other person (in a previous post you indicated that you knew their email) and ask them to delete the printer from Google Cloud Print.  Once they have deleted it from their Google Cloud Print you should have no problems adding it to your Google Cloud Print. If you are unsure how to add it please following the steps in the Google Cloud Print’s FAQ Section titled “Basic Information” and then item 3 “How do I connect my printer to Google Cloud Print?”.  
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • CUPS Error message when printing from some applications

    Hi. I've got an issue when printing from some apps, but not others. Up to a few months ago everything was fine, then it started when Word would not print direct to my printer (Epson Stylus Pro 3880), not a big deal as I don't use it a lot and could print it through Safari if needed. Then more worryingly as a designer I found that PDFs stopped printing direct too, again I can print through Safari and Preview. Last night I installed a firmware update and now InDesign (CS4) is refusing to print!! Not great as printing via Safari/Preview doesn't give me the same level of control over my prints. Just checked both Illustrator and Photoshop and they both print okay. I get the same error code each time "error: /usr/libexec/cups/filter/pstoraster failed" Does anyone know what could be causing this?
    Thanks in anticipation. D

    cytan,
    As Matt pointed, an application printing to CUPS controls only the format of the input.  It has no direct control over the chain of filters inside the printing pipeline.  Acrobat isn't coded to use pstoraster, it is simpling submitting postscript to the print queue.  In an un-molested Apple supplied CUPS setup, that works fine.
    What is going on is that the CUPS system configuration got mangled by some third party bits.  In the Unix tradition, the configuration is fairly transparent, in the form of plain text files.  In particular, in /usr/share/cups/mime you will find out exactly how the filter pipeline is configured via a table of what filter to use to convert data between two mime types.  So we can inspect how the filters are setup and how a broken pstoraster is getting into the chain.
    I don't have a handy "before mangling" state, but I can clearly see the Apple specified filters to be invoked when the input data is application/postscript (in apple.convs).  I can also see a conflicting filter definition referencing the broken pstopdf (in mime.convs) but with a higher precedence, overriding the apple specified filter.  This is why, in reference to your points #1 and #2, simply removing pstoraster fails, because the filter configuration is what needs fixing.
    On my system, I found the pstoraster filter to be a shell script referencing a MacPorts install of ghostscript. I've since removed MacPorts, but that evidentally left the CUPS configuration in this broken state.  Without knowing exactly how the CUPS system was put into the broken state, fixing it can be a bit tricky.  Another posting suggested replacing the broken pstoraster with the Apple supplied equivalent of pstocupsraster.  That might work, but it would be better to simply remove the conflicting filter specification, which on my system is this bit in /usr/share/cups/mime/mime.convs:
    # pstoraster is part of GPL Ghostscript...
    application/vnd.cups-postscript        application/vnd.cups-raster     100     pstoraster
    Removing that will restore the Apple specified filter chain for postscript input.  With the filter specification gone, you are free to remove the pstoraster filter itself.
    On wating for Adobe to fix this...
    Acrobat provides enough things to scream about without pinning non-Acrobat problems on it as well.  Not only is this problem not the fault of Acrobat, but suggesting that Acrobat should reach into a CUPS system broken by some unknown third party and fix it is only going to complicate the situation by having two third party products trying to un-do each other's configuration of a system resource.   Do you really trust Adobe to fiddle with system components it doesn't own?  No, I didn't think so.  Adobe installers and updaters have enough trouble with the stuff they do own.
    So, why does this problem only seem to affect Acrobat (your point #3)?  I suspect it is simply that Acrobat is in the minority of submitting Postscript to the print queue.  Any print job produced via CoreGraphics APIs is going to enter the system via a different path (namely, PDF), but the Postscript method is completely legitimate and any application that submits Postscript will be affected in the same way as Acrobat.
    I hope this sheds some useful light on what is really going on with this problem.
    -john

  • Epson Artisan 810 gives error when prints from 10.6.2

    I know that Epson update 2.2 was released for 10.6.1. But it doesn't seem to help when printing from any application with 10.6.2. Should I downgrade back to 10.6.1? I have an Artisan 810 that won't print from 10.6.1 on a MacBook Pro that came out in September of 2009. It will print a sample page from the utility, and run the print head cleaning utilities, but won't print a document. It makes some indication that it can't deal with a postscript file in the error in the print queue the moment I send a print job from Neo Office or Safari. I'm connected via USB. Eventually I'd like to figure out how to add it to my Time Capsule's 802.11n network if possible. But first let's get it working under USB.

    I just went through this and seriously considered publishing the directions so I reckon this is my chance.
    When all was said and done, I only used the Epson utility to remove all of the installed Epson software, did not use any drivers as provided by them, including the already installed Photo R280 drivers for my other printer, and started over.
    Once done, I used the OSX Print & Fax System Preference to install the 810 as a new printer and let Software Update do its thing. It seems to load and install everything needed to make the thing work. Most of the Epson stuff seems useless and I find that the OSX Image Capture utility does a great job of running the scanner part.
    The most important thing I learned is that the directions and utilities as provided by Epson are not very helpful. The network setup utility they provide doesn't work at all on a Mac and looks exactly like the Windows XP version. I got very frustrated and simply accessed the menus myself on the 810's control panel and joined it with the wireless network manually. It was way easier and less frustrating then trying to get the Epson junkware working.
    As an aside, there are a kajillion little plastic thingies that can break and cause problems in this thing. Make sure to register it and get the free extended warranty
    Other than the installation pains this has turned out to be a pretty incredible little device. I already have a great scanner and an adequate photo printer, but I needed a fax modem, and for about the same price as the modem I ended up with a lot of other functionality as well.
    You can always page me in the lounge if you need any further input.
    -DP

  • Adobe Reader bypasses "secure print" settings when printing from IE add-on

    We have the IE add-on for Adobe Reader enabled (Internet Explorer 9), and we've found that for some people this is causing PDFs to get printed without the "secure print" option, even though the print dialog shows it. Our printer settings all have the setting enabled for "secure print", which requires you to enter a PIN on the printer before the print job will be released. When printing PDFs from Adobe Reader (currently 11.0.3, but I couldn't see anything in the release notes for .4, .5. or .6 that are relevant) outside of IE, secure print works fine, but when it's opened within the Adobe Reader plugin for IE, the secure print setting is enabled but the print job gets sent to the printer without the PIN requirement... somehow.
    I'm completely stumped by it, and didn't even believe it until I saw it myself.
    Does anyone know what might be working differently when a PDF is printed from the add-on than when it's printed by a 'full' instance of Adobe Reader?
    On an affected PC, if you disable the add-on, the PDF opens in that full instance and works normally, so it's very definitely related (somehow) to the add-on specifically.

    Hey,
    I have been advised against monitor calibration, and I'm assuming if all of my other products have come back correct in terms of colour I see on screen that it should be ok?
    the person that told me about the Adobe workspace has the same printer, but she works in Photoshop, and had someone set it up for her. She tried to help over phone, but is difficult as we have different versions of Adobe software, and it was a while since she had it done.
    My workspace is currently in RGB, so would you suggest working in CMYK?
    If I have my workspace set to Adobe RGB (1998) should I then be changing my printer profile to the same one?
    I've attached the colour setting screen shot, I've not done anything to change this.
    I think I need the setting on bottom image set to 'colour sync' is that right?
    I'm also not sure about the relative colourimetric option. When at art college, I was always told to print in perceptual, but not sure which is best option here.

  • When printing from v10.1.3 or v9 from OSX Lion get Adobe Reader quit unexpectedly

    When printing from v10.1.3 or v9 from OSX Lion get Adobe Reader quit unexpectedly
    Click on the print button
    get the Print screen
    Click Print then get the error
    Am able to print fine from other applications
    Have tried uninstalling and restalling Adobe 10.1.3, downgrading to v9. reinstalling the printer driver.
    Process:         AdobeReader [2372]
    Path:            /Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/AdobeReader
    Identifier:      com.adobe.Reader
    Version:         9.4.0 (9.4.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [220]
    Date/Time:       2012-07-22 18:19:40.579 +1000
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          265926 sec
    Crashes Since Last Report:           23
    Per-App Interval Since Last Report:  30 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      6710821A-4F63-46E6-AD7A-75FB91C7B394
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    VM Regions Near 0x14:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/AdobeReader
        __TEXT                 0000000000001000-0000000000003000 [    8K] r-x/rwx SM=COW  /Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/AdobeReader
    Application Specific Information:
    objc[2372]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobeAGM                                0x7e5f1824 PrintInstance::BuildEndPrintEvent() const + 84
    1   AdobeAGM                                0x7e5fa503 PrintInstance::NextPrintEvent() + 8157
    2   AdobeAGM                                0x7e5291f3 PrintSession::GetNextPrintEvent() + 151
    3   AdobeAGM                                0x7e529c60 _AGMPrintSessionGetNextPrintEventProc_GetNextPrintEvent(AGMPrintSession*) + 40
    4   com.adobe.Acrobat.framework             0x8077def8 0x7fe0a000 + 9912056
    5   com.adobe.Acrobat.framework             0x801d0749 AcroSecurityBailOutImpl + 2003525
    6   com.adobe.Acrobat.framework             0x801d08eb AcroSecurityBailOutImpl + 2003943
    7   com.adobe.Acrobat.framework             0x8004ffe0 AcroSecurityBailOutImpl + 428764
    8   com.adobe.Acrobat.framework             0x800511fd AcroSecurityBailOutImpl + 433401
    9   com.adobe.Acrobat.framework             0x7ffbaa3b CopiesPagesPDE_Prologue + 9523
    10  com.adobe.Acrobat.framework             0x7ffbadce CopiesPagesPDE_Prologue + 10438
    11  com.adobe.Acrobat.framework             0x7ffbb298 CopiesPagesPDE_Prologue + 11664
    12  com.adobe.Acrobat.framework             0x7ffcc2ca CopiesPagesPDE_Open + 50672
    13  com.adobe.Acrobat.framework             0x7ffcc495 CopiesPagesPDE_Open + 51131
    14  com.adobe.Acrobat.framework             0x800066c5 AcroSecurityBailOutImpl + 127425
    15  com.adobe.Acrobat.framework             0x80006852 AcroSecurityBailOutImpl + 127822
    16  com.adobe.Acrobat.framework             0x80006a9b AcroSecurityBailOutImpl + 128407
    17  com.adobe.Acrobat.framework             0x8018fe6e AcroSecurityBailOutImpl + 1739114
    18  com.adobe.Acrobat.framework             0x801ffb92 AcroSecurityBailOutImpl + 2197134
    19  com.adobe.Acrobat.framework             0x801ff925 AcroSecurityBailOutImpl + 2196513
    20  com.adobe.Acrobat.framework             0x802e19ac AcroSecurityBailOutImpl + 3122344
    21  com.adobe.Acrobat.framework             0x8001fa66 AcroSecurityBailOutImpl + 230754
    22  com.adobe.Acrobat.framework             0x80020e3a AcroSecurityBailOutImpl + 235830
    23  com.adobe.Acrobat.framework             0x80165925 AcroSecurityBailOutImpl + 1565729
    24  com.adobe.Acrobat.framework             0x8016346a AcroSecurityBailOutImpl + 1556326
    25  com.apple.AppKit                        0x93d05fc5 -[NSWindow sendEvent:] + 7533
    26  com.apple.AppKit                        0x93c9f163 -[NSApplication sendEvent:] + 4788
    27  com.apple.AppKit                        0x93c30d11 -[NSApplication run] + 1007
    28  com.adobe.Acrobat.framework             0x7fe0d28d RunAcrobat + 2557
    29  com.adobe.Acrobat.framework             0x7fe0c9ce RunAcrobat + 318
    30  com.adobe.Reader                        0x00002e8b start + 2371
    31  com.adobe.Reader                        0x0000264a start + 258
    32  com.adobe.Reader                        0x00002571 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9b0ac90a kevent + 10
    1   libdispatch.dylib                       0x98338e10 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9833785f _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 5:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x9c9a7e81 WTF::ThreadCondition::timedWait(WTF::Mutex&, double) + 81
    4   com.apple.WebCore                       0x91b97501 WTF::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 135
    5   com.apple.WebCore                       0x91b97454 WebCore::LocalStorageThread::threadEntryPoint() + 74
    6   com.apple.WebCore                       0x91b973b1 WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 17
    7   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x9b0a9c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b0a91f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x95c619da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x95c6ab04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x95c6a1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x95c6a088 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9c5d80c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x9c5cbe25 -[NSThread main] + 45
    8   com.apple.Foundation                    0x9c5cbdd5 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9cd3de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ccaf37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9cd1167f MPWaitOnQueue + 200
    6   AdobeACE                                0x020310bd 0x2000000 + 200893
    7   AdobeACE                                0x02030ab5 0x2000000 + 199349
    8   com.apple.CoreServices.CarbonCore          0x9cd125e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9cd3de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ccaf37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9cd1167f MPWaitOnQueue + 200
    6   AdobeACE                                0x020310bd 0x2000000 + 200893
    7   AdobeACE                                0x02030ab5 0x2000000 + 199349
    8   com.apple.CoreServices.CarbonCore          0x9cd125e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9cd3de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ccaf37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9cd1167f MPWaitOnQueue + 200
    6   AdobeACE                                0x020310bd 0x2000000 + 200893
    7   AdobeACE                                0x02030ab5 0x2000000 + 199349
    8   com.apple.CoreServices.CarbonCore          0x9cd125e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9cd3de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ccaf37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9cd1167f MPWaitOnQueue + 200
    6   AdobeACE                                0x020310bd 0x2000000 + 200893
    7   AdobeACE                                0x02030ab5 0x2000000 + 199349
    8   com.apple.CoreServices.CarbonCore          0x9cd125e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9cd3de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ccaf37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9cd1167f MPWaitOnQueue + 200
    6   AdobeACE                                0x020310bd 0x2000000 + 200893
    7   AdobeACE                                0x02030ab5 0x2000000 + 199349
    8   com.apple.CoreServices.CarbonCore          0x9cd125e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9cd3de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ccaf37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9cd1167f MPWaitOnQueue + 200
    6   AdobeACE                                0x020310bd 0x2000000 + 200893
    7   AdobeACE                                0x02030ab5 0x2000000 + 199349
    8   com.apple.CoreServices.CarbonCore          0x9cd125e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x97b4c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9cd3de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ccaf37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9cd1167f MPWaitOnQueue + 200
    6   AdobeACE                                0x020310bd 0x2000000 + 200893
    7   AdobeACE                                0x02030ab5 0x2000000 + 199349
    8   com.apple.CoreServices.CarbonCore          0x9cd125e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x97b4382a pthread_cond_wait + 48
    3   AdobeAGM                                0x7e4b0bc4 pthread_condition_base::Wait(pthread_scoped_lock_base&) + 26
    4   AdobeAGM                                0x7e4b0b1d AGMMessageQueueImpl::Pull() + 65
    5   AdobeAGM                                0x7e8a2b94 AGMWorkQueueTask::operator()() + 84
    6   AdobeAGM                                0x7e8a3e1f boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 75
    7   AdobeAGM                                0x7e4b09e1 thread_proxy + 45
    8   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x97b4382a pthread_cond_wait + 48
    3   AdobeAGM                                0x7e4b0bc4 pthread_condition_base::Wait(pthread_scoped_lock_base&) + 26
    4   AdobeAGM                                0x7e4b0b1d AGMMessageQueueImpl::Pull() + 65
    5   AdobeAGM                                0x7e8a2b94 AGMWorkQueueTask::operator()() + 84
    6   AdobeAGM                                0x7e8a3e1f boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 75
    7   AdobeAGM                                0x7e4b09e1 thread_proxy + 45
    8   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x9b0ab83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97b9be78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x97b4382a pthread_cond_wait + 48
    3   AdobeAGM                                0x7e4b0bc4 pthread_condition_base::Wait(pthread_scoped_lock_base&) + 26
    4   AdobeAGM                                0x7e4b0b1d AGMMessageQueueImpl::Pull() + 65
    5   AdobeAGM                                0x7e8a2b94 AGMWorkQueueTask::operator()() + 84
    6   AdobeAGM                                0x7e8a3e1f boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 75
    7   AdobeAGM                                0x7e4b09e1 thread_proxy + 45
    8   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 19:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib                  0x9b0ac02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97b99ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x97b9b6fe start_wqthread + 30
    Thread 22:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x9b0abbb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97b4c7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x97b4c558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x93e79816 -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x9c5cbe25 -[NSThread main] + 45
    5   com.apple.Foundation                    0x9c5cbdd5 __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x9b0ac90a kevent + 10
    1   com.adobe.Acrobat.framework             0x804ff1fe AcroSecurityBailOutImpl + 5340410
    2   com.adobe.Acrobat.framework             0x8041adf7 AcroSecurityBailOutImpl + 4405491
    3   libsystem_c.dylib                       0x97b97ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x97b9b6de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x7e5f17de  ecx: 0x7e3f96ac  edx: 0x00000001
      edi: 0x7eac1420  esi: 0x01ab4228  ebp: 0xbfffdea8  esp: 0xbfffde60
       ss: 0x00000023  efl: 0x00010286  eip: 0x7e5f1824   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000014
    Logical CPU: 0
    Binary Images:
        0x1000 -     0x2fff +com.adobe.Reader (9.4.0 - 9.4.0) <8CEEE461-DF9E-46F5-816E-71DE8564A551> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/AdobeReader
       0x60000 -    0x61fff +com.adobe.eulaframework (??? - 1.0) <8AFCE794-4DCF-41B8-9D0F-30311D7BEB92> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/EULA.framework/Versions/A/EULA
    0x2000000 -  0x210dfe7 +AdobeACE (??? - ???) /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE

    Right. After almost a day I finally sorted the problem.
    Adobe Reader worked under the spare Admin account so I deleted that in case it was confusing the installer.  I then rerpaired persmissions.  I then re-installed Reader.  Same problem "Internal Error"!!
    So, I re-created another Admin account and opened Reader.  No problem.  After clicking accept licence it opened up with a question to make default or not.  After this I hunted through every folder and found that Under 'User/Librarary/Application Support/Adobe' there was an Acrobat folder.  When I checked the account I normally use there wasn't, and never was??  So I copied pasted a copy of the Acrobat folder into the same location on the non working account and all is fine.
    Problem for me is, why did this happen?  I wasted almost a day on this. Is it a problem with the installer, the Macbook or Permissions.  I checked permissions and they are identical to those on the spare Admin account.  So why did the installer not create the Acrobat folder on the main account from where it was installed?  Reason it concerns me is with regard to updates.  Will they also screw up?
    I'll try to explore further as times goes on but for now I have to say I've had enough of Acrobat and Lion for one day.  "It just works".  Really???

  • [FIX] Darker prints and color shifts when printing from Lightroom 2

    Hi,
    The problem :
    When printing RAW or TIFF files from LR2, you get a printer output that
    is much darker than it should be and that presents various color shifts.
    I'm using an Epson Stylus Pro 3800 with the latest Windows driver
    (6.50 - which is rather old by the way). The workaround described below
    works for me under Windows XP SP3. It should also probably work with
    other systems/printers/drivers. Use at your own (minor) risk.
    The "official" procedure for printing from LR is as follows:
    1. Do not let the printer manage colors and select "Other..." from the
    profile dropdown list and select the ICC/ICM paper/printer profile that
    you want to use.
    2. Click on Print... in LR which opens the Print Settings dialog.
    3. Select the options you need and the paper you're using.
    4. **Disable the color management from the driver's side** (in Epson's
    drivers, "Mode | Custom | No Color Adjustments").
    5. Print
    Unfortunately, **this doesn't work** for many of us and this produces a
    print that is dark and has color shifts as mentioned above. Note that
    the same image prints correctly from QImage or Photoshop CS3 (that is,
    the printer output corresponds to what you see on your calibrated
    display).
    Apparently, although color management has been (allegedly) disabled in
    the driver, there's something wrong between LR and the driver which
    makes that *both* LR and the driver are still trying to manage colors.
    In other words, the "No Color Adjustements" option of the driver doesn't
    seem to work with LR.
    The workaround (found after hours of hair pulling and paper and
    expensive ink wasting):
    In step #4,
    1. Instead of selecting "No Color Adjustments", set Mode to "Custom |
    ICM
    2. Click Advanced...
    3. Check "Show all profiles".
    4. Select Driver ICM (Advanced)"
    5. Set **both** the "Input profile" and the "Printer profile" fields to
    the very same profile that you specified in LR.
    That is, if you specified Pro38 PGPP (Premium Glossy Photo Paper) in LR,
    then also select Pro38 PGPP in both "Input Profile" and "Printer
    Profile". This has actually the same effect has disabling color
    management in the driver (what "No Color Adjustements" should normally
    take care of).
    That's it. When printing, you'll get exactly the same color results as
    when printing from QImage or Photoshop. No more dark prints. No more
    color shifts.
    One might think that the bug is in the Epson driver but in that case,
    QImage would have the very same problem. So I tend to think that the bug
    is on the Lightroom side.
    Note: Although Photoshop CS3 produces a correct printer output, it
    demonstrates the same problem as LR when using the "Match Print Color"
    option for soft proofing. But in that case, only the preview colors are
    wrong. The printer output is ok. Which also tends to demonstrate that
    Adobe has the problem, not Epson. Or maybe both... :-) .
    Don't ask me why some users have the problem and other don't.
    Hope this helps.
    Patrick Philippot
    MainSoft Consulting Services
    www.mainsoft.fr

    A sincere thank you for your reply, Michael. Sorry about the "it just doesn't make sense" shortcut. I have been trying to solve this issue since LR 1.1, spending dozens of hours on different trials and digesting everything written on this forum and the B9180 forum about color management and double profiling. My shortcut was a summation of my experience (and my frustration) but doesn't really advance the conversation. Here are some data that should be more useful in diagnosing the problem.
    I am running Windows XP SP2. I calibrate my monitor monthly with the Spyder. The reason I suspect this may be an issue of double profiling is because the results (moderately strong magenta overlay plus an increase in contrast) match what more knowledgeable people than I on this forum describe when double profiling occurs. Perhaps I shouldn't presume it is double profiling, and follow Patrick Philippot's lead in naming the problem "color shifts." Patrick does refer in post #2 of this thread, however, to obvious double profiling.
    I certainly do have a successful and consistent print method. With PS CS3, and either my Epson 1280 or my HP B9180, the output is almost always dead on. Here is how I do it. In PS from the print dialog box, under color handling I always choose "Photoshop manages colors." Then under printer profile I select the profile designated by the manufacturer for a particular paper/printer combination. Then in the printer driver I disable printer control of color. With the Epson I check the box "Off (No Color Adjustment)." With the B9180 I choose the option "Application Managed Colors." While I sometimes may tweak the final output, these procedures have served me well with PS for several years.
    Contrasted with my positive PS experience, my experience with LR printing has been inconsistent. I regret having to be so imprecise but truly sometimes LR produces accurate results that match the calibrated monitor, but most of the time it does not. I use standard procedures with LR that parallel the PS ones described above. In LR's printing panel, under color management, I specify the correct profile, just as I did for PS. Then in the printer driver I use the same procedures I use with PS. Most of the time the prints have the magenta overlay and too much contrast.
    BTW, the inconsistent LR printing only takes place with my HP B9180. I have never had any problem with off-color LR prints with my Epson 1280. Again, I emphasize that I have standard procedures that always work with PS (no matter which printer) and LR (but only with the Epson).
    Unfortunately the LR printing problems are intermittent. Some of the time (perhaps 20%) LR produces fine prints in the B9180, indistinguishable from PS prints. When LR is printing well, it will continue to print fine until "something happens" and the output shows the color shift. This means I do not get a random sequence of good-bad-good-bad prints, but rather good-good-x factor-bad-bad-bad. Ths problem is that I do not know what this "x factor" is. Once, when LR was giving me accurate output, I simply changed the default printer (Control Panel-Printers and Faxes) from the B9180 to my Samsung 1430 laser; immediately afterwards the LR output colors shifted. Did LR react to this change in default printers? Another time I had good LR printing success with version 1.2 but ran into the problems described above when I upgraded to version 1.3.
    Sorry for the long post. I am hoping that someone will see something that I am missing and provide a hint. I think, though, that Patrick is correct when he states, "I tend to think that the problem is with LR. After all, similar issues (obvious double profiling) are observed only in LR but with various printers."

  • Banding occurs when printing from Illustratror/InDesign on HP Designjet Z5200 PostScript Printer

    Recently we got the below printer for large-format prints such as posters, banners and the like.
    http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/18972-18972-3328061-12600-3328080-4122732.ht ml
    However so far when printing directly from InDesign and Illustrator there have been problems with "banding" (alternating stripes of darker and brighter colors on the paper when printing).
    It seems that this could have something to do with either the type of paper and/or the OS (we use both XP and Win7) on which CS5 runs but I am still unsure if these are the real causes.
    After having talked to a certified HP-technician (not only a support employee!) the technician pointed towards the CS5 package as the culprit.
    At the very moment we are using a workaround that the before mentioned technician advised us to use which is basically the following.
    Illustrator --> Saving the Ilustrator file, then opening it in Photoshop and saving as a tiff raster image in the relevant resolution, then importing the tiff raster image into HP's HP own "Instant Printing Pro" printing application.
    InDesign --> Saving the InDesign file as a pdf, then opening the pdf in Photoshop and saving as a tiff raster image in  the relevant resolution, then importing the tiff raster image into HP's  HP own "Instant Printing Pro" printing application.
    These two solutions both work without banding on the final print.
    However, sometimes - as mentioned before - it seems that the paper might absorb the ink better if it's of a better/thicker quality when banding doesn't seem to occur (at the moment we mostly use plain paper settings in the local printer settings display when loading a roll of paper which also is a cheaper type of paper) and while banding seems to occur mostly when printing from XP machines it doesn't always seem to occur when doing so from Win7 machines.
    What's the score on the above?
    Any help and input is welcome and appreciated!

    Well, I have no official
    connection to Adobe, but any manufacturer who sells a product targeted
    at the graphic arts industry, and then says that the reason it doesn't
    work is because there's a problem with the software produced by the
    graphics industry leader needs a reality check. Printer manuafacturers
    have had access to Adobe for years, so there's really no excuse for an
    incompatibility problem.
    Your company is a vendor? Get
    escalated. HP should be all over getting this to work correctly,
    including providing a RIP for you if that's what it's going to take to
    implement proper printing. How do the expect you to demonstrate or
    recommend this printer if it stripes the background?
    Peter -->
    You are right about basically anything that you said and I agree that this should be HP's headache. But it's not so simple at the moment.
    First of all I'd hate to stand back like a dummy if it would turn out to be a minor driver setting issue or another insignificant problem that creates the banding. On the other hand it would of course also be the local HP-support failing since they didn't manage to tell us about it in the first place and that's really their job and responsibility but under any circumstance, I'd like to give the ideas and suggestions from the other participants further up this thread a chance and see if the pdf-printing or other ideas work. In other words..., if I'd complain to HP it had to be bulletproof.
    Secondly we are supposed to sell these and similar products to our clients and if I should start a dicussion I'd have to argue not only with HP who would most likely claim that the workaround they told us works (in a way) and that this was a result - at least to them - as well. I might also have to start discussing with the CEO of our company, the purchasing department and the marketing director (the latter actually said some time ago when we had the first problems that if the printer didn't work according to the HP-consultant's promises they could have it back, so there is at least some hope there). At the moment I am too busy at work and too low paid to be getting into this. And I seriously doubt that HP would give us a RIP to be testing this off even though we'd argue that the clients won't be able to work this out if we don't do. They'd probably just say that it's mainly for plotting charts and architects or stuff or find a whole range of other excuses. It's not certain and there could be positive surprises but I'd say that that's not likely.
    There is one other thing Peter that I am still wondering about...
    If you take a look again at the fourth and last picture-link I posted you can see the exact same print as in link no. 3 but whereas the third link shows banding the last - the fourth image link - shows no banding at all. Now I am not a 100% sure anymore if these were both printed directly from Illustrator but to my best knowledge they were since I printed all of these banners the same day and I don't recall saving to tiff or using other programs. I might be wrong but if that's the case then the thick HP-paper doesn't band whereas the thin does. That's the reason why I stated previously that the banding might occur with thinner paper (or wrong paper load settings) and doesn't occur with thicker paper at all. As mentioned I don't recall this action a 100% but am pretty sure. Also therefore I would like to run another test when I get more time and won't be so busy at work as I am right now.
    Do you think there could be a difference there...?
    macinbytes wrote:
    I'm guessing they have the same crappy Colorburst software that shipped with the HP we got and it's never going to get good with InDesign or Illustrator transparency. We have the thermal printer that is 6x more expensive and the software is still bad. At version 9.3 it still fails on InDesign transparency.
    We just make tiffs or normalized PDFs for files containing InDesign transparency. Illustrator transparency generally works better than InDesign, but isn't infallible. Anything that uses the gradient feather tool in InDesign I don't even bother with a test print to see if it gets it because I know it will fail 100% of the time.
    If they are a vendor they are in a Catch 22 if they do it right and go for a solution that normalizes the files properly before sending to the garbage software that ships with it. When you are talking about an entry level thermal inkjet the software package isn't going to be robust. Something like a GMG or other solution to handle all the show devices files works, but at best you are disingenuous about how files are being handled with your clients and face pushback when they can't run all the cool tricks to them when they get it out in the field.
    Happens with Colorburst, happens with Colorgate, happens to a lesser degree even with the lower end Creo RIP. Fiery seems to get it good somehow, but doesn't power a ton of inkjets.
    HP support is phonetag hell anyway for inkjets. They buy out tons of companies that produce anything printing like ColorSpan and provide bare minimum support on the products they slap an HP tag on. They want to sell inks and papers. They don't make the software and license it in bulk like the crap they load on their computers. They also usually ship with old software that needs at least a couple point releases before it is current, but even the current software on their thermal printers sucks at InDesign transparency. HP may need a reality check on their software, but I doubt they get it. They've got a sufficient stranglehold and supporting what is essentially a bottom of the barrel portion of their printing business is in the high maintenance low yield square for them.
    macinbytes -->
    Wow, now THAT is scary reading...!
    If what you wrote is true then things really start looking bleak. But I can recognize some of the problems that you are mentioning although I am not into all of the details that you are writing about in your thread. But it sure looks like they just mass produce and try to keep support to a bare minimum whereas they are scoring big bucks on the media, inks and other accessories and then hope that complaints will die and people will just give up in the end.
    It does make sense also seen in light of the fact that our local HP-consultant who "introduced" us to the printer praised it to the sky with a lot of "sales mambo jambo", trying it out in HP's own "E-share & Print" (which I was told by the HP-technician was the wrong HP-print program, instead he made me download and install the "Instant Printing Pro") whereas he NEVER even tried it off in any of the Adobe programs or asked some of our employees to do so.
    If you are getting more info in regards to the development in these cases or solutions software-like speaking I'd love to hear from you.
    Thanks for your time and for posting.

  • Pass Parameters to an external appl when launched from web dynpro ABAP .

    I want to Pass Paramaters to an external application when launced from Web dynpro ABAP . I have successfully launched an .exe file ( Notepad / eViewHSEditor ) from Web dynpro using the logic from Standard WD_TEST_APPL_ACFEXECUTE component  But I am unable to Pass paramters to the .exe file .
    example :-  I would like to pass parameters  text1 text2 in the arugement list and I expect it opens an untitled notepad and in the file it will have parameters text1 text2 . But it is behaving in a different way . Below are the detailed steps of what I have done .
    The steps that I followed :-
    1)  Right now I have created the white list Configuration for Notepad.exe
    2) I have created 1 and 2 postions both of type string and permission Legal .
    3) The Paramter Value is * for both 1 and 2 .
    4) I activated the whitelist and it generated an .XML file
    5)
              application = 'C:
    WINDOWS
    system32
    notepad.exe'.
              argument = 'text1 text2' .
              co_element :- I am reading the element from the conrtext .
          co_element = wd_context->get_lead_selection( ).
          co_element_stru-attribute_name = 'ERROR'.
          co_element_stru-element = co_element.
          wd_this->acf_method_handler->if_wd_acfexecute~execute( application =  application
                                                                 argumentlist = argument
                                                                 errorinformation = co_element_stru ).
    when i execute  the application , it is trying to launch a notepad with file  'text1  text2.txt'  and it doesn't have one , it is asking do you want to create .  If You yes, it will open notepad with name 'text1 text2.txt' . If you Pass abcd in the arugement list , if the file with name abcd.txt exists , it opens the notepad with that file name .

    You try to open notepad from your PC with the same command, you will the same result.
    start->run->notepad "test1 test2". You get the popup saying that "test1 test2" file is not existing. You can google it to find a way to pass the text while opening notepad and try to fit that in your WebDynpro argument. I doubt if it is possible though.

  • MX 922 - "no paper" (but full) when printing from SOME applications

    I CAN print from my ipad "notes" application. I CANNOT print from a web page or my photos. The MX 922 says it is out of paper - BUT IT ISN'T. I don't get this error when printing from my ipad "notes" ap. I am frustrated and about to take it back to Costco.

    Hi djh,
    Please place paper in the upper cassette, making sure that the small size photo paper such as 4" x 6" (10 x 15 cm) or 5" x 7" (13 x 18 cm), or Hagaki are loaded.
    Please note that if you cut plain paper into small size such as 4" x 6" (10 x 15 cm) or 5" x 7" (13 x 18 cm) and try to print on it, the paper jam will occur.
    Once the paper is in place, align the paper guides with the both edges of the paper and the press the OK button.
    Please attempt to print.
    If you continue to have difficulties, please contact our support group using the following link:
    http://www.usa.canon.com/cusa/consumer/standard_display/contact_us_consumer
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Can Reader XI cause program conflict when printing from MS Word?

    Hi There
    I have this machine:
    Intel Core i5-3470 CPU @ 3.20GHz, 8,0GB RAM, Intel HD Graphics
    MS Windows 7 Home Premium 64-bit SP1
    I am using Office 2007, Win2PDF Pro 7, Adobe Reader XI.  My Anti Virus is Kaspersky Internet Security 2014.  I have the latest service pack for Win2PDF Pro 7.
    When I print from Word using Win2PDF Pro 7 I get the first document printed OK but the machine freezes when I try to print another.  This system works perfectly when printing from Project.Libre, Paint.NET, Excel, and a 148-page printout of my Reference Manager database.
    This problem occurs only when printing from Word, and has appeared since I upgraded to Reader XI.
    Can you help?
    Thanks

    Was already running latest version 11.0.10.  Tried the re-load fix; tried uninstalling and installing a new one from the web.  Problem still exists -- cannot print any document from Adobe Reader XI.  Computer freezes when the print file is being prepared at 0%.
    Jamesk71259086

  • Different Colors when printing from Photoshop and InDesign CS3

    Different Colors when printing from Photoshop and InDesign CS3
    I have the following problem:
    When printing from Photoshop or InDesign to a PostScript printer, Adobe recommends to let Photoshop handle the colors (I use the German version, so I don't know the exact term used, it changes slightly in all CS3 apps anyway).
    The manufacturer however told me to let the PostScript printer handle the colors.
    When I chose this option in Ps's print dialog and then choose ISO Coated as the printer pfofile, the results are fine.
    But when I place the exact same image in an InDesign file and print from InDesign or export to PDF and print via Acrobat, again using "Printer handles colors", the results are the exact same as if I had used Ps and chosen to let Ps handle the colors (way too saturated and a bit too red).
    ·Photoshop CS3
    ·InDesign CS3
    ·Test image is a TIFF in CMYK Fogra 27 Coated (which is also the working color space in Ps and ID.
    ·Printer: Xerox Docucolor 3535
    ·Printer profile: ISO Coated
    How can I make sure the printer handles the colors in other CS3 apps than Ps? I tried it with ID's print dialog (translated from the German version: Color Management > Options > Color Handling: PostScript-printer decides colors).
    Thanks a lot!

    RE: "You don't indicate what Xerox printers you have"
    In my first post I named it, is that the information you need?
    Docucolor 3535 using Splash 3535
    That's interesting, so I have to find a way to turn off the printer's Color Management function? I mailed them, hope they can tell me how to do it easily. They usually just tell me to not use any profiles and so on, but that's the general rule in this area, I'm really tired of hearing it. Everybody seems to think profiles and LAB mode are nuclear science and I should stay away from it.
    Anyway, the test image I'm using is a simple photograph (size A3, 300dpi), so no transparencies at all. I'm placing this image into an equally large ID file and print it from ID, then export it to PDF-X/3 and print it from Acrobat. Hope that helps.

  • When printing from my Mac all of a sudden when printing from IPhoto the picture is really dark.  The test page off my HP color laser jet is just fine.  It is not the printer although older.  All of sudden it does not want to print correctly.

    All of a sudden when printing from my desktop Mac in IPhoto the printout comes out black.  My colors are fine on my HP color laser printer.  I have printed many times and now all of a sudden it is not printing.  A test copy from my printer comes out fine.  I really think for some reason something has changed just in the last few days.  Just communication with IPhoto and the computer.

    As long as your cartriges are full, put a photo on you desktop, highlight it , click COMMAND P and the print preferences window should drop down, and select your printer and photo paper.

  • Colors not printing correctly - Only When Printing from Reader 9

    I have recently been having problems printing color PDF's using Reader 9. Yellows are printing as blue, blues as pink, pink as grey, etc. I have no problems printing any other types of photos, documents, or powerpoint presentations so I am assuming it is some setting in Reader. My printer is an HP Color LaserJet CM1015. Any help diagnosing this problem would be greatly appreciated!
    Thanks in advance,
    Dave

    It is using sRGB and that is the only color profile available.
    In addition, when I try to print 4 slides per page and 1 slide per page, the colors are completely different than when I try to print 2 slides per page.
    I have tried changing settings in print options and put them back to default and nothing I do changes the issue. Again, it only occurs when printing from Reader. Everything else prints colors perfectly fine.

Maybe you are looking for

  • Photo Booth Crashes Every Time I Attempt To Open It

    Okay Group, Here's another one for you.  Starting last week Photo Booth crashes everytime I attempt to open it.  Here's the report Process:         Photo Booth [31941] Path:            /Applications/Photo Booth.app/Contents/MacOS/Photo Booth Identifi

  • Samsung SCH-u370 vs. Kin TWOm ; Which would be better for the texter?

    So my plan is going to end in about two months so I decided to research some new feature phones online. Since I text often, I wanted a phone with a full keyboard, having a touch screen would be nice as well. The Samsung SCH-u370 isn't offered on at V

  • Full screen in lion

    I'm using Macbookair (2010 product) with OS X lion. Whenever I use full screen mode, Menu bar reaction looks slow. Is it normal condition? Is there any method to improve?

  • What is "failed to scene-update in time" crash

    [ Wow. No "community" for mail app (or other built-in apps), crashes, iOS 8 (or just iOS). ] iPad 2 running IOS 8 for a week or so. Sluggish and battery draining faster than before, but all apps were working ok. Then during an attempt to delete an e-

  • How to do the File Explore Icon?

    How to do the File Explore Icon? If you are window user, you simply open My Document folder. Is there possible to make My Document interface? Can anyone expert give some hints or guide or key word how can I draw the Icon that appear at right handside