5.1.2 USPS print functions inop, running 10.6.8.

Unable to download  Servelt PDF from USPS website when trying to print postage using Safari  5.1.2 and 10.6.8.   Works fine with safari 5.1 and 10.6.8. 

From the Safari menu bar click Safari > Report  Bugs to Apple.
Try this...
Go to ~/Library/Caches/com.apple.Safari
Move the Cache.db file from the com.apple.Safari folder to the Trash, restart your Mac.
See if that made a diffrence.

Similar Messages

  • Enabling the printing function of your HP Laserjet M1005 printer

    If you wonder how to install the printing function of your HP Laserjet M1005 printer, here is listed a bullet list of the actions. This has just been tested out thanks to the Support team from Germany
    Go to the page http://h20000.www2.hp.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=1 839459&lang=en&cc=us&prodTypeId=18972&prodSeriesId=1839458&taskId=135 and select the link Mac OS X; download the link "HP LaserJet M1005 MFP Mac OS X Full Software Solution"
    Use the opportunity to update your printer firmware by selecting the link "Printer Firmware Update"
    Shutdown your Mac and start up in the safe boot mode (should be the combined keyboard shift and power on/off - refer to the Apple web site for details)
    Run the downloaded SW package listed in the step 1
    Go and select under system settings printer and fax, follow the step-by-step instructions to have a printer installed
    Shutdown your Mac and start up again in the safe boot mode
    Connect your printer and the printer SW installation message shoud pop up requesting you to install it
    SW download process should appear and run
    Be aware that just the printing function will be available - no scanning function so far
    For those who may be interested in knowing why safe boot mode: it is likelz that my anti-virus SW Kaspersky denied the installation.
    Continue to enjoy your HP Laserjet M1005 printer

    "For those who may be interested in knowing why safe boot mode: it is likelz that my anti-virus SW Kaspersky denied the installation."
    You should read this:
    http://www.reedcorner.net/mmg-antivirus/

  • There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents. Error message in PhotoShop CC

    Printing from PS CC worked fine today. I made no changes to preferences. In between working with 2 projects, the first one printed fine, the second gave me this Error Message.
    There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents.
    Now I've checked for updates for my printer, reset my printer, reset PS CC preferences, picked my printer as Default and Last Used, and rebooted. I've followed all the recommended fixes for this issue I could find here and on the internet. I can print fine from any other program. Alas, the error message keeps popping up and I can't print.
    PS CC is up to date
    Running OS 10.10.2
    HP Printer updated
    Help?

    Have you printed to this printer from 10.10 before?  If so, check your connections.

  • Photoshop suddenly does not print to Epson 3880 - PROBLEM: Cannot print from Photoshop  After restart error message appears:  - "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopen

    PROBLEM: Cannot print from Photoshop
    After restart error message appears:
    — “There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents.”
    • All print commands are greyed out and unavailable — even to call up the printer commands cannot be done.
    The printer printed fine until about 2 weeks ago when this error message appeared.  Printing continues from Pages, I-photo, preview etc. —  only Photoshop fails.
    The printer has been turned on and off, as have open documents been closed and open etc..   Preferences reset.  Repeatedly I have read through blogs and forums and attempted to contact Adobe — all without results
    Epson support struggled to find reason and several solutions were tried and they assume this is an Adobe problem.
    Running Mac Powerbook X 10.10.2 / Photoshop CS6 13.0.6.x64
    Attempting unsuccessfully to print to Epson 3880
    What Adobe support will be of help.
    Robert Darling —  2/19, 20, 21,22,23/2015

    Probably best to ask in Photoshop General Discussion
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Can't create a pdf, or see preview, from print function in Filemaker

    I recently bought a 24" imac with 10.5.6 installed. I transferred everything over from my old G5. Everything works well except one function that I really need.
    I Filemaker (8.5), in the print function, if I click on "pdf", the "save as pdf" choice doesn't work. Nothing happens. Also the "preview" button doesn't work. Nothing happens.
    I can create a pdf from the "save/send records as" function in the FILE menu, but it's a pain.
    The "save as pdf" works in all my other programs except Filemaker.
    I've deleted the plist file, reinstalled Filemaker, even called Apple. Nobody seems to have an answer.
    Any ideas?
    Thanks.
    alchait333
    Message was edited by: alchait333
    Message was edited by: alchait333

    As far as the images are concerned, that may be a result of your choice of job settings. You may want to use the Press or Print option if the image quality is important. I assume you are talking about bit images in this case.
    As to the hangup, have you checked to see if AcroTray is active on your system? It may not be running as needed. In the meantime, try checking print to file and then opening that file in Distiller to complete the conversion to PDF.
    Before you ever try a reinstall, you need to do a repair first to see if that resolves the problem. There are a lot of unknowns about your exact process for the printing and your job settings that may be part of the problem. The rest of your system setup is useful in some cases, but did not help me see your problem.

  • Printing function gets called twice..!

    The following is my class that prints a string array which sometimes goes into multiple pages.. The code in which i create the multiple pages is below this class.. the problem is each time i append a new page to the book the print function in the class PaintC is called twice.. so if I write some additional code inside the print function to edit the strings .. it ends up running twice and the formatting i try to do gets messed up.. !! do you guys know why this is happening..? Please help.. ive been trying to find out since a very long time..!!
    The code in which i call this function is also shown below
    CLASS FOR PRINTING
    class PaintC
        implements Printable {
      String ad[];
      public PaintC(String ac[]) {
        System.out.println("Print Class Called 1");
        this.ad = ac;
      public int print(Graphics g, PageFormat pf, int pageIndex) throws
          PrinterException {
        System.out.println("Print Function Called 1");
        Graphics2D g2 = (Graphics2D) g;
        g.setFont(new java.awt.Font("Trebuchet MS", Font.PLAIN, 8));
        int xo = 60;
        int yo = 36;
        for (int y = 0; y < 76; y++) {
          try {
            g2.drawString(ad[y], xo, yo);
            yo += 9;
          catch (Exception r) {
            y = 76;
        return Printable.PAGE_EXISTS;
    CODE FOR CREATING MULTIPLE PAGES USING ABOVE CLASS
    void dotheprint() {
        PrinterJob printerJob = PrinterJob.getPrinterJob();
        PageFormat format = new PageFormat();
        Printable painter1;
        format = printerJob.defaultPage(format);
        Paper paper = format.getPaper();
        paper.setImageableArea(60, 36, 500, 756);
        format.setPaper(paper);
        // try storing in a string array each line
        Book bk = new Book();
        String ab = jTATRRep.getText();
        int i, j, lc = jTATRRep.getLineCount();
        String ac[] = new String[lc + 3];
        String ad[] = new String[78];
        ac = ab.split("\n");
        //System.out.println("Number of Lines = " + lc);
        //setting up pages as string arrays..
        // setting up first page
        //Assuming 76 lines per page
        for (i = 0; i < 76 && i < lc; i++) {
          try {
            ad[i] = ac;
    catch (Exception ex) {
    bk.append(new PaintC(ad), format);
    ad = null;
    // setting up second page if neccessary
    // //System.out.println("Number of Lines /76= "+lc/76);
    int pagec = lc / 76;
    int modul = lc % 76;
    int k;
    if (modul > 0) {
    pagec++;
    // //System.out.println("Number of pages : "+pagec);
    j = 76;
    while (pagec > 1) {
    ad = new String[76];
    k = 0;
    for (i = j; i < (lc - 1) && k < 76; i++) {
    // //System.out.println("ac[i]= "+ac[i]);
    ad[k] = ac[i];
    k++;
    bk.append(new PaintC(ad), format);
    ad = null;
    j += 76;
    pagec--;
    printerJob.setPageable(bk);
    boolean doPrint = printerJob.printDialog();
    if (doPrint) {
    try {
    System.out.println("Print Called 1");
    printerJob.print();
    System.out.println("Print Called 2");
    catch (PrinterException exception) {
    System.err.println("Printing error: " + exception);
    CODE IN WHICH THE PRINT FUNCTION IS CALLED
    void jBPrint_actionPerformed(ActionEvent e) {
        dotheprint();
    class ContactManager_jBPrint_actionAdapter
        implements java.awt.event.ActionListener {
      ContactManager adaptee;
      ContactManager_jBPrint_actionAdapter(ContactManager adaptee) {
        this.adaptee = adaptee;
      public void actionPerformed(ActionEvent e) {
        adaptee.jBPrint_actionPerformed(e);

    You might want to check out the [url http://forum.java.sun.com/thread.jsp?forum=57&thread=500687&tstart=0&trange=15]crosspost in the swing forum before spending your time answering this question.

  • There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents.

    I've never had this problem before. It only affects Photoshop CS6 and CS5 that I have installed. I'm running MAC OS 10.9.5
    I have three printers and HP and two Epsons, and I get this dialogue when trying to print from Photoshop CS6 or CS5.
    There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents.
    Other applications print fine on all three printers.  I tried deleting the Photoshop Prefs numerous times without results.
    Does anyone have an answer for this?
    Thanks.

    Have you printed to this printer from 10.10 before?  If so, check your connections.

  • Print Functionality in CE NWDS

    Hello Gurus ,
    I had a situation in using Print Functionality .
    I had CE- NW 7.10 Server Application in which I had used the Print Fucntionality by using the
    WDPrintService.getPrintService().print(wdThis.wdGetAPI());
    Now I am trying to run this application on NW 7.0 server by making this as a Federated Portal Iview . ON doing so , I encounters 2 difficulties :
    1. The Print fucntionality button which is working fine in case of CE 7.1 is no showing as Print Operation not supported .
    2. Secondly Just before onclick on Print Button action , I am presented with a new Browser window , which asks for the Login credentials of CE server , since my FPN iview resides there  . and once I am done with login , it throws me the exception in Portal , I check he logs in NWA of CE server coz that is where the Iview is running .
    Here are the atached logs :
    Caused by: com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Unable to parse template &#39;&lt;System.scheme&gt;://&lt;System.servername&gt;:&lt;System.serverport&gt;/webdynpro/dispatcher&lt;Request.DistributionZone&gt;/sap.com/pb/PageBuilder;jsessionid=&lt;Request.JSessionID&gt;?sap-ext-sid=&lt;ESID[url_ENCODE]&gt;&amp;sap-wd-cltwndid=&lt;ClientWindowID&gt;&amp;sap-wd-tstamp=&lt;$TimeStamp&gt;&amp;PagePath=&lt;FPN.PCDHomeLocation[url_ENCODE]&gt;&amp;sap-pp-producerid=&lt;producerID&gt;&amp;sap-pp-consumerBaseURL=&lt;Request.BaseURL[url_ENCODE]&gt;&amp;sap-wd-app-namespace=zzzz&amp;sap-ep-version=&lt;Request.Version[url_ENCODE]&gt;&amp;sap-locale=&lt;Request.Locale&gt;&amp;sap-accessibility=&lt;User.Accessibility[SAP_BOOL]&gt;&amp;sap-rtl=&lt;LAF.RightToLeft[SAP_BOOL]&gt;&amp;sap-explanation=&lt;User.Explanation[SAP_BOOL]&gt;&amp;sap-cssurl=&lt;LAF.StylesheetUrl[url_ENCODE]&gt;&amp;sap-cssversion=&lt;LAF.Version[url_ENCODE]&gt;&amp;sap-epcm-guid=&lt;EPCF.RemoteGuid&gt;&amp;com.sap.portal.reserved.wd.pb.restart=&lt;Node.Mode.isRefresh&gt;&amp;DynamicParameter=&lt;DynamicParameter[PROCESS_RECURSIVE URL_ENCODE]&gt;&amp;&lt;ForwardParameters[QUERYSTRING]&gt;&amp;&lt;User.&quot;com.sap.tc.webdynpro&quot;.debugParameters&gt;&#39;; the problem occured at position 0. Cannot process expression &lt;System&gt; because Unable to lookup System &amp;#39;CED&amp;#39;.
    Please check the system object and the alias.
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContentPass(AbstractIntegratorComponent.java:156)
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContent(AbstractIntegratorComponent.java:130)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:200)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher$5.service(RequestDispatcherFactory.java:308)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher.service(RequestDispatcherFactory.java:298)
    at com.sap.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:278)
    ... 65 more
    +++++++++++++++++++++++++++++++++++++++
    3. shall I had to maintain the SSO ticket for tow portals in ach other  ...
    Please suggest ..........
    Regards
    Sandeep

    Hi
    Have a look on this similar thread.
    Best Regards
    Satish Kumar

  • How can i set print mode at run time in smartforms???

    Hi expert,
    In smartforms how can I  set print mode at run time.
    I have one screen.In this screen one check box is there.If user select that check box then print should be come double side otherwise it is coming single side.
    If it is possible then plz give me answer asap.

    Hi,
    Set These settings
    While calling smartform, paas control_parameters and output_options as mentioned below and set
    user_settings = ' '.
    It will send the smartform output to spool.
    DATA: wa_output_options TYPE ssfcompop,
    wa_ctrl TYPE ssfctrlop.
    wa_output_options-tdimmed = 'X'.
    wa_output_options-tddelete = 'X'.
    wa_output_options-tdimmed = ' '.
    wa_output_options-tddest = 'LOCL'.
    wa_ctrl-no_dialog = 'X'.
    CALL FUNCTION lv_fm_name
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = wa_ctrl
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    output_options = wa_output_options
    user_settings = ' '
    x_adrp = x_adrp
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards,
    Kumar(Reward if helpful).

  • USB Shared Printers (Full Printing Functions)???????

    Hi All
    Not sure if this is the proper place to ask this question, but here goes.
    I have 4 macs, 1 Intel, 1 G5, 1G4 and 1G3 all running the latest system software except for the G3 (10.3.9) I have 3 printers, all HP that I am trying to share through USB Printer Sharing. I have all of them connected via a USB hub to the G3 with Printer Sharing on. But that is not the question, because I can get them to print no problem, but I lose all of the advanced printing functions of each. For example, paper type, quality, etc.
    Did I do something wrong, can I get them to work? Or is it just a fact of Printer Sharing?
    As a side note, when hooked directly to my main computer (via USB with all drivers loaded) all printing functions work just fine.
    Thanks in advance for your responses.
    MacBook Pro 17   Mac OS X (10.4.1)  
    Imac G5 20   Mac OS X (10.4.1)  

    Make sure that all of the other machines have the same versions of the printer drivers as the sharing machine. That may help.

  • Limit Print Function via password

    My dilema is this.
    My son and daughter continue to print reams of items from the family machine.
    I would like to have a password added to the print function.. Example being anytime something is sent to the printer a dialog box opens prompting for a password.  The print function will not happen unless the proper password is entered.
    I had this ability using 10.7 but when I updated to 10.8 the password function disappeared.
    I seem to recall setting this function up using 10.7 and the server software even though I was not running server.
    Any help would be appreciated.

    Please see my response in your other post about this issue.

  • Cannot get printer function back from copy function

    On several occasions my printer switches to a function other tha "print" and I cannot get the print function back.  It seems like it should be a simple task but I have tried everything including turning it off and on.  The computer data indicates that the proper printer is chosen.  Thanks

    Hello @jbg1946,
    Welcome to the HP Support Forums!
    I understand that occasionally you are not able to print from your Windows Vista computer to your HP PSC 2510 Photosmart All-in-One Printer. I would like to assist you today with resolving this issue. Now,  you indicate in your post that your machine seems to switch functions. This is quite unusual as your printer should only perform the tasks that was asked of it. When you send the print command, your printer should print. When you select Copy on the front panel of your printer, your machine should Copy. When you want to scan and and select the Scan button, your machine should scan. If you're selecting the print button on the computer, but the printer fails to print, this would indicate a potential hardware on the printer or a software/driver issue on the computer, rather than a switch of functions. 
    To start troubleshooting I am going to have you download and run the HP Print and Scan Doctor Tool. This Tool will run on your computer and 'fix printing' issues for you. Should any driver, software, or connection conflicts be found than the HP Print and Scan Doctor Tool will attempt to resolve those conflicts for you.
    Please click here to download the HP Print and Scan Doctor Tool. Once the website opens select the Download button on the top left. If prompted, please allow the download to Run. Once the download is complete follow the onscreen prompts to 'fix printing'. Once the HP Print and Scan Doctor Tool has completed, please test printing again.
    Should the issue persist, please let me know if you ever get any error messages either on the computer or on the printer when you try to print and it fails.
    Please respond to this post with the result of your troubleshooting. Good luck!
    X-23
    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" on the right to say "Thanks" for helping!

  • Calling IE's print function

    Hi,
    Is there anyway to make a button call IE's print function with web dynpro?
    Thx

    The thread Christophe pointed to, does it a little different:
    1. they create an HTML page @ runtime (based on the context, but that doesn't matter in your case) that contains javascript to print the page
    2. they open the page in an external window
    The problem with my approach is that it uses an IFrame, which is deprecated as of NW04s. An external window is different, that'll most likely be supported in the future too. But the main drawback of the external window is that you need to create it('s content)...
    So yes, I'm afraid the conclusion is there's no perfect way of doing it. In case your iViews are running in the portal, maybe, just maybe, a Web Dynpro action might trigger a portal event that in turn automatically executes the print action of the print button, i.e. the portal event "presses" the (invisible) print button on behalf of the user. I seriously doubt this is possible, but I'm no expert when it comes to portal eventing and what exactly is possible with portal eventing.
    Kind regards,
    Sigiswald

  • Apex Print Functionality

    Hi,
    We want to enable print functionality on our Apex Engine. The issue that we are running into is that :-
    1. Oc4J is a required component for "Apache FOP" and it is covered by development license.
    2. BI Publisher is non free.
    At this point we are looking for a Open source product to build our print functionality.
    Am I missing anything or do we have any other options that we can explore?
    Please let us know! Thanks

    You can use the HTTP Server of the Database, you need to install it on the CD Companion of the Database, then you configure some files like httpd.conf and dads of the HTTP Server.
    So you can print to PDF

  • Print Documentation - re-running

    We are transfering projects from RoboHelp 4x to RoboHel 7 - running the Print Documentation function was not reviously done, so we are just learning to work with the settings, etc..and how it works so that work is not duplicated each time on-line Help is updated.
    Question:  finished doing some formatting in Word after generating Print Documentation, will 'formatting' and editing be retained if the Print Documentation is run again? or will formatting need to be re-done?

    Hi there
    Consider creating a printed document from RoboHelp to be similar to baking a cake. The Single Source Layout properties is very much like the recipe used. The Word Document you get in the end is very much like the cake that would result.
    You are describing editing the Word document. This is like smearing icing on your cake. You can't expect to bake another cake and have it already iced.
    So to specifically answer your question, you will indeed need to re-format the document if you create Printed Documentation again.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • Deploy OS task sequence fails when deploying to multiple computers

    Hi gang, I'm running into an issue when imaging multiple computers with MDT 2012. Let me give some background info. I have installed Windows 7 64 bit on a laptop in audit mode, made my configurations, sysprepped the machine, and captured a .wim using

  • IC WebClient: Launch transaction from button

    Hello, I'm able to launch a BOR method with GUI of a backend ERP-system from the navigation bar of the IC WebClient using the transaction launcher functionality. Does anyone know how to launch GUI-BOR methods from a "normal" button in a view instead

  • (intel 10.4.4) Mail 2.0.6 message search malfunctions...

    I've been having a consistent mail search issue with the current Mail program in that it's search function does not work with the "Entire Message" option (only From, To and Subject). Every time I do a search with Entire Message, I get no results. I r

  • Oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects

    Hi All, In one of my menus which contain function on clicking of which we get UI in tabs is erroring out with the below error: oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects match the primary key oracle.jbo.Key[-99999 ].      at orac

  • Epson Stylus DX4000 conflict vs OSX 10.4.9?

    Hi all, everything OK with my printer Epson Stylus CX3550 since I decided to switch to a Stylus DX4000: I'm not able to select the new printer & driver Everytime I get the message (translation from italian): "error when trying to add the printer sele