Convert text in PDF to editable field in Reader

Hi,
Is there a way in Acrobat Pro to convert text in the PDF to an editable field so that someone opening the PDF in Reader would be able to amend the text. Or do you actually have to make the text in Acrobat?
Thanks for any help,
Jackie

It can probably be achieved with a script, but if you only need to do it once, I think doing it manually is the best way to go.

Similar Messages

  • Jar file to convert text into pdf

    java coding or jar file to convert text file into pdf. i dont want exe file...
    any converter to convert text into pdf.... to run in a webapplication

    This website is used to convert Word, Text , Excel file into pdf. I think it is useful to you.
    http://www.planetpdf.com
    Message was edited by:
    ggopi

  • Convert text in pdf with as3

    Hallo,
    1) what is the best way to convert text to pdf from as3?
    2) what is the best way to import pdf in fash?
    Thanks.

    you'll need to use a 3rd party library like alivePDF, AlivePDF - ActionScript 3 Open-Source PDF Library – 100% client side PDF generation which makes you and your server happ… and/or purePDF, purePDF, a complete actionscript PDF library - sephiroth.it - flash world

  • How can I convert text to PDF in the new "Pages" without losing info.

    How can I convert text to PDF in the new "Pages" without losing a lot if information?

    Select Export To from Pages' File menu, then select PDF from the sub-menu.

  • How to convert text to PDF?

    Hi,
    I have a text file that I would like to create a pdf for it.
    is there any function that can convert text to pdf format?
    Thanks,
    Itay

    See the example code :
    DATA: it_otf   TYPE STANDARD TABLE OF itcoo,
          it_docs  TYPE STANDARD TABLE OF docs,
          it_lines 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.
    CONSTANTS c_formname          TYPE tdsfname VALUE 'ZTEST'.
    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
      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 'smrt' '.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.

  • Bulk convert text to PDF with Acrobat

    Hi. When I convert a text file to PDF with Acrobat X Pro the character spacing in the resulting file is incorrect.  The columns of numbers which do correctly line up in the text file, do not line up correctly in the PDF file.  I adjust the settings for the conversion in the CREATE PDF FROM WEB PAGE box and I choose a fixed-width font.   If I use Adobe PDF Converter (the printer driver) the result is perfect.  If I open the text file with Microsoft Word and then convert it to PDF with PDFMaker, it is also perfect. I want to use Acrobat so that I can bulk convert my 300 text files to PDF.   Can you please help as I have tried everything?  Thank you.  Paul Pontikis (Deakin University)

    Thank you for responding LoriAUC.  I have 300 (*.txt) files that I only ever open with Notepad. I don't every open them in a web browser.  I want to bulk convert them to PDF.  The orientation of the resulting PDFs must be landscape.  It appears that the only way to select LANDSCAPE in Acrobat is to adjust the settings in the CREATE PDF FROM WEB PAGE box.  It seems that Acrobat uses its HTML Conversion Engine to convert text files to PDF.  When I do this and then bulk convert them using Bulk Convert Files to PDF, the orientation is correct, that is, landscape instead of the default portrait setting, however the character spacing is imprecise and the columns of data are wavy.
    Message was edited by: paulatdeakin

  • Export to PDF with editable fields...

    Does anyone know if you can export to a PDF and keep editable fields? I have a 10 page form which was created in Pages but now needs to be turned into a PDF users can fill out I was hoping there may be an easy way to do this?

    You might take a look at PDFpen, especially the "Pro" version. But I think you might need the full version of Acrobat to create fillable forms.

  • Bursting PDF with editable fields

    I have been successful in generating PDF output from a PDF template that contains editable fields. When I open the PDF using Adobe Professional, everthing functions as normal. However, when I burst the PDFs the final output PDFs are no longer editable. They contain the correct data, but everything is locked down. Has anyone attempted this with success? If so, can you point me to some possible pitfalls? I'd hate to have to run a single request for each output.
    Thanks,
    Jamie

    Very easy to create. I have not been able to get them to burst with editable fields. Please note that it is not editable with Adobe Reader, unless it is first extended with Adobe Professional or Adobe LiveCycle Reader Extensions. Depending on your config settings you may have to make some changes to allow the fields to remain editable.

  • How do I convert a German PDF to English in Adobe Reader?

    Hello,
    I have a set of instructions that were sent to me in German PDF.
    There are 34 pages and the file size is 3.67mb (due to photos on each page).
    How can i convert this to English?
    Thank you,
    Rikki

    No way with just the free Reader; and an almost impossible task in Acrobat. The only reasonable way to do what you want is to work on the original file (the one from which the PDF file was produced)..

  • Convert text in PDF to pure black

    Hi all,
    I have spent hours researching this with little to show for it, so I thought it's time to ask for help.
    I am dealing with a situation where I need a batch solution to change the color of all the (vector) text in a PDF document to pure black.
    From my research, I understand that:
    1) It is not possible to do this in JS.
    2) If I simply wanted to change the color of text from color to grayscale, I can use "Convert Colors" under Print Production to change the color space.
    3) I can select the "edit text & images" command, select all objects in the page, and change the font color to black. But this method requires repeating the same for every page, and is not practicable for PDFs with many pages.
    I have experimented using different conversion profiles (Gray Gamma, Dot Gain), but in all cases, I have been unable to change the color of text to black. It remains at gray, or is changed into a different shade of gray.
    My question here is this:
    When I select an object and go to the color tab of the Object Properties box, I see "Black & White" as one of the color spaces that I can choose to convert to in the drop down list. See screenshot immediately below:
    If I choose "Black & White", and click the "Convert Colors" button, the text gets converted to pure black. But this method only works object by object.
    But under the "Convert Colors" in "Print Production", the "Black & White" option which is available earlier is not available. See screenshot immediately below:
    Why is that the case and what can I do if I want to batch convert all the text in my PDF doc to the "Black & White" color space so as to change the color of the text to pure black?
    Thanks.
    Best,
    Jay

    Hi Jay ,
    Which version of Acrobat are you using?
    If it is one of the old versions ,try updating it the latest one and see if that helps.
    Launch Acrobat>Navigate to Help>Check for updates.
    The second image that you have sent ,there is an option as "preserve black" in the same dialog box.Check mark that option and see if it helps.
    Let us know how it goes.
    Regards
    Sukrit Dhingra

  • How can I convert text to pdf without the pathname showing in new doc?

    Hi,
    I had this worked out in v.7 but now in v.8 it seems to be different and/or I just plain forgot how to do it.
    I want to not see the path name anywhere in the document when I make a new pdf document from a text file. It seems to do it by default.
    But there is no way to remove as a header or footer since it doesn't see it as such. So I can't look up how to do it in the help menu because I don't know what that added line is called if not a header.
    Please help. I don't want to have to keep going back to my v.7 Acrobat.
    Thanks.

    Go to Create PDF From Web Page. Change the settings to remove headers
    and footers and it will (somewhat surprisingly) affect TXT conversion.
    Aandi Inston

  • Drag image file from portfolio pdf into image field in reader

    I'm new to the Adobe world and this is my first project. I'm not sure if this is even possible, but here's what I'm trying to do...
    One document is a PDF portfolio with 200 images (jpg or tif). Each image in the portfolio will have a description. The second document is a PDF form created in LiveCycle. I want to be able to (from Reader with rights enabled) import the image from the portfolio into a field and have that image displayed along with the description all inside the form. Thanks so much in advance!
    Gabe

    Hi, I'm using CS4 and would love to be able to drag n drop straight to a new layer in an existing file.
    At present when I drag n drop I get a new image in PS. I then have to move this to my existing image. I have tried draging to the tab, the layer box, the image, the blank space, using shift,ctrl & alt.
    A simple how to would be nice

  • How do I converting PDF to editable Word?

    I've follwoed the onscreen directions multiple times over the past week but have been unable to acheive a successful conversion. The uploading file to Adobe ExportPDF online monitor just keeps going round and round in circles for HOURS! There is no sign of any progress. I don't know if the programme is doing anything or sitting sucking its thumb. How can I tell if it is progressing or if it is jammed. And more importantly how do I get these blessed files converted from scanned PDF to editable Word? I have Windows 8 but am really struggling to get my usual applications to work properly with the new operating system.

    A scanned document is really just an image; converting it to Word will still result in an image.
    The scanned document needs text recognition processing (OCR); I don't know if ExportPDF can actually do that.
    I will move your topic to the ExportPDF forum, where they know a lot more about it than here in the Reader forum.

  • REUSE_ALV_GRID_DISPLAY with editable field -- Get the short text

    Hi everybody,
    I would like to know if you can resolve the following problem:
    I have an editable column in my ALV grid with a match code. When the user choise the value in the range, this value is displayed in the grid. But I would like to display the short text and not the fix value like actually.
    Have you got an idea?
    Thank you in advance.
    Best regards,
    Robin

    You could add another column for the text and change it's contents when the editable field changes.

  • Editable fields in oracle report

    Hi,
    I am hoping someone can help what I am trying to create is a PDF oracle report with an editable field at the end of the report. The user would use this field to type comments about the report and then save the file with the comments attached.
    I did a search but couldn't really find anything relevant apart from this thread here: Re: How to add to report in pdf format editable fields but it looks like that was never answered.
    Users have access to Adobe Acrobat so an alternative solution could be just to create a rectangle and tell the users to write in that but it is not an ideal solution.
    If it is not possible in oracle reports we are also licensed for BI Publisher but as of yet I haven't been able to find anything that would do this using that tool either.
    Regards,
    Chad

    with an editable field at the end of the report.In Reports the user cannot add text after generation of the report. So, do it before generating the report. Add a parameter p_comment to the data model and add this to the parameter form (or whatever form you use to call the report, e.g. from Forms) and create a text field at the end of the report.

Maybe you are looking for

  • I Tunes output volume

    anybody know abt USB DAC? before i using USB DAC ( Musical Fidelty V DAC ) I use Mac mni with a headphone output direcly to my power Amp ( Rotel ) i can easy use i tune to control my volunm, last night i hood in with a USB DAC to my MAC witha USB the

  • Why does my CPU overheat playing online flash videos?

    Last year my CPU would melt playing youtube videos in firefox browser. My research found that it was a compatibility problem between firefox and adobe. So I switched to chrome and problem fixed. Now the last couple months (this year) its doing it aga

  • Pl/sql : bind, host & define variables

    what is difference between bind variable, host variable and define variable (i.e. variable created using DEFINE command) ? In what situation each of these variables are used?

  • HT1947 Is the current Remote app compatible with iPod Touch 4.2.1?

    This KB article says so, but iTunes will not load the current version of Remote onto a 2g 4.2.1 iPod Touch. http://support.apple.com/kb/HT1947 I unfortunately had to restore my 2nd Gen iPod Touch, and in doing so, iTunes indicated that several existi

  • Where can I download CC 13 from to backsave to CS6 from CC 14?

    Hello I have been using the CC 14 trial for After Effects but yesterday I  decided to buy a Creative Cloud subscription.  However, my university has the CS6 suite so I need to backsave my files from CC14 to CS6.  I have done the first step by backsav