Word to pdf

Hi,
Can i have some help here? I have been creating froms with word and save them as pdf. But when i open them in reader or Acrobat 9 pro, i am not able to use checkboxes and so on. Checkboxes loses their function. I know i can do them all from the begining in acrobat but i have so many of them. This option will take alot of time..
Is there a easy way to fix this?

Hi back,
                        I see.. Well only reason why i dont create them in Acrobat 9 is i have bunch of them already made with word and it will take me so long to make them all over.
                        t. AK
                        Re: Word to pdf
                             created by StacySison in Adobe CreatePDF - View the full discussion 
                        Hi phenomati,
                        Unfortunately once you move them to PDF they are turned into 'read' format. Is there a reason you are not creating the forms using your Acrobat 9 PRO version?
                        Regards, Stacy
                        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/5473674#5473674
                        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/5473674#5473674
                        To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5473674#5473674. In the Actions box on the right, click the Stop Email Notifications link.       
                        Start a new discussion in Adobe CreatePDF 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.
Tutustu Saunalahden edullisiin liittymiin osoitteessa http://www.saunalahti.fi/

Similar Messages

  • HT1338 My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    Hi ...
    Checked to see how much free space there is on the startup disk lately?
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure there's a minimum of 15% free disk space.
    Freeing Up Hard Disk Space - Mac GuidesFreeing Up Hard Disk Space - Mac Guides
    If disk space is not the issue, booting in Safe Mode deletes system caches that may help.
    A Safe Mode boot takes longer then a normal boot so be patient.
    Once you see the Desktop, click the Apple menu icon top left corner of the screen.
    From the drop down menu click Restart.
    See if that makes a difference ...

  • Can i use pandrive with iPad, i want to access word, excel, pdf files on iPad via pandrive

    Can i use pandrive with iPad, i want to access word, excel, pdf files on iPad via pandrive

    You cannot use pendriver.
    Have a look at the following:
    http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
    http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1
    http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
    http://itunes.apple.com/sg/app/polaris-office/id513188658?mt=8&ls=1

  • Can I use word and PDF on my iPad with icloud

    Can I use microsoft word and pdf files from my PC on my iPhone and iPad if I'm using iCloud?

    Microsoft does Not make an iPad compatible version of their Office programs such as Word and Excel.  But as Johnthe AppleFan pointed out, you can use Apple's Pages to to open Word Files.
    Hope this helps

  • I have iCloud set up on my iMac,iPhone and iPad. How do I use the storage in iCloud? Can I upload Word and pdf files?docs?

    My iPad and iPhone have iCloud icons. How do I access iCloud from my iMac?
    How do I take advantage of the free storage? Can I upload photos,Word and PDF docs?

    Open contacts on your phone and check your groups.  Do your contacts belong to any non-iCloud groups such as On My iPhone, a Gmail, Yahoo or Exchange account, or anything else?  Also check Settings>Mail,Contacts,Calendars>Default Account (in the Contacts section).  What is selected as your default account?

  • How do I find and replace a word in PDF?

    How do I find and replace a word in PDF?

    In the Find window (Ctrl+F) there's an option to replace the searched text.
    This is in Acrobat XI, and there's no Replace All-function.
    On Thu, Jan 15, 2015 at 4:27 PM, claireb88184899 <[email protected]>

  • How to upload documents( like word, excel, pdf etc) into r/3 system

    Hi All,
               Does anyone have information on uploading and downloading documents like word, excel,pdf etc into R/3 system. Is there any function modules, classes, programs etc to do this.
        To give an example about what i mean by uploading documents, we can take the process of attaching documents in support of a SLM issue in solution manager.

    Hi Syed,
      Use the FM gui_upload to upload a file from presentation server and gui_download to download file to presentation server. see the code below and also read the documentation of the respective FM's.
    data:
        lw_file  type string,              " File Path
        lw_file1 type IBIPPARMS-PATH.      " File Path
      CALL FUNCTION 'F4_FILENAME'
       IMPORTING
         FILE_NAME            = lw_file1.
      lw_file = lw_file1.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = lw_file
          FILETYPE                      = 'ASC'
          HAS_FIELD_SEPARATOR           = 'X'
        tables
          data_tab                      = t_kna1
       EXCEPTIONS
         FILE_OPEN_ERROR               = 1
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.                               " IF SY-SUBRC <> 0
    data:
        lw_file  type string,              " File Path
        lw_file1 type IBIPPARMS-PATH.      " File Path
      CALL FUNCTION 'F4_FILENAME'
       IMPORTING
         FILE_NAME            = lw_file1.
      lw_file = lw_file1.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
    *     BIN_FILESIZE                  =
          FILENAME                      = lw_file
          FILETYPE                      = 'ASC'
    *     APPEND                        = ' '
          WRITE_FIELD_SEPARATOR         = 'X'
    *     HEADER                        = '00'
        TABLES
          DATA_TAB                      = t_KNA1
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.                               " IF SY-SUBRC <> 0
      IF SY-SUBRC = 0.
        message 'file downloaded successfully' type 'S'.
      ENDIF.                               " IF SY-SUBRC = 0
    With luck,
    Pritam.

  • Trying to convert word to pdf and getting error message using Ver. 7

    I what sent a word doc by a correspondent of mine which I tried to convert to a pdf. I right clicked the doc on my desk top and chose "convert to PDF". It looked as it has all the other times but after it had opened word it came up with an error window/message of "Missing PDFmaker files." "Do you want to run the installer in repair mode?" and then a yes or no button. If I hit no it closes everything if I hit yes it acts like it's installing something and after a while it tells me that the computer needs to be restarted for changes to take affect. I have run it twice now and it doesn't change anything.
    can someone give me any tips on this?
    D

    You did not indicate the version of WORD. If it is WORD 2007, then you can not do this function with AA7. Try opening the file in WORD and printing to the Adobe PDF printer. If that works, then look for the PDF Maker options in WORD (create PDF). If you find them, then try that. If they do not show but the print worked, then you indeed have an issue with PDF Maker - probably either the macro is not activated in WORD or the version of WORD is 2007.

  • Word to PDF does not keep hyperlinks in Table of Contents ?

    I have used my free trial of Adobe CreatePDF before purchasing the annual subscription.
    I was surprised to see that the PDF document did not keep the clickable hyperlinks that Word uses in a Table of Contents. As this is the exact same behaviour as the "Save as PDF ..." option that I have natively available on my computer I don't see the point of paying a subscription to the service. Or am I doing something wrong?
    MAC OS X Lion (10.7.2)
    Office for Mac 2011
    150-page .doc document with Section, Chapter, and various Heading Styles defined
    WORD automatically-built Table of Contents
    In the WORD document, the page numbers in the Table of Contents are hyperlinks to the concerned page
    Convert WORD to PDF using "Save as PDF ..." option in the "Print..." dialog box
           ====> Table of Contents hyperlinks are not preserved (the page numbers are no longer clickable)
    Convert WORD to PDF using Adobe CreatePDF
           ====> Table of Contents hyperlinks are not preserved (the page numbers are no longer clickable)
    Am I missing something or is this the way it is intended (not) to work?
    P.S.: I know that, on the MAC, I can use Preview to manipulate the PDF document I obtain through "Print..." > "Save as PDF...". One of the things I can do is to select the page numbers in the Table of Contents and add a 'link' to each. But this is a VERY cumbersome process. Actually, I have to create a link for each page number, one at a time, on a table of contents that may consist of in excess of 50 entries. As I have a collection of 50-odd documents and am on a schedule of distributing new versions every two weeks or so, this procedure is completely unusable. Hence my search for a (paid) service that converts my documents while preserving the hyperlinks of the Word-created Table of Contents. Either I am doing something wrong or such service does simply not exist ...

    Good day fgrexsg,
    You are correct in that the workflow you described will not produce links in the resulting PDF files.  The steps that Lori outlined work great if you're working on Office for Windows in terms of getting the links to work when converting using the CreatePDF service. 
    In order to make this work on the Mac, you'll have to take a few extra steps within Office first.
    You're going to have to repeat this step for each item in your TOC.  While this will be time-consuming for a 150-page document, it will work.
    Within your TOC, highlight the entire entry listing (e.g. Topic 1.........3)
    Once the entire line is highlighted, choose Insert > Hyperlink
    Click 'Document' to select a location within the current document.
    Under the 'Anchor' option, either type in the Heading/Sub-heading (must be exact) of the page you want the hyperlink to attach to or click 'Locate' and find the proper Heading/Sub-heading within the structure.
    As I said, this will probably be time-consuming on such a large document, but it will work. 
    Unfortunately Office for Mac just simply isn't as full-featured as its Windows counterpart.
    Please let me know if you have any questions.
    Kind regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • How to send a 100 plus page MS Word Report with Word and pdf. attachments?

    Sir or Madam,
    I am not able to e-mail or have a 100 plus page report received and need your support. It contains a combination of MS Word and pdf files and attachments.
    I am using MS Outlook 2007 and Google Chrome.
    Please advise.
    Thank you in advance.
    Earleb
    Earle Rheaume

    Sir or Madam,
    I am not able to e-mail or have a 100 plus page report received and need your support. It contains a combination of MS Word and pdf files and attachments.
    I am using MS Outlook 2007 and Google Chrome.
    Please advise.
    Thank you in advance.
    Earleb
    Earle Rheaume
    If your mail service allows all of that to be sent as attachments or however you are attempting that then it's possible the email server or servers receiving the email do not allow attachments that large.
    You say you are sending "a combination of MS Word and pdf files and attachments". I've never sent anything like that. I have zipped various files into a zip file then attached that to an email for sending.
    Googles mail appears to allow a total of 25 megabytes of attachments in a single email.
    Yahoo mail appears to allow a total of 25 megabytes also.
    Microsofts mail appears to allow a total of 20 megabytes of attachments in a single email.
    Another option would be to upload everything to your onedrives public folder and provide a link for others to download all of it in the email you send out.
    A single users onedrive supposedly can have up to 10 gigabytes loaded onto it. I suppose all of that could be used by the public folder but maybe not.
    La vida loca

  • If you need to send more than one document via email to a recipient with a PC, how do you convert them to a Word or PDF before sending them in one email?

    When trying to send an email to a PC user and need to send multiple documents, in the old version of iPages, you could save the document as a Word or PDF file then attach them to the email.  I don't see how to do this with the new version.  Therefore, the only way I can see to accomplish this task is to go to each document and send them individually in another version.  Otherwise, the PC user will not be able to view the documents - correct.  There must be a way to convert and save the documents like before so numerous documents can be sent at once.  Please help!
    Melody

    What fruhulda said. In addition, in the Mail composition window, I recommend that you select the paperclip icon from the Toolbar, and enable Send Windows-Friendly Attachments.
    You can also select multiple files in the Finder and drag them onto the composition window. In my experience, the documents resist an iconic state, so right-click on just one, and choose View as Icon from the contextual menu. This will transform all attached documents into icons.
    If you want to send just one document from within Pages v5, use the Share icon in the Toolbar and select Send a Copy > Email. You can then choose PDF (and its image quality), or Word (.docx default, or .doc) document formats that will be attached as an icon in a new pop-up Email composition window.

  • Page numbers are not generated correctly when print from Word to PDF

    Whenever I print my Word document to PDF, my page numbers do not reflect the page numbers shown in Print Preview.
    For example, I have a Word document with 10 pages and after generating it as PDF, the page number shows Page 1 of 1; Page 2 of 2; Page 3 of 3; ......Page 10 of 10.
    Please advise what may be the cause and how can I rectify this problem?
    Thank you.

    Thank you for your reply.
    I do have some sections breaks on the pages, however the pages are all shown in running sequence even on Preview page.
    It is the final generated document that has this problem.
    I emailed my colleagues my WORD document and ask them to generate to PDF and they have no issues printing the WORD to PDF and every pages were in running order.
    Any other advise?

  • Advange of using Adobe Acrobat over Microsoft word 2007 PDF add -in

    Hi,
    I would like to know what is the advantage of using Adobe Acrobat 9 standard or professional over Microsoft Word 2007 PDF addin. Microsoft will ship the PDF convertor with SP2 later this month, in that case what should be the use of using adobe acrobat to convert a document to PDF and not use microsoft word built in features.
    This is just a doubt which arouse and thought if I could ask here, thought to control some adobe acrobat licenses being used in our environment.
    Rgds
    Rahul Goel

    I have found that some of the links and other items just to not work well with the add-in from MS. However, with OFFICE 2007, it appears that MS has put some hooks in the system to screw up Acrobat. Typical pages that are produced with Acrobat get cut into sections (a graphic will be chopped into multiple graphics and pasted together). I say this is OFFICE only from the perspective that we have tried it with OFFICE 2007 and both AA7 and AA8 and gotten the same result. When we used the same file in OFFICE 2003 with AA7, the PDF was fine. So when you complain about the PDFs created by OFFICE 2007 and Acrobat, you may be seeing something that is a result of OFFICE, not Acrobat. Generally they still look good, it is only in some detail where you will see problems.
    A major advantage we found with Acrobat is that it did not have issues with messing up the links that the MS add-in had. You can try some of this yourself, but that is a summary of our conclusions. Bill

  • Word to PDF conversion does not retain left margin (for thesis submission to a university)

    Hi everyone,
    I've searched through the more recent margin issues posts and haven't found anything that exactly matches my problem.  I'm currently trying to convert my thesis from Word to a PDF (I'm using Word 2003 in Windows XP and Adobe Acrobat 8 Professional) as required by my university and the left side margin is changed from 1.5 inches to 1.25 inches during the conversion process.  Since this is for submission to a university, the margin has to be exactly 1.5 inches.  I've already tried to change the paper and page layout settings in case was an issue related to scaling (if only at this point) and I've reconverted the file in case it was a fluke (obviously it wasn't since I found my way here).  I also tried to just shift the margin in Word over an additional 0.25 inches to see if that would put it at 1.5 instead of 1.25 in Acrobat, but somehow it was still at 1.25.  It doesn't seem to matter what the margin is set at in Word, it ends up at 1.25 in Acrobat.
    I would very much appreciate any input- it would be nice if now that I've finished all the work on my thesis I could actually get it submitted properly so that I can get my diploma!

    What method are you using to generate your PDF from Word?  What version of Word are you using?  (edit:  sorry, I see now you mentioned Word 2003)
    Are you using the Word's PDF convert-to icon or are you using Print>Adobe PDF ?

  • Hyperlink problem when converting Word to PDF

    Hi everyone.
    I am using Adobe Acrobat 7.0 Standard version 7.1.4 on a Windows 2000 environment.
    I am using Word XP/2002 SP3.
    I have a couple of problems when converting Word to PDF.
    When converting a long link which is in 2 lines, PDF just takes one line into account, not considering the whole link
    When I have hyperlinks that links to a web page, the link works fine in Word but in pdf, it gets the few words after the url address making the link not work.  For example.  I have a hyperlink that http://www.google.com/ and after this I have the words: "This is a sample text".  The hyperlink in pdf would then become http://www.google.comThisisasampletext
    Do you have any ideas how I can correct this?
    Thanks.

    To get the cross references, you have to use Convert to PDF (PDF Maker part of the Acrobat product). However, you first need to go to the print menu and set the printer to the Adobe PDF printer. Close the print menu and then do a reflow and link update of the document (ctrl-A, then F9 I think). This is needed to get the links correct since WORD reflows the document based on the printer (problem with them going to the wrong place).
    Printing to the Adobe PDF printer (the step of print to file is not needed, just print to the printer and the rest is automatic) does not include the links. PDF Maker is a PreProcessor for the Adobe PDF printer that adds PDF Marks to the PS file before it is sent to Distiller (OK, the printer when used normally creates a PS file and then invokes Distiller to complete the process - your steps did with the Adobe PDF printer is the same process done manually).
    Summary:
    1. Fix document after setting the printer to Adobe PDF.
    2. Use PDF Maker (create PDF button)

Maybe you are looking for

  • How to release the sunidm project from the server while debugging

    Hello, I am using NetBean to work on the SunIDM project. Each time I have to restart NetBean if I want to run/debug the project. I have tried to use GlassFish and Tomcat, but both server somehow still holding the project even I stopped debugging in N

  • P6N SLI , what is a good monitoring progran for temps, ect

    I read that MSI program for temp monitoring isn't good to install so what does work with out taking alot of resorces ?

  • Any way to print from Finder?

    Sorry about my last post...I really messed up! Here I go again. Is there any way to print from the finder? I have a DVD inserted into my drive, and I want to print the contents to have as a reference. I tried to print the contents of the disk from To

  • How to find which script assinged to which program?

    hi SDNs, how to know configuration of NACE for particular program? i don't know application type.. i have checked TNAPR. no use. tell me is there any other tables ? i think one more table also there? thanking you

  • Apps Updating that I have deleted

    Hi, Every time there are updates for the Apps I have purchased I not only get those updates downloading but I also get apps downloading that I have previously deleted. Can anyone tell me why and how to stop this? Thanks