Link/RE-link to word docs with form fields?

Trying something new, and when I took the InDesign 2 day class the instructor was not very familiar with linking to word docs, she just never used the feature.
So, I have multiple contributors who will onlly work in word. I am trying to set up a template/form for them to fill in that I can link to my .indt.
I have the styles set up and matching, and I'm looking for a way that I can lock everything but the areas where they need to fill in information. My plan is to do this by making a form in Word with text fields. Will this transfer over to the InDesign file when I relink? If not what is an alternative solution using Word with out having to copy and past all the time ?

Ohhh k.
OK Yes this is possible.
I do mean for it to link, the content is dynamic I need the technical people to be able to edit content before I get it. The point is to have multiple contributors working in word (absolutely must be word), creating new content that can be fed into indesign relatively automatically while preserving the InDesigns styles applied to certain text frames.
It does need to link back to get content updates so I have this option turned on in the general preferences to allow this.
The word documet is set up, as follows:
Form fields are created, along with their respective titles or headings. A style/structure element is applied. The style doesn't have to match what is in indesign but it is helpful.
Click the text box and got to "Place"
Select the document and select the "Show Import Options"
Under import options select "Preserve Styles and formatting..." Then Select the "Customize Style Import" radial and click style mapping. I tried doesn't this with the Automatic Import and it didn't work properly, custom mapping will identify the right information to style while overiding the actual style information from Word and instead uses the InDesign Style.
So... not necessarily a job for InCopy, though I realize that would be better, working in for a Microsoft Partner Network Gold Certified Partner, it would be impossible to get everyone to switch over to InCopy.

Similar Messages

  • Problems opening Word docs with form function

    Does anyone know how to open a Word doc & keep the forms function? I have to fill out quarterly reports. When I open this type of Word doc, Pages eliminates the checkboxes and text boxes. A pain point, but Word doc is still usable.

    Hi,
    Since the issue only occurs to Word for Mac, I'm not familiar with the mechanism how it opens a file, we mainly supports Office for Windows in this forum. Please post the question in Office for Mac forum for further assistance:
    http://answers.microsoft.com/en-us/mac
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs. Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Optimize a PDF doc with form fields

    Hi All,
    I have completed a PDF with multiple form fields (about 70). It's only one 8.5 x 11 page. It is 2.2 mB large. I've tried different ways of Optimizer but it always removes the input field functionality.
    How can I decrease file size while maintaining the integrity of the form? Thank you so much in advance. PDF attached.
    Dina

    Generally, the only thing that I remove after creating a pdf file with forms that doesn't effect the fields is to remove embedded fonts. It would be best to to all of the other optimizations before creating the form fields.
    That's nice you say, but I've got the form fields already. Try reducing the size (as you have already done), then replace the page in the file with the form fields with the one whose size you have reduced. The form fields should stay. I don't know what happens to the size of the new file, let us know?

  • Converting a Word document with form fields to become a form fillable PDF file with email

    We are trying to convert a number of word(97,and 2000) documents but it never works correctly. The converted PDF file is missing fields and the fields it does convert is one character long. The idea was to have LiveCycle just convert it without anyone having the need to re-design it. They would only need to add a submit button and an email address to the PDF form. Is there something we are missing?

    For the problem of submitting by email and still submitting a PDF file:
    The stock "Submit by Email" button submits via XML. I think you can do one of two things to get it to work:
    1) Use a regular "Button" instead of an "Email Submit Button". Set it's type to "Submit" in the Field tab; then on the Submit tab, use something like "mailto:name@company" for your email address in the Submit To URL box, and set the Submit As type to PDF.
    2) Change the XML for your Email Submit button (in the XML Source view): You'll find something like,
    <event name="event__click" activity="click">
    <submit format="xml" textEncoding="UTF-8" target="mailto:name@company"/>
    </event>
    Change it to:
    <event activity="click" name="event__click">
    <submit format="pdf" textEncoding="UTF-16" xdpContent="pdf datasets xfdf" target="mailto:name@company"/>
    </event>
    I don't know if you need to change just the "Submit format" in the XML, or also add the xdpContent tag.
    Hope that works,
    Mike

  • How can I use Automator to open and save Word docs with links?

    Hi-
    I'm having trouble building a Workflow to open and save Word docs with links.
    My Workflow so far:
    1. Get Finder items
    2. Copy Finder items (to new folder)
    3. Rename selected items
    4. Open selected items (Word docs)
    Three problems occur.
    The first is a Word 2004 problem -- I can't get the warning "This document has links in it; do you want to open it with/without updating the links" to go away (Unilke the Macro warning toggle capability, there is nothing in the Preferences for Word 2004 that addresses the links warning, as far as I can tell; any insight you can shed on this would be terrific.)
    The second problem happens with Automator: if I manually accept the update of the first document's links, Automator opens that document but then halts completely, even though I've instructed it to open multiple documents.
    The third problem I have is that there's no Finder action in Automator that allows me to save the document that's now open (as far as I can see).
    Any suggestions for how to fix? If I can get this to work, and scheduled in iCal, it will be an unbelievable time saver.
    Thanks,
    Jeremy
    PowerPC G5   Mac OS X (10.4.6)  

    Hi there Jeremy,
    to do this you are going to have to add in some Run AppleScript steps...
    These will rely on GUI Scripting. So first you need to activate GUI Scripting.
    Now we need to add in a Run AppleScript action to the end of your workflow...
    This will replace your current number 4 in the workflow (Open Selected...)
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">on run {input, parameters}
    set allItems to every item of input
    repeat with currItem in allItems
    tell application "TextWrangler"
    open currItem
    end tell
    activate application "TextWrangler"
    tell application "System Events"
    tell process "TextWrangler"
    delay 2
    --when the Word document is opened I have told it to press okay !
    --I don't know what key you want it to press in the dialog box
    keystroke return
    delay 2
    --save the doc
    keystroke "s" using command down
    delay 5
    --close the doc
    keystroke "w" using command down
    end tell
    end tell
    end repeat
    return input
    end run</pre>
    The above script should open each Word Document, press a button in the dialog box then do a save and then close the doc...then loop through the rest of them.
    You need to replace the name Text Wrangler with Microsoft Word (or whatever it is called!), I don't have it on my Mac.
    You will have to let me know what button needs pressing in the first dialog, if it isn't the 'highlighted ' one then we will have to amend the script...
    regards
    Ric

  • Performance issue when opening DOCX Word Doc with Excel Links

    Is this a bug or is there a config setting that can prevent Word from needlessly opening Excel repeatedly (upon initial open of a DOCX Word doc) when pre-existing links should NOT be updated. The behavior is good using 2003 formats (DOC & XLS),
    but varies significantly (~100:1 range in performance) depending on the test scenario (see below) using DOCX with XLSX.
    We can't move our environment to the new XML formats until we can find a fix. We were led to believe Microsoft knew this to be a bug in Office 2007, but it has NOT been corrected in Office 2010. Omitting a detailed explanation for why we need to
    do this, here's our test scenarios:
    -Currently testing Office 2010 Pro Trial version on WIN XP SP3. (We have found similar results using Office 2007 with Win7 or XP).
    -Word Option Deselected/DISABLED: "Update Automatic Links at Open"
    -The Word Doc contains 100 linked Excel tables and is 130K in size (DOCX).
    -Each link points to the same 10x10 cell range in one Excel Workbook located in same directory as the Word Doc, although other tests using separate directories produced similar results.
    -The Excel Links were inserted into Word via Paste Special/Paste Link/MS Excel Worksheet Object.
    -The workbook (XLSX) is 15K in size.
    -All Links are set for "Manual" update, our testing showed no difference if links are set to "Auto".
    -Again, Word is set to NOT update Automatic links when the document is opened.
    -Results shown below are for local hard drive test.
    -Network response times are slightly greater on 100mb LAN
    -Word is completely restarted prior to each test to make sure there's no application caching involved.
    LOCAL DRIVE RESPONSE TIMES TO OPEN THE WORD DOC in Docx format:
    1. Open the Word Doc from Word with Excel closed - 175 seconds (Excel appears to be opened and closed once per link)
    2. Open the Word Doc from Word with Excel open & workbook closed - 33 seconds (Excel appears to be accessed once per link)
    3. Open the Word Doc from Word with the linked workbook already open - 7 seconds (Excel appears to be accessed once per link)
    4. Rename Excel XLSX workbook so that Word can't find it. Then open Doc the from Word. 1-2 seconds (Excel does not appear to be invoked)
    5. Repeat ALL of the above scenarios 1-4 using DOC and XLS files. These files are created with "Save AS" option based on original test files and then re-pasting the links.  1-2 seconds to open the Word Doc (Excel does not appear to be invoked)
    Summary
    Using DOCX/XLSX, if Word can't find the linked spreadsheet it gives up and performs nicely during file-open. Otherwise, Word performs needless, time-consuming access to Excel, and in the worst case, opens and closes Excel repeatedly in the background.
    Testing with DOC/XLS formats gives good performance across all scenarios.

    It is a known bug and one for which AFAIK, there has been no fix.  The only way that I could get around it in a particular application was to do something like save the linked information as document variables and then on opening the document recreate
    all the information.  My memory on exactly what I did is a bit hazy, but I can go back and check if you are interested.
    -- Hope this helps.
    Doug Robbins - Word MVP,
    dkr[atsymbol]mvps[dot]org
    Posted via the Community Bridge
    "galmcrantz" wrote in message news:[email protected]...
    Is this a bug or is there a config setting that can prevent Word from needlessly opening Excel repeatedly (upon initial open of a DOCX Word doc) when pre-existing links should NOT be updated. The behavior is good using 2003 formats (DOC & XLS), but varies
    significantly (~100:1 range in performance) depending on the test scenario (see below) using DOCX with XLSX.
    We can't move our environment to the new XML formats until we can find a fix. We were led to believe Microsoft knew this to be a bug in Office 2007, but it has NOT been corrected in Office 2010. Omitting a detailed explanation for why we need to do this,
    here's our test scenarios:
    -Currently testing Office 2010 Pro Trial version on WIN XP SP3. (We have found similar results using Office 2007 with Win7 or XP).
    -Word Option Deselected/DISABLED: "Update Automatic Links at Open"
    -The Word Doc contains 100 linked Excel tables and is 130K in size (DOCX).
    -Each link points to the same 10x10 cell range in one Excel Workbook located in same directory as the Word Doc, although other tests using separate directories produced similar results.
    -The Excel Links were inserted into Word via Paste Special/Paste Link/MS Excel Worksheet Object.
    -The workbook (XLSX) is 15K in size.
    -All Links are set for "Manual" update, our testing showed no difference if links are set to "Auto".
    -Again, Word is set to NOT update Automatic links when the document is opened.
    -Results shown below are for local hard drive test.
    -Network response times are slightly greater on 100mb LAN
    -Word is completely restarted prior to each test to make sure there's no application caching involved.
    LOCAL DRIVE RESPONSE TIMES TO OPEN THE WORD DOC in Docx format:
    1. Open the Word Doc from Word with Excel closed - 175 seconds (Excel appears to be opened and closed once per link)
    2. Open the Word Doc from Word with Excel open & workbook closed - 33 seconds (Excel appears to be accessed once per link)
    3. Open the Word Doc from Word with the linked workbook already open - 7 seconds (Excel appears to be accessed once per link)
    4. Rename Excel XLSX workbook so that Word can't find it. Then open Doc the from Word. 1-2 seconds (Excel does not appear to be invoked)
    5. Repeat ALL of the above scenarios 1-4 using DOC and XLS files. These files are created with "Save AS" option based on original test files and then re-pasting the links.  1-2 seconds to open the Word Doc (Excel does not appear to be invoked)
    Summary
    Using DOCX/XLSX, if Word can't find the linked spreadsheet it gives up and performs nicely during file-open. Otherwise, Word performs needless, time-consuming access to Excel, and in the worst case, opens and closes Excel repeatedly in the background.
    Testing with DOC/XLS formats gives good performance across all scenarios.
    Doug Robbins - Word MVP dkr[atsymbol]mvps[dot]org

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • How to merge PDF/Word Doc with the Form I created?

    Hi All,
    Which software should I use to merger PDF/Word Doc with the form I created.
    One more question is I want the form page to show up right next to the ending or in the middle of the word doc . How to manange the placement of the sections?
    Please do let me know, its urgent.
    Thanks and Regards,
    Hari.

    1) The option of creating the whole thing as a LiveCycle form means that you need to convert the Word document using LiveCycle Designer. The import utility won't preserve the fidelity of the Word document the way printing to the PDF print driver does. It will likely require a fair bit of tweaking in Designer to get it looking like you want. You will likely get frustrated, since Designer is not a word processor.
    2) You can create PDF forms in Acrobat without launching LiveCycle Designer. While they look the same to a user as forms created with LiveCycle Designer, behind the scenes they are very different. When you create a form in Acrobat you overlay fields on top of an existing PDF document that you had previously created using the PDF print driver. There is an extensive scripting model for these "Acroforms". The technology pre-dates LiveCycle yet Adobe continues to improve the two forms models in parallel. In Acrobat, open a PDF and select tools-->forms-->show forms toolbar.
    3) I recommend this option if it's feasible. I don't know what you mean by "doesn't show up in a flow". If you're going to use the form in Acrobat 7, then save it as Acrobat 7 compatible in LiveCycle Designer. This is one of the options in the Save As dialog of LiveCycle Designer.
    Jared Langdon
    http://www.jlangdon.ca

  • Unable to embedded xls files word doc with acrobat distiller 6

    Hi,
    I have a problem to convert a Microsoft Word docs with embedded excel(*.xls) to PDF using Adobe Distiller 6. The excel file will become an image file after conversion.
    Please advise on what went wrong or is this a limititaion of Adobe Distiller 6.
    Thank you in advance.
    Regards,
    Haikal

    I suspect that what you are asking as nothing to do with Acrobat. For what you are doing, there is no need to use PDF Maker (unless you are looking for links or such). You do not have to use Distiller (unless you are taking about the Acrobat Distiller printer with AA5 and earlier), but simply print to the Adobe PDF printer (that automates the use of Distiller). In fact, Distiller can not handle DOC files, so I suspect you are using AA5. However, the end result will be based on whatever WORD sends to the printer, not how Acrobat converts it. If text is sent, then Acrobat will convert it accordingly. Sounds like WORD is sending the Excel file as a graphic. It may just be that is how WORD handles that OLE aspect of the embedding.
    I am no expert on WORD (I use another package), but I really doubt that Acrobat is at fault. I would look at what WORD is doing. One way to do this is to print to a PS file (you can do this with the Adobe PDF printer using print-to-file. Open the PS file and you should find a graphic structure in the PS that represents the Excel file.

  • I cannot send a Pages document, Word format via email from my ipad if it has a picture in the the doc.  I can send a Word doc if it does not have a pic in it or pdf with a pic.  Any thoughs why a word doc with a pic in it won't email in Pages?  thanks

    I cannot send a Pages document, Word via email if the doc contains a picture.  If I email a Pages doc without a pic in Word format or pdf with a pic it with go through to sender?  Not sure why Pages won't send Word doc with a picture in it.  I check the security on the email recipient and the email doesn't get blocked or throw in the junk box?
    thanks,
    drainguy41

    If you have upgraded to Mountain Lion, Save As… has returned to the File menu when you hold down the Option/alt key. But you don't really "save" as other file types, you translate & export as Word or RTF or text or PDF & that is easily done by going to File > Export or Share > Export.
    Also, please do us all a favor & don't use all capitals in your posts, either the body of the post or the title. All caps is the internet equivalent of shouting & is very hard to read.

  • Converting MS Word docs with coloured bacgrounds to pdf

    Forgive an Acrobat 'dope' but this outwardly appears to be a simple problem ....... that I can't figure out!
    For work I am using Microsoft Office Word 2003 (MS Office Pro 2003) and Acrobat 8 Pro.  I have no problem converting an MS Word doc, with background or foreground images and text, into a pdf.  However, if I give any MS Word doc a coloured background, using the Format Menu > Background > and then selecting a colour, that colour is not carried across in the conversion to pdf - I end up with a standard white page, instead of the coloured one!
    Where am I going wrong?  Or is this coloured background something that Acrobat won't convert, whatever I do?  I don't wish to produce a 'pseudo' effect by placing a coloured image behind the text (which I know will work) because the pdf file sizes become larger than I want.  I want to 'colour the paper' using MS Word's menu, and convert to a pdf with that same 'coloured paper' being the result.  Is it possible?  If so, how?
    Thanks, in advance, for any help that may be available out there ......

    In WORD: TOOLS>Options>Print>Background Colors and Images (I already had background printing checked, but that refers to the printing process, not the background. Checking this other box does the trick. It is probably off by default to keep from using ink in regular printers.)

  • Can I convert a pdf to word doc with adobe send?

    can i convert a pdf to word doc with adobe send--if so, how?

    Adobe Send is the latest rebranding of Adobe Sendnow. It's a sender for big files, not a converter. Send Large Files Easily - Select, Send, & Confirm & Track| Adobe Send

  • Can't open Word docs with Pages 08

    Since upgrading to SL I found that I can no longer open Word documents sent to me via email attachments. Can this be remedied? I thought Macs were able to "translate" Word files.
    Help!

    I did discover I can open Word docs with Text Edit, but it's a multi-step process now. I really don't want to upgrade to iWork 09 and I'm not sure that would solve the problem. I also have to use Quick Time now to open movies in iPhoto. Another multi-step process. I'm not very happy with SL.

  • Open Word docs with the new Pages?

    Pages does not open. I had the new one installed but apparently had the old one still up. How can I open Word docs with the new Pages?

    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Once opened and saved in Pages 5.1 files can not be opened in Pages 5.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed over 95 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • I have a Word doc with lots of Excel/Pdf attached doc inside. Can I convert this word doc in PDF keeping the attached documents inside the PDF? or do I have to attach all af them again? thank in advance

    I have a Word doc with lots of Excel/Pdf attached doc inside. Can I convert this word doc in PDF keeping the attached documents inside the PDF? or do I have to attach all af them again? thank in advance

    Attach all of them again.
    Be well...

Maybe you are looking for

  • How do I switch iTunes us account to a uk one

    I want to register my iTunes account in the uk having used a us registration since inception. How do I do this ?

  • What Virtual Characterstic and How to Create it.

    Hi Experts, My Requirment is to calculacte age based on DOB at run time. One expert in this forum gave me an idea and required code how to achieve it. Could you please specifie me on how to 1) Create Virtual Characterstic And he asked me to in SMOD .

  • Manual downgrade to iOS 6.1.2 possible? (iPhone3GS, new bootroom)

    Hello there! A few days I upgraded to iOS 6.1.3. I hadn't any wifi, bluetooth or cellular connection, but I thought it would be good to wait for the software to adjust to the framework. Now its almost a week since I've done the upgrade and still no c

  • SSRS Caching for a big Report

    Hi All in one of the new requirement . Users want to see the data even if the Source is not avaiable . How can we achieve this . It is possible to store the result in Cache,?   Is it possible to set the report so that when the Source is available the

  • I can't double click to collapse firefox window into the dock

    I'm running OS X with the newest Firefox (the Yahoo Edition.) Suddenly, double clicking in the top of the window no longer collapses it into the dock. I've tried repairing permissions and dumping the Firefox prefs to no avail. I just did a Firefox se