How do I change a pdf document to word

How do I change a pdf document to a word document

I didn't know but googling for "pdf to word mac" gave a lot of hits for software solutions. I didn't have time to read them but I think that is you best start.
I also searched Microsoft's Office:Mac site but did not look at their Office:Mac forum. You may get a faster answer there:
Office for Mac forums

Similar Messages

  • How do i change a pdf document into word so i can make changes to it?

    how do i change a pdf document into word so i can make changes to it?  Thanks

    Hi stevemortgageman,
    You can use ExportPDF to convert a PDF file to Word format, and several others. For more information, please see http://cloud.acrobat.com.
    Best,
    Sara

  • How do i change a pdf document into a word document?

    How do I change a pdf document into a word document?

    Please see our getting started guide: http://forums.adobe.com/docs/DOC-2412
    That should help you use your ExportPDF subscription.
    -David

  • How do I change a PDF to a word document?

    How do i change aa PDF to a word document?

    In Mac preferred method (because it uses Adobe's PDF engine):
    Save file as word Document (for Backup)
    Go to Print Menu
    Click and hold on PDF button until context menu appears
    Choose Adobe PDF
    Wait for menu to change - choose quality (this eqivelent to job options in Distiller) and turn off open with Reader (or Acrobat)
    Then click okay to go to nex window item
    Either use Title assigned or change (I usually remove references to Microsoft Word-, and .docx so it just shows as for example Joes.pdf),
    Browse (pick out) to desired save Location.
    Click Save.
    Go to location saved and open.
    Notes: Expect to multiple PDF if the Word document page have switches in Page orientations.
    URL links won't cme over with this method.
    To have Urls to be active (except those created with the Format menu > URL)
    Do the following:
    Locate the Word Document
    Locate the acrobat Icon on the Dock (similar to Start up menu on PC)
    Drag the word document to the icon of Acrobat on Dock and Drop
    Wait ........... You might have enough time to boil you a pot of coffee
    When PDF pops up on screen save at once!
    You will now have a document that will have live MailTo's and URL's except for those created with the URL wizard ( select desired word> go to Formtat menu > URL >when opens type desired URL or Mailto)
    This is a 15 year old bug Adobe refuses to fix. Don't bleive the blather the put out bout the proper hook in Mac Version That's been proven as false years ago.

  • How can I CHANGE A pdf file to word or excell

    how do I change a pdf file to word or excell

    Hi Alfonzo,
    Here is a great 'getting started' guide that may help!
    Let me know!!
    Kindest regards, Stacy

  • How do I change a pdf to a word doc that I can add to and change

    how do I change a pdf to a word doc that I can add to and alter

    You can use Adobe ExportPDF to do this.

  • Now that i have installed the software how do i change a pdf into a word doc

    now that i have installed the software how can i change a pdf into a word doc

    Hi patm23422687,
    I hope by saying 'installed the software', you mean that Acrobat XI is now installed on your computer.
    Now, open the PDF in Adobe Acrobat and choose "File> Save as Other> Microsoft Word"
    This is all you need to do
    Please try and let me know if you need further assistance.
    Regards,
    Anubha

  • How do I import a PDF document to Word?

    How do I import a PDF document to a word document?

    There is no such thing. You will have to convert your PDF to an image or extract the text using Acrobat's export features.
    Mylenium

  • How do i change a pdf file to word

    How do i change a pdf file to a word document

    Using Adobe Acrobat you can use Save As -> Microsoft -> Word file

  • How do I open my pdf documents in word and not in adobe reader?

    I have a Mac.  How do I set my computer so that my pdf documents open in word rather than in adobe reader?

    If you opened a pdf document in Word, all you would see is a bunch of code so, it wouldn't help you.
    Are you actually looking to "convert" a pdf document to a Word document so you can edit it?

  • How can I change a PDF to a Word document?

    Where in the product can I edit and change a PDF to Word Format?

    Thanks Mandeep5062! Very helpful info!
    Date: Mon, 6 May 2013 14:09:15 -0700
    From: [email protected]
    To: [email protected]
    Subject: I have just downloaded a trial of adobe acrobat pro xi!
        Re: I have just downloaded a trial of adobe acrobat pro xi!
        created by Mandeep5062 in Trial Download & Install FAQ - View the full discussion
    Hi Tomcat 1596
    How to edit PDF files:Open a file in Acrobat XI.Select Tools > Content Editing.Click the Edit Text & Images tool.Click the on-page element you wish to edit, which automatically activates the tools you'll need.Choose the tool that best fits your task. How to convert a PDF file to Word:Open a file in Acrobat XI.Choose Tools > Content Editing > Export File to Microsoft Word Document.Click Settings to turn on optical character recognition (OCR) if your PDF contains scanned text.Name the Word file and save it in a desired location. For reference : http://www.adobe.com/products/acrobat/pdf-to-word-doc-converter.html
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5294666#5294666
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5294666#5294666
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5294666#5294666. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Trial Download & Install FAQ by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How do I repaginate a PDF document in Word 2008 for Mac?

    I am trying to repaginate a PDF document made in Word 2008 for Mac, which I have uploaded to Scribd for public perusal.  Unfortunately, whatever I do to the settings for the document it always comes out in reverse order. (60 - 1 instead of 1 - 60)
    The problem is not with Scribd, as they just reproduce the document in the order in which it is sent.  Somewhere along the line, the pages are reordered. They are not numbered in the document. 

    Hi,
    Try this AppleScript :
    It will create a new PDF file (the name will be "the original Name + _reverse.pdf"), it reverse the pages order.
    Open the "AppleScript Editor" application.
    Copy/paste this text in the window :
    set a_PDF to POSIX path of (choose file with prompt "Select a PDF file to reverse the pages order." without invisibles)
    do shell script "export VERSIONER_PYTHON_PREFER_32_BIT=yes
    /usr/bin/python -c  'import os, sys, Foundation
    from Quartz import *
    this_pdf = CGPDFDocumentCreateWithProvider( CGDataProviderCreateWithFilename( sys.argv[1] ))
    if this_pdf is None:
       print \"Error reading PDF document\"
       sys.exit(1)
    tName, ext = os.path.splitext(sys.argv[1])
    new_file = \"%s_reverse.pdf\" % (tName)
    cfstr = Foundation.CFStringCreateWithCString(None, new_file, Foundation.kCFStringEncodingUTF8)
    url = Foundation.CFURLCreateWithFileSystemPath(None, cfstr, 0, False)
    c = CGPDFContextCreateWithURL(url, CGRectMake (0, 0, 0, 0), None)
    cnt = CGPDFDocumentGetNumberOfPages(this_pdf)
    for page_number in range( cnt + 1, 0, -1):
       page = CGPDFDocumentGetPage(this_pdf, page_number)
       r = CGPDFPageGetBoxRect(page, kCGPDFMediaBox)
       CGContextBeginPage(c, r)
       CGContextDrawPDFPage(c, page)
       CGContextEndPage(c)
    CGPDFContextClose(this_pdf)
    CGPDFContextClose(c)' " & quoted form of a_PDF
    Click on the "Run" button.
    Select your PDF file when the dialog is displayed.

  • How do I change a PDF into a word document?

    I have downloaded the adobe assistant which says it should allow me to change pdf into word, but I can't find out how to do this?

    The Adobe Download Assistant does not provide this functionality in anyway.  Are you perhaps looking for the Acrobat Professional 11 trial?  If so you can download the trial through your already installed Adobe Download Assistant.
    If you have any questions on how to use Adobe Acrobat then please post your inquiry to the Adobe Acrobat forums at http://forums.adobe.com/community/acrobat.

  • How can I change a PDF document to have an enlarged text area and smaller margins?

    I've just been reading a long discussion initiated by a guy who wanted to recompose a PDF file to print in fewer pages. I'm not asking about that. I'm aware that Acrobat Pro 9 will not recompose the pages of a pdf for you; as someone said, it's not a word processing program. I want to copy a PDF to a new file with an enlarged text area and smaller margins, so I can read it more easily. My eyesight isn't so great.
    I'm trying to print a decision of the US Supreme Court, for my study. The problem is that these PDF files of such decisions are composed in 10-point type with generous margins, in folio-size pages smaller than 8 1/2 x 11". When you open PDF files of these decisions, you get extremely wide margins and relatively small type. Essentially, I'd like to re-rasterize the document so it prints on my 8 1/2 x 11" paper in a larger apparent type size, but in the same high resolution as the original. By the way, the decision I'm working on is almost 200 pages long, so I don't want to do this, obviously, in a page by page manner.  
    I guess I could do this in Photoshop, by blowing pages up and cropping them. Photoshop does a good job of eliminating the jaggies when you do this. But it would seem better to re-rasterize the pages from the PDF source file. So would any reader be kind enough to explain this process to me? (I'm fairly savvy in Photoshop, Illustrator, and computer printer concepts, but a complete newb in Acrobat.)

    If you just want this for printing, one thing you can easily do is crop all of the pages to remove the margins. For example, you can rop 2" off the left and right sides, and 1.5" off the top and bottom. Then print using a Page Scaling of "Fit to Printable Area".
    To crop in Acrobat 9, select: Document > Crop Pages
    be sure to select All for the Page Range.

  • How do I convert a pdf document into word?

    I've scanned documents and saved them as pdf into my email. I now need to convert them to word and I have no idea what I am doing. 

    Hi rivera302014,
    I've just responded to your other post at /thread/1632654
    I would be happy to try converting your files for you, so you don't miss out on a job opportunity. Let me know!
    Best,
    Sara

Maybe you are looking for

  • Glassfish + mysql + jsc2 table problems

    I'm trying to deploy my app to a glassfish server and having some problems with tables and rowsets. Situation: Everything works fine under the development settings on my winxp machine with mysql and the 5.0 beta jdbc driver. I managed to get jdk1.5 +

  • Transferr of songs between ipod and computer

    Recently reformatted computer's hard drive, restored Itunes library with no problem. But when I connect ipod, get message that certain songs are in protected wma format and cannot be trandfered. i understand the protective format scenario, but don't

  • How can I determine cost(s) of different choices in installing ARO2011

    In trying to sign up for ARO2011 for my computer I have been unable to find out what my total cost would be with various different choices included, or limited to free trial charges. Please inform. Thanks

  • Not able to transport selection texts in the program to QAS!

    Hello All:        I have a query program that is created from SAP standard program and when I moved the program to QAS the program moved fine but selection texts are not moving! I created a seperate transport for those but still not able to!! Could a

  • Collection Manager Red Hat VMware

    Hello, My client is asking if the Red Hat Server that Collection Manager  is installed for the SCE platform supports VMware. I have read the installation guide of the collection manager but does not state anything. Is it ok to install in VMware?