How To Edit a .pdf file - Please Help!

When I Googled the above question, I was told to download the Adobe Acrobat XI.
I tried downloading the trial version. I was then told to download the Creative Cloud to  be able to download Acrobat XI.
I downloaded Creative Cloud, then I was taken to the Adobe Applications Manager Page which show a bunch of apps to download.
I don't  know which app I will need for the editing.  I was looking for Acrobat XI, but it's not showing anywhere.
I tried downloading Photoshop. This took more than 2 hours. After the download was complete, I tried launching it, but nothing happened.
I went back & double-checked the instructions, & I'm directed & got stumped at the Applications Manager page once more.
I find this very frustrating. I wish it were not this complicated.
I just want to edit a .pdf file, and nothing else. I'm not sure if I want to go through all these maze, or just use FIVVER, pay $5.00 & AVOID all these hassles.@nikoledeon.
PLEASE HELP!

Downloads available:
Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
Acrobat:  XI, X | 9,8 | 9 standard
Premiere Elements:  12 | 11, 10 | 9, 8, 7
Photoshop Elements:  12 | 11, 10 | 9,8,7
Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
Captivate:  8 | 7 | 6 | 5
Contribute:  CS5 | CS4, CS3
Download and installation help for Adobe links
Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

Similar Messages

  • Hi I need help ..I do not know how to edit a pdf file that I scanned in,

    Hi I need help ..I do not know how to edit a pdf file that I scanned in, will someone please tell me what I should do PLEASE HELP

    What program are you using?  If it is just Adobe Reader you can not edit.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • How to view corrupted word files, please help?

    Can't view doc corrupted file .How to recover unsaved documents WORD? how to view corrupted word files, please help

    It could be Word or even Windows that is having the problem. Before you start trying to restore a backup or repair a file, try opening other documents.
    Try opening your "corrupt" document from another computer. Also you can try to make a copy of corrupted files. (It could work) : http://www.filerepairforum.com/forum/microsoft/microsoft-aa/word/968-i-would-be-grateful-for-any-help-to-repair-or-the-procedures-word-files
    But if nothing helps, you can try to recover it by using DOCX Viewer Tool Download free demo versions of this software from website: http://www.docx.viewertool.com/ It’s
    gonna help.

  • How to edit a pdf file?

    I downloaded the free Adobe and i want to edit a pdf file and it wont allow me. asking me to subscribe.

    You want to go to the source program you first edited and authored the file in and create a fresh new PDF from that file. You should always save a current copy of the program file which you authored the PDF file in. Acrobat is not really intended for creating content as such. You can do quick edits in Acrobat by setting up the Touch-up preferences, Preferences>General>Touch up, These should point to the programs you use to edit PDF content, in my case the Object editor is Illustrator and Image editor is Photoshop. Now if you select the touch up object tool and the click on the object(s) you want to edit selecting them, then right click to get the contextual menu and select, Edit Object, Acrobat will create a temp file and open it in the program which you selected in preferences. Do the edit and close the temp file, Acrobat uses the temp file to update the open Acrobat PDF file you were working on.
    Hope this helps

  • How to convert the output of the report (program) to PDF file , Please HELP

    Good Morning, ALL
    I have done a small program in ABAP that lets the employee enters his information. Once the emplyee enters the information and executes the program, I want the result to be saved in a PDF file (in any kind of format). I did try to do this action BUT I couldn't. ( ABAP Beginner LOL ).
    This is the code ( The main thing ):
    SELECTION-SCREEN BEGIN OF BLOCK Yours WITH FRAME TITLE text-001.
    PARAMETERS: NAME(15) TYPE C OBLIGATORY lower case,
                CITY LIKE NAME OBLIGATORY ,
                DATE LIKE SY-DATUM DEFAULT SY-DATUM   MODIF ID ZZZ,
                ID# TYPE C LENGTH 9,
                PHONE TYPE C LENGTH 10.
    SKIP 4.
    SELECTION-SCREEN END OF BLOCK Yours.
    SELECTION-SCREEN BEGIN OF BLOCK More WITH FRAME TITLE text-002.
    PARAMETERS: MALE RADIOBUTTON GROUP G1 DEFAULT 'X',
                FEMALE RADIOBUTTON GROUP G1.
    SELECTION-SCREEN END OF BLOCK More.
    SELECTION-SCREEN BEGIN OF BLOCK Details WITH FRAME TITLE text-003.
    PARAMETERS: P_DATE TYPE DATUM,
                Locate TYPE C LENGTH 30.
    SELECTION-SCREEN END OF BLOCK Details.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-GROUP1 = 'ZZZ'.
          SCREEN-INPUT = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Any useful help will be appreciated, THANK YOU

    Hi
    Try the below code.
    REPORT ztest_notepad.
    "Variables
    DATA:
       l_lay         TYPE pri_params-paart,
       l_lines       TYPE pri_params-linct,
       l_cols        TYPE pri_params-linsz,
       l_val         TYPE c,
       l_no_of_bytes TYPE i,
       l_pdf_spoolid LIKE tsp01-rqident,
       l_jobname     LIKE tbtcjob-jobname,
       l_jobcount    LIKE tbtcjob-jobcount,
       spoolno       TYPE tsp01-rqident.
    *Types
    TYPES:
       t_pripar      TYPE pri_params,
       t_arcpar      TYPE arc_params.
    "Work areas
    DATA:
       lw_pripar     TYPE t_pripar,
       lw_arcpar     TYPE t_arcpar.
    DATA:
       it_t100       TYPE t100  OCCURS 0 WITH HEADER LINE,
       it_pdf        TYPE tline OCCURS 0 WITH HEADER LINE.
    "Start-of-selection.
    START-OF-SELECTION.
      l_lay   = 'X_65_132'.
      l_lines = 65.
      l_cols  = 132.
      "Read, determine, change spool print parameters and archive parameters
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          in_archive_parameters  = lw_arcpar
          in_parameters          = lw_pripar
          layout                 = l_lay
          line_count             = l_lines
          line_size              = l_cols
          no_dialog              = 'X'
        IMPORTING
          out_archive_parameters = lw_arcpar
          out_parameters         = lw_pripar
          valid                  = l_val
        EXCEPTIONS
          archive_info_not_found = 1
          invalid_print_params   = 2
          invalid_archive_params = 3
          OTHERS                 = 4.
      IF l_val  space AND sy-subrc = 0.
        lw_pripar-prrel = space.
        lw_pripar-primm = space.
        NEW-PAGE PRINT ON
          NEW-SECTION
          PARAMETERS lw_pripar
          ARCHIVE PARAMETERS lw_arcpar
          NO DIALOG.
      ENDIF.
      "Get data
      SELECT *
      FROM t100
      INTO TABLE it_t100
      UP TO 100 ROWS
      WHERE sprsl = sy-langu.
      " Writing to Spool
      LOOP AT it_t100.
        WRITE:/ it_t100.
      ENDLOOP.
      NEW-PAGE PRINT OFF.
      CALL FUNCTION 'ABAP4_COMMIT_WORK'.
      spoolno = sy-spono.
      "Convert spool to PDF
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid   = spoolno
          no_dialog     = ' '
        IMPORTING
          pdf_bytecount = l_no_of_bytes
          pdf_spoolid   = l_pdf_spoolid
          btc_jobname   = l_jobname
          btc_jobcount  = l_jobcount
        TABLES
          pdf           = it_pdf.
      "Download PDF file C Drive
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename = 'C:\itab_to_pdf.pdf'
          filetype = 'BIN'
        TABLES
          data_tab = it_pdf
    Hope this helps you.

  • Re.problems with translator after converting pdf file.please help:-)

    Please can someone help me.
    i've converted a pdf file to a word document but it was a scanned document so word had to translate it but its come out as a load of gibberish.
    i have over a hundred pages of corrections to make because of it so i was wondering if any of you could either tell me what i could of done wrong r tell me how to do it right:-)
    thanks a bunch!!!

    You cannot use Reader to do what you want. Depending on the language of your original document, you might be able to convert the document from a scan to text with Acrobat Professional.  You can also investigate programs that are dedicated to OCR.

  • How to Edit a PDF File in Adobe Reader

    I used to create PDF files from the blog [link removed] But i would like to delete the links in the sidebar and other un wanted content from the PDF file but i cant do it in Adobe Reader. How can i delete it. Is there any option.
    Do i have to install any seperate software to edit pdf files.

    Acrobat can do very limited editing, but it is best to avoid this by not making a PDF of stuff you don't want.
    For example, use an HTML editor first.

  • Video: How to Edit a PDF file.

    Users often need to edit text and images in PDF files, and while Reader can't make these edits, there is a tool in Acrobat XI that makes these edits easy.  This is a video tutorial on Adobe TV on how to use the Content Editing tools pane in Acrobat to edit PDFs.   

    No it does not - and it's a duplicate post.
    Luanne Seymour wrote:
    Hi Claudio,
    This video tutorial applies to both Reader and Acrobat users.
    Thanks,
    Luanne

  • How to edit all PDF files at once

    Hey there,
    I am a student and have to print all the slides from the lectures. However, the slides have this huge blue block on the top that I would like to remove because it needs a lot of ink. After that, I have to make the font black. My problem is that I do not want to do this procedure with every single slide. Is there a way to do it for all at once?
    I used to convert the PDF file into a PPT file and removed the background. However, if you convert a PDF file that contains functions or equations, the PPT-file won't show them in the right way.
    Thank you!

    Hi,
    If the Header section remains to be same for all PDFs then you can create an Action to crop it from all PDF.
    Regards,
    Anoop

  • Failor, can't open Adobe .pdf file - Please Help

    Hello,
    when I save a .pdf document to SAP, as you can see in the picture below, and try to open it, I get the failor that SAP is not able to open this .pdf in the "DEFAULT" Network.
    I'm really new in SAP and don't know how I can change the network or somthing else to solve this problem.
    [http://img196.imageshack.us/img196/5475/forum2t.jpg]
    I would be so happy if you can help me. Thanks.
    Regards
    Marc
    Edited by: Marc Brausen on Jun 11, 2009 8:55 PM

    Marc, you might want to post this question in the Basis forum, or ask a moderator to move this thread. You'll most likely get more qualified responses there.
    SAP NetWeaver Application Server
    Also you might want to provide more details as to what kind of document you're trying to open (e.g. in what transaction). And, instead of posting the pictures, just specify the message text and/or message class and number (e.g. V1 100). The error messages are unreadable on your pictures.
    And, better yet, ask your manager to get a qualified Basis admin.

  • Failure, can't open Adobe .pdf file - Please Help

    Hello,
    when I save a .pdf document to SAP (Code: CV01N), as you can see in the picture below, and try to open it, I get the failor "Network address DEFAULT of your computer is not maintained".
    I'm really new in SAP and don't know how I can change the network or somthing else to solve this problem.
    http://img196.imageshack.us/img196/5475/forum2t.jpg
    I would be so happy if you can help me. Thanks.
    Regards
    Marc

    Hi,
    Please go through below link:
    http://www.sapfans.com/forums/viewtopic.php?f=23&t=285987
    http://sap.ittoolbox.com/groups/technical-functional/sap-log-pm/attach-document-with-equipment-495748?cv=expanded
    Thanks
    sunny

  • How to play the audio file please help me

    i would like to play audio files such wav files, au files etc
    I would like to know how to play audio file easily in Applet and
    applications
    Thank you

    import sun.audio.*; //import the sun.audio package
    import java.io.*;
    //** add this into your application code as appropriate
    // Open an input stream to the audio file.
    InputStream in = new FileInputStream(Filename);
    // Create an AudioStream object from the input stream.
    AudioStream as = new AudioStream(in);
    // Use the static class member "player" from class AudioPlayer to play
    // clip.
    AudioPlayer.player.start(as);
    // Similarly, to stop the audio.
    AudioPlayer.player.stop(as);

  • How to edit a frame. Please Help!!!

    How can I edit a frame in After Effects.
    Example: I want to take out a chair that I'm seating on from the frame, how do I do that?

    Rotoscope
    Then you have to fill the hole.
    You make the fill by creating a "clean plate" or by filming one at the time of production.
    If you have no Idea what these terms mean then as Todd said in his fisrt post to the first time you asked this question, start with the basics.

  • How do you edit a PDF file

    I am trying to edit flyers that are sent to me, and I can't figure out how to edit a PDF file.
    Can anyone help me?

    Adobe Reader products (including Adobe Reader Touch, Adobe Reader XI, Adobe Reader for iOS/Android, etc.) are free PDF viewers.  They do not support editing of PDF contents (text, images, etc.).
    To edit PDFs, you need a paid product such as Adobe Acrobat XI Pro or Standard.
    Acrobat XI product comparison

  • Trying to edit a .pdf file. Please help.

    I just downloaded the Adobe Acrobat 30-day free trial, which comes up as "Adobe Assistant" on my machine, and I've been trying to use it for editing a .pdf file, but it doesn't do anything but want to download an entire folder of documents. I don't want it to do that, but can't seem to do anything else. When I load Acrobat separately from a .pdf I already have saved, (even logging in to Acrobat), and try editing the .pdf document, it keeps launching to the website page saying that it needs to be paid for to use. I'm confused. How can I try the editor to see if I like it? Isn't it all one program or is the Assistant different from the Editor?

    I may be wrong, but I think you are not using Adobe Acrobat at all. It sounds as if you are still running Adobe Reader, for some reason, rather than Adobe Acrobat, which looks similar but has many more options. If you are not sure, tell us what you see under TOOLS - main headings - or look at the title bar.

Maybe you are looking for

  • Share contacts not working

    When I choose "share contact" and send to an email address, all that's showing up is gibberish (to be more specific, the vcard information is showing up as HTML coding and not as an attachment). My brother sent a contact to me from his iPhone to test

  • Boot Camp x64 is unsupported on this model

    I am in a panic mode and I need assistance.  I have a mid-2007 iMac running Mountain Lion and I just attempted to install Windows 7 using Boot Camp.  The Windows 7 installation went fine but I am unable to install Boot Camp and am therefore unable to

  • XI Mail Adapter: sending emails with attachment with help of java mapping

    Hi , On trying out the scenerio mentioned in the blog, using the java mapping provided "XI Mail Adapter: An approach for sending emails with attachment with help of Java mapping The scenerio works just fine. But the payload as the content of the atta

  • Delegated Admin and User Management in WLP 9.2

    Hi, I've made Delegated Administrator role and a user for it. The user is Delegated Admin for our users and groups. Still that user cannot create new users, only new groups. The error message that shows when creating new user is "The subject does not

  • Availability Status

    HI, I'm facing a problem with my Availability Status functionality in the member List Iview...it doesn’t work properly...meaning, when I choose ‘Auto Detect Status’ it shows that I’m offline while I’m online...how to make this functionality work..ple