Text not printing centered, but centered in document

I am trying to print on envelopes. The text in my mail merge is centered, but no matter what setting i select
in the properties, it prints off to the side. Please help..im ready to toss this piece of crap out the window.
Im using the HP Officejet J4680 which i just bought 2 weeks ago.

Give this basic remedy a try. Quit iPhoto and delete your iPhoto preferences. To do this, go to your username> library> preferences> com.apple.iphoto.plist. Delete this file. Then reopen iPhoto; it will create a new preference file with all of the default settings.
If that doesn't work, do a verify and repair of permissions using Disk Utility.
I hope this helps.

Similar Messages

  • Info record Po text not printing in Po

    Hi all,
             Info record po text not printing in po print out. Info record po text showing in po at item level but it was not printing in po. In info record No matl text checked. In material master no text maintained. please help on this
             Thanks in advance for your help

    Hi Mahesh,
    Follow the path:
    SPRO--> MM --> Purchasing --> Messages --> Texts for Messages ---> Define texts for Purchase Order
    Double click on "Texts for Document Item" under Dialog Structure
    Click on new entries and then Fill the following fields:
    Pur. Doc. Category: Purchase Order
    Print Operation: New
    Doc. Type: NB
    Item Category: Standard
    Text Object: Purchasing Doc. Item texts (EKPO)
    Text Id: Info Record PO Text (F02)
    Print Sequence: 2
    Print Priority: 1
    and then Save
    Hope this helps
    Thanks,
    Ankur

  • MS Word text not printing on my HP Printer.

    I installed MS Word 7 and I cannot get it to print text.  Everything is hook up correctly and the printer will print the screen.  I have checked everything, any suggestion?

    Hi @Barbiegirl17 and welcome to the HP Forums!
    I'm sorry to hear you've had issues printing black with your Photosmart 6510 printer, but I will absolutely do my best to lend a helping hand
    I will suggest that you try the steps within this Printer Does Not Print Black Ink or Color Ink, or Prints Blank Pages document first. If that doesn't resolve the issue can you please let me know whether it's in or out of warranty and what country you reside in? Thanks!
    Hope to hear back from you soon!
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • Header text not printed for scheduling agreement

    Hi All,
    I have issue with header text print out for scheduling agreement (SA).
    In SA when I am manually writing some note and then taking print out, system is giving me correct output with maual note.
    I have one standard text (ST) which I need to be printed in evry SA, so in SPRO I created new head text for vendor and in copying rule for text for SA, I created linkage of SA header text with Vendor head text.
    In vendor master, I inserted ST in newly created vendor header text.
    So now when ever I create new SA for vendor system will determin header text from vendor master.
    Now after creating SA when I check the SA, I am able to my ST in SA, but at the time of print out this ST in not printing.
    Please let me know what could be the reson.
    Regards,
    Sameer

    I dont understand about what you mean by expand.
    When you a print PO, PO text  (header or item) it will check to the configuration setting.
    The system didnt care if its adopted from vendor master or info record, or whatever you make in the copying rule.
    In your case : you create a standard text then it get copied into PO , then you set the standard text to the PO for print out, example the standard text : word is
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    Then in the PO the text appear will be like below(the same, because it get copied)
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    If you configure it in define text for SA, then it the print out it will also (the same)
    "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    So what text need to expand?

  • Right side Text not printing in Dot Matrix Print

    Hi Gurus,
    When i take print of the smartform with Laser Jet Printer its comming fine , but when i print using Dot Matrix Printer the text at right side is not printing.
    Printer model : Epson DFX-5000+
    Can any one tell me how to resolve this..
    Thanks
    Ganesh

    hi ,
      SAPWIN Drivers which support those Epson printers  check in SAP (windows support )
      These will solve your Problem  .
    Regards
    Deepak.

  • Smartforms-Text not printing completely

    Hi!
    In my invoice printing one of the item columns which shows the text for the material description is getting trunctaed. Those ar elong texts but when we print it only 70 caharactrs appear and the rest gets cut and dosent show on the form . The text is stored in a variable g_kdmat whose associated type is TDLINE whose lenght is 132 but I dont understnd why only 70 characters appear in my invoice printing. Can anyone help me out with this please. Urgent please.
    Thanks

    My coding for extracting the text is as folows:
    data: l_werks like vbrp-werks,
          l_hlmat type ZHLMAT,
          l_kunnr like vbak-kunnr,
         l_vbeln like vbrp-vbeln,
         l_posnr like vbrp-posnr,
          l_product_key type TDOBNAME,
          lt_lines type table of tline,
          ls_lines  type tline.
    Get kdmat, not exist then get material sales text, not exists then Material
    description
    **get from kdmat
    fill g_hlmat
    if gs_gen_del-uepos = '000000'.   "BOM Main
       g_hlmat = gs_gen_del-material.
       l_hlmat = ' '.
    else.
       l_hlmat = g_hlmat.
    endif.
    get g_kdmat, g_kdmtx
    select single werks  into l_werks from vbrp
         where
         vbeln = gs_vbap-vbeln and
         posnr = gs_vbap-posnr.
    get sold to
    select single kunnr into l_kunnr from vbak where
        vbeln = gs_vbap-vbeln.
    select kdmat kdmtx into (g_kdmat, g_kdmtx) from zcustmat
        where
        parvw = ' ' and
        kunnr = l_kunnr and    "sold to
        matnr = gs_gen_del-material and
        werks = l_werks and
        hlmat = l_hlmat.
    endselect.
    check sy-subrc <> 0.
    get material sales text
    concatenate gs_gen_del-bil_number gs_gen_del-itm_number into l_product_key.
    call function 'READ_TEXT'
        exporting
          name = l_product_key
          object = 'VBBP'
          id = '0001'
          language = sy-langu
         tables
           lines = lt_lines
         exceptions
           not_found = 1
           ohters = 2.
    if sy-subrc = 0.
        read table lt_lines into ls_lines index 1.
           move ls_lines-tdline to g_kdmat.
    Remove sapscript special characters
           replace: '<(>' in g_kdmat with ' ',
                    '<)>' in g_kdmat with ' '.
           exit.
    endif.
    get Material description
    select single arktx into g_kdmat from vbrp where
         vbeln = gs_gen_del-bil_number and
         posnr = gs_gen_del-itm_number.
       vbeln = gs_vbap-vbeln and
       posnr = gs_vbap-posnr.
    if sy-subrc <> 0.
    g_kdmat = 'No Product service !!!!!'.
    endif.
    I fail to understand why the entire text is not coming , when the window size is ok and text has place to flow into subsequent lines. Is it something to do with the associated type in global data or somet8ing else.
    Thanks

  • PO Item Text Not Printing correctly

    Hello,
    Per the config settings, the PR Item Text is transferred to the PO Item text while creation of a PO.
    When the PO is created, one can see the PO Item Text maintained in ME23N, but when you do the print
    preview / print output, it is not displayed.
    Few observations I would like to point out:-
    1) Tables STXH and STXL are maintained correctly for PR.
    2) Tables STXH and STXL are not maintained when the PO is created.
    3) If you do the changes in PO Item text through ME22N for say Line Item 0010 and save, then print preview / print output shows only for Item 0010 since the entries are not present in STXH and STXL.
    4) In T-code ME23N, when you go to PO Item Text tab for Line item 0010, then interestingly PO Print Preview shows only for 0010 even though there are no table entries. If you drill down for all line items, the print preview shows for all.
    Can anyone please suggest why the print preview / print output does not show for all line items and why SAP is behaving this way?
    Is there any other config settings to be done?
    Regards,
    Sanjiv

    Hi Sanjeev,
    Can you tell me what did u do for the item text to appear on the foem. Am having the same issue. Did u do any cnahes in teh form / driver program?....Pls let me know.
    What was the customisation that was affecting it.
    I am using the same
    SAPFM06P ENTRY_NEU ZMEDRUCK(standard program).
    Did u do any changes in the form? I want the item text to appear below the item no.
    Please let me know.
    Thanks
    Micky

  • HP4620 will not print black BUT i can scan a copy to the printer and then print out black

    AS soon as i changed the black print cartridge it stopped printing black copies    but i can scan a document to the pc and then print it and it prints out perfect .... this is the third HP printer that i have (different models) where the SAME thing happens... i just sent 105.00 for cartridges that the printer still does not print.  I'm not understanding why i can print out a scanned document but cannot print anything else   PLEASE help me because ive already wasted 105.00 .... i've done everything ... cleaned the printheads 20 times and also reset printer to factory defaultsNOTHING WORKS .......

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • MY HP 2840 will not print, receive faxes, or scan documents. Do I need more memory?

    I have windows 7, 32 bit operating system.  I was getting error messages that said page too complex, even with simple documents.  Now, I'm not getting that message on the printer screen, but on the computer screen I get "error printing" when I click on the printer icon.  If anyone has a solution, please help me with this.  I've already reinstalled the printer and drivers several times.  Not sure if I opted for the correct driver.  I've been told that perhaps I need to add memory to the printer.  If this is the case, how do I go about doing that?
    Thanks for your help!

    Hello there! Welcome to the forums @conniew8986 
    I saw your post about how you cannot print, however scanning and copying works fine.
    I have a few things to ask you and some things to try.
    Please respond to me with the following. If there are any steps here that you have not tried, please try them before responding and include the result:
    How is the printer connected (USB/ wireless/ wired/ Bluetooth)?
    Have you tried printing from different programs?
    Have you tried uninstalling and reinstalling the software?
    Run the Print and Scan Doctor and include the results.
    Did you make any recent changes to your set up (physical move, upgrade, downgrade, new software installed, new router, etc)?
    Is the printer plugged directly into the wall outlet (avoiding power bars and surge protectors)?
    Have you completed all Windows Updates?
    Have you tried using a different USB/Ethernet cable?
    Thank you
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • SAP SCRIPT: Header text not printing - Custom Purchase Order.

    Hello Experts,
    I have used the standard MEDRUCK and copied to ZMEDRUCK. I want the PO header text to print in my form.
    I have used subroutine-pool and called it in the form.
    Here is my subroutine
    FORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
      TABLES EKKO.
      DATA: BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
      DATA  HTEXT LIKE EKKO-EBELN.
    *  HTEXT = EKKO-EBELN.
      READ TABLE in_tab WITH KEY EKKO-EBELN.
      if sy-subrc = 0.
      TNAME = in_tab-value.
      ENDIF.
    TNAME = EKKO-EBELN.
    *CONCATENATE EKPO-ebeln EKPO-ebelp INTO v_item_text.
    *MOVE v_head_text to HNAME.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
    *   CLIENT                        = SY-MANDT
        id                            = 'F01'
        language                      = 'E'
        name                          = TNAME
        object                        = 'EKKO'
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        = TNAME
      tables
        lines                         = li_lines
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CLEAR out_tab.
    out_tab-VALUE = TNAME.
    CONDENSE out_tab-VALUE.
    MODIFY out_tab TRANSPORTING VALUE WHERE NAME = 'TNAME'.
    ENDFORM.
    And my script in the form is
    PERFORM FETCH_TABLE_DATA IN PROGRAM ZMEDRUCK_SUBP2
    USING &EKKO-EBELN&
    CHANGING &TNAME&
    ENDPERFORMpar RECEIVED FROM M/S     &TNAME&
    The header text is still not flowing in my form.
    What mistake i'm I doing here ?
    How can I resolve this ?
    Pls help !

    Hi,
    Data is li_lines internal table. 1st you have to read the text form the internal table line by sy-tabix.
    At last you have to concatenate these variable into the out tab value.
    you can use the following code
    ORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
      TABLES EKKO.
      DATA: BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
      DATA  HTEXT LIKE EKKO-EBELN.
    READ TABLE in_tab WITH KEY EKKO-EBELN.
      if sy-subrc = 0.
      TNAME = in_tab-value.
      ENDIF.
    ALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            = 'F01'
        language                      = 'E'
        name                          = TNAME
        object                        = 'EKKO'
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      tables
        lines                         = li_lines
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
      WRONG_ACCESS_TO_ARCHIVE       = 7
      OTHERS                        = 8
    IF sy-subrc  0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    data : f_lines TYPE i,
    DESCRIBE TABLE li_lines LINES f_lines.
    data: lstr type String,
          lstr1 type string,
          lstr2 type string,
          lstr3 type string,
          lstr4 type string.
    read table li_lines index 1.
    lstr = li_lines
    condense lstr.
    clear li_lines
    read table li_lines index 2.
    lstr1 = li_lines
    condense lstr.
    clear li_lines
    read table li_lines index 3.
    lstr2 = li_lines
    condense lstr.
    clear li_lines
    if f_lines GT 3.
    ead table li_lines index 4.
    lstr3 = li_lines
    condense lstr.
    clear li_lines
    ead table li_lines index 5.
    lstr4 = li_lines
    condense lstr.
    clear li_lines
    endif.
    data : v_text type text.
    concatenate  lstr1 lstr2 lstr3 lstr4 into v_text separate by ' '.
    CLEAR out_tab.
    READ TABLE out_tab WITH KEY name = 'TNAME'.
    out_tab-value = v_text
    MODIFY out_tab INDEX sy-tabix.
    Regards
    Nayan Kumar

  • Smartform - text not printed bold

    Hey guys, hope anyone can shed some light on this.
    We have invoices with a smartstyle attached, using font Verdana.
    Some texts are marked as bold in the smartforms.
    Now, my problem:
    When printing from any environment (DEV, PRD) using one of the printers configured in SAP, text marked as bold is not printed in bold.
    When printing the same invoice using LOCL, and sending it to the exact same printer from windows, text marked as bold is printed in bold.
    So I guess it's not the form, it's not the style, it's not even the printer: just the printer settings in SAP.
    In many ways, it  is very similar to the issue addressed in this thread:
    [Printer Setting|Printer Setting] , except that when previewing the text doesn't show as bold.
    My question is two-fold:
    - How likely is it that this issue is related to the printer configuration (and thus, basis config)?
    - If yes to the above, how do I verify this? I need something solid, since the SAP basis guys aren't very cooperative and keep pointing out that it's either the smartform or the smartstyle - without researching themselves
    Thanks in advance.

    Hi,
    I think its the issue of the basis people,they need to make the settings. We had a similar problem here,we had to change the printer settings in SPAD,affter the basis peole had made the settings for us, for taking printout in hindi.
    Thanks.

  • IPhoto 6.0.6 text not printed on cards and book

    I bought via iPhoto cards and entered texts. The text was not printed when I received it. A few days later ordered a hardcopy book : same problem.
    All texts are missing except the text on the cover of the book. What can it be ?
    Message was edited by: mardge

    Mardge
    Welcome to the Apple user discussion forums
    Report the problem to Apple - they will refund your cost and may have a solution
    US page - you probably should search for the returns page for Belgium - http://www.apple.com/support/photoservices/returns/
    Did you preview the book and the card before sending - http://support.apple.com/kb/HT1040 ?
    Doe the preview show the text?
    Is there anything unusual about the text that did not print?
    LN

  • Some text not printing when printing from FM8 to Pdf

    We have recently upgraded to Acrobat 9 and now have problems with some Helvetica text not showing up in the pdfs.  If we change the text to Arial it prints.  Changing/substituting Arial for Helvetica is not an option since these files are structure using modules built by a 3rd party.  This is obviously an issue with Framemaker8 and Acrobat 9 so my hopes are that someone else has had this issue and has a fix.

    Thanks Art. Sorry, I looked through the forum and didn't see any Q&A on missing text in Pdfs.  We are on Windows XP working files from our desktop and our server.  Our normal method of producing pdfs is through File>Print using our minor customized pdf settings for screen viewing and hires printing (we've used these settings for years).  Since our upgrade to Acrobat 9 we are now using Distiller 9.2.0.124.  I've also found out since I first posted my question that we are not on the latest version of Framemaker8.  I will run the updates to get us to the latest version of 8 and see if that fixes what seems to be an incompatiblity issue between FM8 and Acrobat 9.  I say that because this problem started when we upgraded to Acrobat 9.  If that doesn't fix the problem, I'll get back to you to find out more about the Microsoft printer Hotfix.  Unless you know for a fact that FM8 is not compatible with Distiller 9.2.0.124, in that case we'll need to upgrade to FM9.

  • Text not printed

    does not print any text

    Hi Jimmy,
    Do you mean on screen, in some App, or when Printing to a Printer?

  • HP Officejet 6500 Wireless will not print black but will color

    I did the soak & had a lot of build up & put it back in machine it still with not print anything black. I've tried copying a form still no luck, I tried a hard shut down to reboot its self still nothing. What else could it be? or what else could I try to get it up an working?
    thanks~~

    @fradybaby 
    Did you get any improvement at all with the Black after soaking the printhead? (as usually it is quite successful). Sometimes it might take a couple of attempts with the soak. 
    Is the printer still within warranty? (typically it's one year from date of purchase), as the issue could be related to the printer itself.
    Support Phone no.s
    http://welcome.hp.com/country/us/en/wwcontact_us.html
    Printer warranty check tool (enter serial no.)
    http://h10025.www1.hp.com/ewfrf/wc/weInput?cc=ie&lc=en
    Thanks, Ciara
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

Maybe you are looking for

  • Why is Preview taking up so much space on my hard drive when saving changes to a PDF file?

    I am working with a large PDF file (3.3GB) in Preview and am highlighting and adding notes to the contents. Every so often, Preview auto-saves the document, but while it's doing that it takes up a HUGE amount of space on my harddrive! Last time it tr

  • ID CS4: Spinning beach ball is driving me mad

    I mentioned this inside another thread, then decided I needed to start my own topic. I've got a 2.66 GHz Dual-Core Intel Mac with 4 GB of memory (running Tiger), and have noticed a serious slow-down when moving from ID CS3 to ID CS4. I have shut off

  • No picture in picture using facetime

    I have a MacBook Pro and Facetime works fine. When I try to Facetime with my girlfriend, who has a MacBook Air, all she sees is herself on her computer, whereas I see her in the big window and myself with the picture in picture on my computer. Why ca

  • XML file format

    I'm using UTL_FILE package to write into a text file. Instead of writing this into a text file I want to write this into a XML file. How to do this using the pl/sql procedure?What package and function I have to use to accomplish this?Please let me gi

  • How to download data in excel from web report in sap ?

    how to download data in excel from web report made  in sap abap? through tcode smw0.