Text disappears in PDF

I was sent a logo - in Illustrator - from another company. It was made up of line artwork and a couple of lines of text. All the lettering had been outlined.
I included it in a larger Illustrator doc, and when I created a PDF via Distiller of the whole thing, one of the lines of text in this logo didn't appear on the PDF, even though everything else showed up ok.  Because the missing text was outlined, there wasn't much I could do in the way of changing/adjustment.
I got round the problem by re-typing the line myself, and that showed up on the PDF, but no matter what I did with the original supplied line of text it would not appear on the PDF
Any suggestions?
Using a Mac 10.4.11 and CS3

O.k., that's what I imagined. Overprinting white has caused a lot of discussion elsewhere on this forum. There's a script for removing it but I can't remember just now what it's called. Otherwise you can Select Same... and remove overprints manually. Anyway, glad it's solved and remember ALWAYS to look at Overprint Preview before you make your pdfs. White overprinting is pretty nonsensical really unless you're using transparency effects. Reckon the Illy team ought to disable it so that you can only do white transparency effects through the Transparency palette and not through Overprint. That's the way it always was in Illy 5 and onwards or until they invented transparency.

Similar Messages

  • Text disappearing in pdf file

    I received a word file that was converted to pdf using "pdf maker". In the word file there is "shading" behind the text. In the pdf file if I select portions of the text and try to "highlight" it to make comments, some of the text disappears. (The text actually goes behind the "shading" so that you can't see it). If I use the "touch up object" tool in Acrobat professional, I can select the "shading" and delete and see the text underneath. Does anyone know why this is happening? Thanks

    I have run into this problem myself. I have been able to use the object selection tool (In Acrobat 8 Pro) to select the box in front of the text and delete it without also deleting the text.

  • Text disappearing in pdf when re-ordering tags

    I have a pdf (Acrobat 8 Pro), and I have created it as a tagged pdf in InDesign CS3. However, when I convert it to the pdf, the order of the tags changes, so that I need to use the Touchup Reading Order tool. When I do this, however, text disappears. The text in the ID file is in an opaque text box, and what is actually happening when I re-order in Acrobat is that the text is moved behind the opaque box so that it is no longer visible, but it still appears in the Order dialogue box.
    However, in ID, they are one object - it is a text box containing text, not a separate opaque box behind the text. Otherwise I might try tagging the box as an artifact and see if that works. Theoretically, I could select it in Acrobat to tag it as an artifact, but the selection tool only allows me to select rectangular areas, and so it selects both the opaque box and the text behind it.
    Any suggestions?
    Win XP

    I have run into this problem myself. I have been able to use the object selection tool (In Acrobat 8 Pro) to select the box in front of the text and delete it without also deleting the text.

  • Text disappearing in tagged PDFs

    I recently upgraded to Acrobat Professional 9. When creating PDFs via "Convert to Adobe PDF" in Word with tagging enabled,  I'm sometimes seeing text disappear in the conversion process so that whole lines are missing from the PDF.
    Using the print dialog to print to PDF works fine and does not result in missing text. However I need tagged PDFs to meet high accessibility requirements, so should be converting from Word. Has anyone else encountered this problem? The version of Word I'm using is 2003.

    Usually when this happens it is related to the printer reflow that WORD does. There is a setting in WORD to select to not use the printer metrics for sending information to the printer. The other solution relates to selecting the Adobe PDF printer before you finish your layout, but you have already said the printer works fine.

  • Why does my text disappears (some of it) when I convert my .psd to a PS .pdf?

    I've read every possible answer that it could be, but it increases my .pdf to more than 600 MB, that it will supposed to be!! please advice!!!

    What version of PS? What text? What PDF setttings? What system? what fonts? You need to provide a lot more details. If the text disappears, the font may not allow to be embedded or you have applied some formatting or styling that can't be retained without converting it to pixel data...
    Mylenium

  • Why does Pages Text Disappear On Conversion to PDF

    I made a two-page newsletter in Pages '09. The text on the front page article disappears when I export to PDF. The text is there in the thumbnail for the file but when I open the PDF document, the page is blank except for the graphics and photo.
    I'm using pages '09 and the latest version of Acrobat Pro. The font is Futura Medium and shows up fine on the second page.
    Any ideas?
    Message was edited by: Hogrider03

    After pulling my hair out for several days trying to solve for this, my son looked at it and in 20 seconds figured out the problem. The file looked fine in Preview and showed up in the thumbnail. Exporting to Word also worked, but the text disappeared regardless of how I arrived at the PDF.
    When examining the text box for the the "disappearing" text, my son chose "Bring To Front" from the "Arrange" menu and that fixed it. This made sense because all the other body copy text was the exact same font/style, etc. and displayed as expected in the exported PDF. Therefore, the problem was isolated to the properties of that one text box. In the course of laying out the newsletter, that one text box was sent backward in the layers and when converted to PDF, was hidden behind an invisible layer (there was no background of any kind behind the text, just the white "paper").

  • PDF attachment, text disappearing once opened.

    Hi Experts, I have been working on a smartform conversion to PDF email. I have inserted a gui download after the conversion process to check the pdf conversion. When opening the pdf that was downloaded, the pdf is perfect. However, once the pdf is emailed out of SAP to the microsoft exchange server and I open it in Outlook, only one block of text is present and if I scroll the page the text disappears. Has anyone encountered this problem and/or can someone help me fix it?
    Thanks,
    Chris

    Here is my code as of right now. The PDF email is saying the pdf is damaged or could not be repaired, when I try to open it.
    DATA: it_otf   TYPE STANDARD TABLE OF itcoo,
          it_docs  TYPE STANDARD TABLE OF docs,
          it_lines TYPE STANDARD TABLE OF tline WITH HEADER LINE,
          it_soli TYPE STANDARD TABLE OF tline,
          it_table TYPE STANDARD TABLE OF tline,
          st_job_output_info      TYPE ssfcrescl,
          st_document_output_info TYPE ssfcrespd,
          st_job_output_options   TYPE ssfcresop,
          st_output_options       TYPE ssfcompop,
          st_control_parameters   TYPE ssfctrlop,
          v_len_in                TYPE so_obj_len,
          v_language              TYPE sflangu VALUE 'E',
          v_e_devtype             TYPE rspoptype,
          v_bin_filesize          TYPE i,
          v_name                  TYPE string,
          v_path                  TYPE string,
          v_fullpath              TYPE string,
          v_filter                TYPE string,
          v_uact                  TYPE i,
          v_guiobj                TYPE REF TO cl_gui_frontend_services,
          v_filename              TYPE string,
          v_fm_name               TYPE rs38l_fnam.
      DATA:  pdf_length      TYPE i,
             doctab TYPE TABLE OF docs.
      DATA: i_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
      i_tline TYPE TABLE OF tline WITH HEADER LINE,
      i_receivers TYPE TABLE OF somlreci1 WITH HEADER LINE,
      i_record LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    Objects to send mail.
      DATA: i_objpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
      i_objtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,
      i_objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE,
      i_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
      it_mess LIKE solisti1 OCCURS 0 WITH HEADER LINE,
      wa_doc_data TYPE TABLE OF sodocchgi1 WITH HEADER LINE,
      it_pcklist TYPE TABLE OF sopcklsti1 WITH HEADER LINE,
      it_receivers TYPE TABLE OF somlreci1 WITH HEADER LINE,
      tripdata TYPE  zps_appr_dissappr_wf,
      ziflo TYPE  iflo.
    Work Area declarations
      DATA: wa_objhead TYPE soli_tab,
      w_ctrlop TYPE ssfctrlop,
      w_compop TYPE ssfcompop,
      w_return TYPE ssfcrescl,
      wa_doc_chng TYPE sodocchgi1,
      w_data TYPE sodocchgi1,
      wa_buffer TYPE string."To convert from 132 to 255
    Variables declarations
      DATA: v_form_name TYPE rs38l_fnam,
      v_len_out LIKE sood-objlen,
      v_len_outn TYPE i,
      v_lines_txt TYPE i,
      v_lines_bin TYPE i,
      v_lines     TYPE i.
      DATA: itcpo LIKE itcpo,
            tab_lines LIKE sy-tabix.
    Variables for EMAIL functionality
      DATA: maildata   LIKE sodocchgi1.
      DATA: mailpack   LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
      DATA: mailhead   LIKE solisti1 OCCURS 1 WITH HEADER LINE.
      DATA: mailbin    LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA: mailtxt    LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA: mailrec    LIKE somlrec90 OCCURS 0  WITH HEADER LINE.
      DATA: solisti1   LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    *&      Form  smartform_email
          text
         -->C_FORMNAME text
      FORM smartform_email USING c_formname.
        CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
          EXPORTING
            i_language    = v_language
            i_application = 'SAPDEFAULT'
          IMPORTING
            e_devtype     = v_e_devtype.
        st_output_options-tdprinter = v_e_devtype.
    *st_output_options-tdprinter = 'locl'.
        st_control_parameters-no_dialog = 'X'.
        st_control_parameters-getotf = 'X'.
    .................GET SMARTFORM FUNCTION MODULE NAME.................
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname           = c_formname
          IMPORTING
            fm_name            = v_fm_name
          EXCEPTIONS
            no_form            = 1
            no_function_module = 2
            OTHERS             = 3.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    ...........................CALL SMARTFORM............................
        CALL FUNCTION v_fm_name
          EXPORTING
            control_parameters   = st_control_parameters
            output_options       = st_output_options
            tripdata             = zps_appr_dissappr_wf
            ziflo                = iflo
          IMPORTING
            document_output_info = st_document_output_info
            job_output_info      = st_job_output_info
            job_output_options   = st_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.
        ELSE.
    .........................CONVERT TO OTF TO PDF.......................
          CALL FUNCTION 'CONVERT_OTF_2_PDF'
            IMPORTING
              bin_filesize           = v_bin_filesize
            TABLES
              otf                    = st_job_output_info-otfdata
              doctab_archive         = it_docs
              lines                  = it_lines
            EXCEPTIONS
              err_conv_not_possible  = 1
              err_otf_mc_noendmarker = 2
              OTHERS                 = 3.
          IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    ........................GET THE FILE NAME TO STORE....................
          CONCATENATE 'Field Trip' '.pdf' INTO v_name.
          CREATE OBJECT v_guiobj.
          CALL METHOD v_guiobj->file_save_dialog
            EXPORTING
              default_extension = 'pdf'
              default_file_name = v_name
              file_filter       = v_filter
            CHANGING
              filename          = v_name
              path              = v_path
              fullpath          = v_fullpath
              user_action       = v_uact.
          IF v_uact = v_guiobj->action_cancel.
            EXIT.
          ENDIF.
    ..................................DOWNLOAD AS FILE....................
          MOVE v_fullpath TO v_filename.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize            = v_bin_filesize
              filename                = v_filename
              filetype                = 'BIN'
            TABLES
              data_tab                = it_lines
            EXCEPTIONS
              file_write_error        = 1
              no_batch                = 2
              gui_refuse_filetransfer = 3
              invalid_type            = 4
              no_authority            = 5
              unknown_error           = 6
              header_not_allowed      = 7
              separator_not_allowed   = 8
              filesize_not_allowed    = 9
              header_too_long         = 10
              dp_error_create         = 11
              dp_error_send           = 12
              dp_error_write          = 13
              unknown_dp_error        = 14
              access_denied           = 15
              dp_out_of_memory        = 16
              disk_full               = 17
              dp_timeout              = 18
              file_not_found          = 19
              dataprovider_exception  = 20
              control_flush_error     = 21
              OTHERS                  = 22.
          IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        ENDIF.
    convert pdf from 132 to 255.
        LOOP AT it_lines.
          TRANSLATE it_lines USING '~'.
          CONCATENATE wa_buffer it_lines INTO wa_buffer.
        ENDLOOP.
        TRANSLATE wa_buffer USING '~'.
        DO.
          i_record = wa_buffer.
          APPEND i_record.
          SHIFT wa_buffer LEFT BY 255 PLACES.
          IF wa_buffer IS INITIAL.
            EXIT.
          ENDIF.
        ENDDO.
    Attachment
        REFRESH:
        i_reclist,
        i_objtxt,
        i_objbin,
        i_objpack.
        CLEAR wa_objhead.
        i_objbin[] = i_record[].
    Create Message Body
    Title and Description
        i_objtxt = 'test with pdf-Attachment!'.
        APPEND i_objtxt.
        DESCRIBE TABLE i_objtxt LINES v_lines_txt.
        READ TABLE i_objtxt INDEX v_lines_txt.
        wa_doc_chng-obj_name = 'smartform'.
        wa_doc_chng-expiry_dat = sy-datum + 10.
        wa_doc_chng-obj_descr = 'smartform'.
        wa_doc_chng-sensitivty = 'F'.
        wa_doc_chng-doc_size = v_lines_txt * 255.
    Main Text
        wa_doc_chng-doc_size = ( v_lines_txt - 1 ) * 255 + STRLEN( i_objtxt ).
        CLEAR i_objpack-transf_bin.
        i_objpack-head_start = 1.
        i_objpack-head_num = 0.
        i_objpack-body_start = 1.
        i_objpack-body_num = v_lines_txt.
    Attachment
    (pdf-Attachment)
        i_objpack-transf_bin = 'X'.
        DESCRIBE TABLE i_objbin LINES v_lines_bin.
        READ TABLE i_objbin INDEX v_lines_bin.
        i_objpack-doc_size = v_lines_bin * 255 .
        i_objpack-body_num = v_lines_bin.
        i_objpack-doc_type = 'PDF'.
        i_objpack-obj_name = 'smart'.
        i_objpack-obj_descr = 'test'.
        APPEND i_objpack.
        CLEAR i_reclist.
        i_reclist-receiver = '[email protected]'.
        i_reclist-rec_type = 'U'.
        APPEND i_reclist.
       CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
          EXPORTING
            document_data              = wa_doc_chng
            put_in_outbox              = 'X'
            commit_work                = 'X'
          TABLES
            packing_list               = i_objpack
            object_header              = wa_objhead
            contents_bin               = i_objbin
            contents_txt               = i_objtxt
            receivers                  = i_reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
      ENDFORM.                    "smartform_email

  • Existing letters disappear in pdf when I add text box

    So I get letters in existing text disappearing as soon as I type anything in a new text box. I have acrobat XI pro running on windows 8.1.
    My pdf document looks fine. All the text is there that's suppose to be there. I need to add text boxes on certain pages so I click on 'add text', I click on any area in my document and the text box appears. As soon as I type anything at all 'random' letters disappear throughout my document. I say random because it's an l here, an e there, etc but it's the same letters from the same words that disappear every time. A month ago I was working on the same document doing the exact same thing and had no trouble adding text without having letters disappearing.
    I've been playing around with it for several hours now and am ready to punch a hole through the wall.
    Any ideas?

    Thanks for 'all' the help (I kid, of course) but I figured it out on my own.
    Tried many, many things and what worked in the end was increasing the dpi of the pdf when it was first created. I had it set to 300dpi which was the same default setting for all the other documents I created and manipulated with no problem but for whatever reason it doesn't work now. I tried it at 600dpi and it's fine. All the letters stay put when I add new text boxes. Probably other dpi settings would work also but I haven't tried.

  • Why cannot I copy selected text from a pdf file opened in Adobe Reader XI?

    Hi all,
    I had a problem when I tried to copy some selected text on a pdf file([Linux.System.Programming(2nd,2013.5)].Robert.Love.文字版.pdf) , which was opened in Adobe Reader XI as below (non-English version):
    The error's text could be primarily translated as "An error occured when copied to clipboard. Internal Error." I'm not sure about the reason of this. I guess it is a problem or bug related to operating system or Adobe Reader XI. I had this problem when I used other versions of Adobe Reader though I cannot remember the exact number of versions now.
    The version of XI I'm using is 11.0.0.  The operating system is XP SP3.
    As I was writing this question, the problem disappeared and I cannot reproduce it again now.
    Could anyone help explain why the error message appearred or why the problem disappearred? If there is referrence provided, that would be finer. Thank you.
    Message was edited by: photonxp

    The document has been protected.
    Even if it doesn't have a password, the original author has applied "plagiarism" prevention to it.
    There is a program from Wondershare, called PDF Password remover, that will remove such restrictions, but I'm not allowed to recommend it, only to point out it's existence.

  • Text disappears on buttons in InDesign cs6

    I'm doing an interactive pdf from InDesign CS6. I have buttons that I've created using just a solid rectangle and reversed white text in the rectangle and the buttons are on my master page. I want my buttons to change to a different colour when you click or mouse over them (only text to change to a different colour). When I go to 'click state' or 'rollover state' (I've tried both), the button is copied and I can change the colour but then in my normal state, I have an overset text, (I get a red plus sign) my text disappears. When I try and correct my normal state, the same thing happens in my click or rollover state. When I export a file to an interactive pdf, my normal state button is without text and my over or click state button has text with the colour that I've selected. Does anyone know why this happens or how to fix it?
    Thanks,
    NZ

    We might be able to help you but you'll have to drop the attitude. We're not Adobe here, but users like you.
    You'll need to tell us exactly what you're doing and what's not working for you. By "rollovers," you could mean the change of appearance of a button. You could also be meaning what are sometimes called Show/Hide buttons where clicking a button causes another button to appear. Which is it?
    And what kind of output are you attempting? Interactive PDF? SWF (Flash)? DPS?

  • Why does added text disappear when I move the cursor

    After adding text to an unprotected .pdf file the text disappears when I move the cursor and want to add a second box of text. The text in the first box reappears when I double click on the space where the box was. How do I set the text so that it remains visible and printable?

    Hi,
    I think the data in the PDF file was filled-in using MAC preview.
    One option is to ask the user to fill the file again using Adobe Reader or Acrobat.
    Or else refer to following link:
    http://acrobatusers.com/actions-exchange/pdf2fdf_auto-save
    Regards,
    Anoop

  • Text disappears after sent as attachment in Outlook

    I am sending some PDF files through outlook and am experiencing a peculiar phenomenon with many of them. Two text boxes go AWOL on the recipient side when I send the PDFs through Outlook 2003 in two PDF documents. This is not a usual occurence my any means. The files were generated in Illustrator on another computer, and show up fine on mine before I send them. It says the fonts are embedded, so I don't believe that's the problem.
    Any ideas?
    Tyler

    I'm "sending" them using the standard attach feature of Outlook. I attach the file and send it out and a portion of the text disappears. I discovered that if I try to select the text in acrobat pro and change the font, the text does still exist. However, with the font embedded and intact in other places of the document I can't understand why it would disappear there.
    It isn't user specific. A number of people in our office are having problems with it. However, when I sent it through my gmail it worked fine.
    I assumed it was an error in the file, as I don't think Outlook should be manipulating the file.
    Tyler

  • Text disappearing behind a graphic

    Another problem with a PDF from QuarkXPress. there is a graphical element and text that is flowing around and over the graphic. I tagged the text and the graphic. Now it seems that parts of the text disappeared behind the graphic. I dont know how to get it back to the front. I would appreciate any help.

    This is common when tagging a PDF for 508 compliance. The text is hiding behind the box. You can try fixing this using the Order pane, or for a greater degree of control use the Content pane. The elements that make up the white box (which are probably artifacted path elements in the Content pane) need to be positioned before the text in the content structure.

  • When using Typewriter tool, text disappears when I click out of box...

    Hi!
    I'm sure I've seen this question addressed here before but I cannot make the "Search" work.  Every time I search I get "no results" even when I search for something as obvious as PDF.
    So please forgive me posting a question that I'm pretty sure has been answered in the past...
    When I use the Typewriter tool to type some text, and then I click out of the text box that the Typewriter tool created, the text that I typed disappears.  If I double-click on the typewriter text box then the text reappears.  Then if I click out, the text disappears.  And so on...
    How do I make that text stay "viewable" even when I click out of the typewriter text box?
    Thank you so much!!
    Diane

    Hi Larry!!
    Here is an image where the box with the Typewriter text (the word "test) is "activated", with the comments list showing down below but without the "test" comment in the comment list being highlighted.  At the green "plus sign arrow" in the upper-right corner is the word "test".
    Now below is an image where the box with the Typewriter text (the word "test") is not "activated" (but you can see the blue box where the word "test" should be showing), with the comments list showing down below, with the "test" comment highlighted, and the "Comments" dropdown menu so that you can see what's black in the dropdown menu.
    When I clicked on the "test" comment in the comment list, the word "test" went away in the upper-right corner and the blue box showed up instead.
    Am I showing what you need to see or should I show something different?
    Thank again so much!!
    Diane

  • Adobe Reader X text disappears

    I have a user that will have open 3 or 4 PDF's in Adobe Reader X. When the user starts flipping between the PDF's. the screen starts to go dark and the text disappears on one or more document until it's closed out and reopened. The PDF's are about 300 pages each of text. I did all updates to windows and to adobe and it still happening. The computer is running Windows 7 32bit. It's a Dell 980 with 4GB of RAM. Any advice would help.
    Thanks.

    Is there something special about a pdf/a doc?

Maybe you are looking for

  • How to Unlock root user in Linux version 4.4

    Hi All, Please let me know how to unlock root user as i tried to access with wrong password more than 3 times. Thanking you in advance

  • Upload xml file from aplication server using read dataset, parser error.

    Hi, I would like to upload xml file from app. server but parser failed. If I upload this xml file from workstation (using ws_upload) it is correct. For uploading xml file from app. server I use open dataset... read dataset. In loop section I remove '

  • Doubt in query statement in receiver jdbc

    HI Again a doubt in XML format for receiver jdbc. I want to execute a query select sum(col1) sum(col2) from tablename where startdate <= tdate. My payload message looks like this <AggregateFn action="SQL_QUERY">   <access>SELECT sum(Weight) FROM KmFu

  • Blend will not stay closed, keeps opening itself

    I don't use BB Blend at all, and in device manager I close it than hours later i see that it has opened itself up again and I have to close it so it does not suck up resources. Why is it that it opens itself and is there a way to delete it?

  • Error in SQLLDR

    Hi, we are getting the following error when trying to use SQLLDR The error file says the table does not exist although I can see it in the database. Any ideas? Oracle DB 9i SQLLDR 10.2 Load.out SQL*Loader: Release 10.2.0.1.0 - Production on Thu Jan 2