Importing multiple Word docs into InDesign

Hi there
Is it possible to import multiple Word documents into a single InDesign text frame all at once?
I have 20 files that all flow sequentially so was wondering if -- by selecting them all in Place window -- they would all be brought in one after the other, without each one creating its own new text frame.
Any help gratefully received.
Thanks
Dan

I use the script, below, for that. It's a bit scruffy, it should be tarted up. But it works fine. When you start it you type a path/file mask, using the formats illustrated in the dialog.
It sets a few import preferences, these are the only ones I'm interested in. But it'll pick up the other options from their current settings.
Peter
// Description: Place multiple textfiles as one story
#target indesign
preset = '/d/test/*.rtf';
app.wordRTFImportPreferences.useTypographersQuotes = true;
app.wordRTFImportPreferences.convertPageBreaks = ConvertPageBreaks.none;
app.wordRTFImportPreferences.importEndnotes = true;
app.wordRTFImportPreferences.importFootnotes = true;
app.wordRTFImportPreferences.importIndex = true;
app.wordRTFImportPreferences.importTOC = false;
app.wordRTFImportPreferences.importUnusedStyles = false;
mask = prompt ('Enter a file path/mask.\r\r' +
    'Examples:\r' +
    'd:\\books\\test\\*.rtf   /d/books/test/*.rtf', preset);
if (mask == null) exit();  // Cancel pressed
ff = Folder (File (mask).path).getFiles (File (mask).name);
if (ff.length > 0)
    placed = [];
    missed = [];
    tframe = app.documents.add().textFrames.add({geometricBounds : [36, 36, 400, 400]});
    placedstory = tframe.parentStory;
    app.scriptPreferences.userInteractionLevel =
        UserInteractionLevels.neverInteract;
    pb = initprogressbar (ff.length, 'Loading');
    for (i = 0; i < ff.length; i++)
        pb.value = i;
        try
            placedstory.insertionPoints[-1].place (ff[i]);
            placedstory.insertionPoints[-1].contents = '\r\r';
            placed.push (ff[i].name);
        catch (_)
            missed.push( ff[i].name );
    app.scriptPreferences.userInteractionLevel =
        UserInteractionLevels.interactWithAll;
    inform = '';
    if (placed.length > 0)
        inform = 'Placed ' + ff.length + ' files (in this order):\r\r' + placed.join ('\r');
    if (missed.length > 0)
        inform += '\r\rCould not place:\r\r' + missed.join ('\r');
    delete_empty_frames ();
    alert( inform );
else
    alert (mask + ' not found.');
// End
function delete_empty_frames ()
    app.findGrepPreferences = app.changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = '\\A\\Z';
    var empties = app.activeDocument.findGrep (true);
    for (var i = 0; i < empties.length; i++)
        empties[i].parentTextFrames[0].remove()
function initprogressbar (stop, title)
    progresswindow = new Window('palette', title);
    progressbar = progresswindow.add ('progressbar', undefined, 1, stop);
    progressbar.preferredSize = [200,20];
    progresswindow.show ()
    return progressbar;

Similar Messages

  • Importing Microsoft Word comments into InDesign CS5.5 [Mac]

    Has anyone had success importing Microsoft Word comments into InDesign 5.5? I've read that this is possible, however, all my attempts have failed. I've checked that Track Changes is on in both InDesign and MS Word.
    The one pattern with all the files I've attempted is that, by the time I receive the file, the author has already accepted all tracked changes. The comments remain, but they do not import into InDesign.
    I have 'track changes' ticked on the import dialog.
    Is there anything I'm missing? Tips from people who've done this successfully would be greatfully apprecated.

    Hi BhSimonP,
    Did you got any solution to this problem. I am having same requirement now.
    Please help me with your answer.
    Thanks,
    Gopal

  • Is it possible to import fast a word.doc into Indesign

    Hallo,
    I am producing department documents. Now I have some problems because I created them in word from microsoft.
    Is it possible to import the word documents into the indesign format in an easy way?
    It should be time safing and effective.
    I would be glad for some answers!
    best wishes

    The way you move word dodument s into InDesign is by using File > Place..., selecting the word file in the dialog, chooing import options if you like, and clicking the cursor in the InDesign document. How you've set upt he ID file will have a lot to so with wher you should click and whether or not you should be also pressing the Shift key to autoflow.
    It's quite clear you have no idea how InDesign works, so before you get into trouble you should look around for some books or tutorials, and try reading the help files. One of the best books out there for new users is Sandee Cohen's Visual QuickStart Guide to InDesign.

  • Importing Multiple Word Documents into RH

    I know that RH allows users to import word documents, however
    I was wondering if there was a way to import multiple word
    documents (ala batch style import) instead of importing each
    document one at a time.

    Colum has good advice. Also, since you're new to this, there
    are a few curiosities that occur that can be puzzling to newcomers.
    If you have graphics in your Word docs (screenshots, etc.) a new
    folder will automatically be created. So if the name of your Word
    doc is MYDOC.DOC, graphics will be placed in a new folder called
    MYDOC_Files.
    Another "hitchhiker" to the process is the creation of a CSS
    file automatically created for each Word doc. After the import you
    have the choice to reassign any style sheet you like, regardless of
    the CSS originally linked.
    Another tip if you're new to importing, go to Peter Grainge's
    excellent site.
    http://www.grainge.org/
    Follow the links: RoboHelp > Importing from Word for some
    excellent ideas.

  • Importing and flowing multiple text docs into InDesign CS3

    I have multiple plain text files where each runs several pages long that I want to import into one document in ID CS3. I want to import them and have them flow in a single threaded text frame one after another over multiple pages. With a single multi-page text doc all I have to do is select Place and hold down the shift key and InDesign will add the necessary pages and flow the copy until the end of the doc. However, if I shift select the docs and try import them into a text frame by holding down the shift key, it will just flow the first doc in the group with no indication of overset text. I have tried placing multiple text docs holding down the shift and command key and that brings in all my docs on the first page but in separate text boxes with overset text for each doc. Is there a way to do this in InDesign or perhaps a plugin that can do this?
    Thanks
    Randy

    I tried to find this. It was posted 4/21/08 by Peter Kahrel (I can tell, because I can see my side of the discussion in my Sent folder) in response to a post I made entitled "Multiple Files". Maybe I'm not searching the forum archives properly, or maybe this was during the time last year when Adobe was trying (and failing) to update the forums. In any case, I'm sure at this point that Peter posted this for public consumption, so I don't think he's going to mind if I post it again:
    // Description: Place multiple textfiles as one story
    #target indesign
    preset = "/d/books/test/*.doc";
    app.wordRTFImportPreferences.useTypographersQuotes = false;
    app.wordRTFImportPreferences.convertPageBreaks = ConvertPageBreaks.none;
    app.wordRTFImportPreferences.importEndnotes = true;
    app.wordRTFImportPreferences.importFootnotes = true;
    app.wordRTFImportPreferences.importIndex = true;
    app.wordRTFImportPreferences.importTOC = false;
    app.wordRTFImportPreferences.importUnusedStyles = false;
    mask = prompt( 'Enter a file path/mask.\r\r' +
       'Examples:\r' +
       'd:\\books\\test\\*.rtf   /d/books/test/*.rtf', preset );
    if( mask == null ) exit();  // Cancel pressed
    ff = Folder( File(mask).path ).getFiles( File(mask).name );
    if( ff.length > 0 )
       placed = [];
       missed = [];
       tframe = app.documents.add().textFrames.add(
          { geometricBounds : [36, 36, 400, 400] } );
       placedstory = tframe.parentStory;
       app.scriptPreferences.userInteractionLevel = 
          UserInteractionLevels.neverInteract;
       pb = initprogressbar( ff.length, 'Loading');
       for( i = 0; i < ff.length; i++ )
          pb.value = i;
          try
             placedstory.insertionPoints[-1].contents = '£0';
             placedstory.insertionPoints[-1].place( ff[i] );
             placedstory.insertionPoints[-1].contents = '\r\r';
             placed.push( ff[i].name );
          catch(_)
             missed.push( ff[i].name );
       app.scriptPreferences.userInteractionLevel = 
          UserInteractionLevels.interactWithAll;
       inform = '';
       if( placed.length > 0 )
          inform = 'Placed ' + ff.length + ' files (in this order):\r\r' + placed.join('\r');
       if( missed.length > 0 )
          inform += '\r\rCould not place:\r\r' + missed.join('\r');
       delete_empty_frames ();
       alert( inform );
    else
       alert( mask + ' not found.' );
    // End
    function delete_empty_frames ()
       app.findGrepPreferences = app.changeGrepPreferences = null;
       app.findGrepPreferences.findWhat = '\\A\\Z';
       var empties = app.activeDocument.findGrep (true);
       for (var i = 0; i < empties.length; i++)
          empties[i].parentTextFrames[0].remove()
    function initprogressbar( stop, title)
       var progresswindow = new Window('palette', title);
       var progressbar = progresswindow.add( 'progressbar', undefined, 1, stop );
       progressbar.preferredSize = [200,20];
       progresswindow.show()
       return progressbar;
    Copy and paste everything between the hyphen lines (not including the hyphen lines) into a text editor and save with a .js extension and put it in your scripts folder. Should be something like:
    D:\Program Files\Adobe\InDesign CS3\Adobe InDesign CS3\Scripts\Scripts Panel
    After alphabetizing your files and putting them in their own folder, copy the path and run the script. It will make a new folder and place all your files in one continuous story. I don't know how it will work with .txt files.
    Ken Benson

  • Importing word doc into InDesign

    I am trying to find the best way to get about 250 word pages into 250 InDesign pages.
    Currently I am assuming I have to copy/paste each page by hand. Is there a way to set page breaks in word and have them relate to pages in InDesign? I know that I can Find/Change attributes to batch/automatically apply styles to imported text. My major issue is that each InDesign page has a header, sub header, then 4 - 5 paragraphs with inline headers, so there is a lot of formatting.

    You have to put your custom frame on you master A page. Open your pages pallet. select the master page, create you custom frames on the master page. Select the first frame, click on the little blue box the bottom right the hover you curser over inside the  next frame and it will turn into a chain link icon. Click.
    This will link the two frames together over the left and right pages.
    Now double click on page one in your page pallet. You'll see the dotted frame which means that it on you master page. If you don't? then got to menu View>show frame edges.
    Next
    File> place select the word file
    your curser will load with the word file, hover your curser inside the dotted blue frame you just made on page 1 hold down your shift and click

  • Trouble importing accurate versions of Word docs into InDesign CC

    HELP! Sometimes when I import a word document sent to me by a client, InDesign imports an older version of that word document. If I open the document they sent me in Word and compare it to the text that imports from the same document, it's sometimes a different version? It seems to import an older, un-edited version of the document. Has anyone experienced this? Why is that happening, How can I fix it? It seems to just be one client but has happened a few times.

    Make sure to open the track changes dialog and accept the changes, then do a Save As to rewrite the file.

  • Import multiple Word docs to multiple pages with same master page?

    Hi, I should start by saying I have no scripting experience.  However, I am wondering if there is a simple script available for the following issue:
    I have set up a master page with three linked text boxes. Right now, I use Cmd+D to select a word file, and then Shift+click in the first box to place the text on the page. But I have 125 pages that are exactly the same layout, just different Word files to be imported. I could repeat this process 125 times, but I am wondering if there is a way to tell InDesign to create 125 pages using Master Page X and import one file for each?
    I am using InDesign CS5 v 7.0.4 on Mac OSX Snow Leopard v 10.6.7
    Thank in advance for any help you can offer,
    NW

    I was able to import the word documents as long as there was only one text frame on the master page. However, when I created multiple text frames (the text in the word document needs to flow from frame 1 to frame 2), it always imported into frame 2 and skipped frame 1. In case it is helpful to understand what I mean, I attach two screenshots. The first (sans text) is the master page, and the second is Page 1 after running the script. I added the labels Frame 1 and Frame 2 to Page 1, not the Master, because otherwise the text gets imported into the frame with the words "Frame 2". I suspect I have to label the frames in InDesign and then add something to the script that says insert into the Frame 1, but I'm not sure how to do that.
    It wasn't clear from your narrative in June that the text frames were linked, and that the text needed to flow between frames.
    The script, as implemented, only overrides one text frame, (textFrames[0],  which is the top-most text frame in the stacking order), and then places the text in it. Clearly that's not correct for your scenario.
    You mention 3 frames but only mention flowing between 2 frames.
    Anyhow, it sounds like you want the script to override all 3 text frames, and then to place in the first textframe.
    The first is easy, the question is really what should happen when there are more than 3 text frames -- should it override all text frames, or only some. You could specify which ones with a Script Label, or you could do something more clever. For the moment, let's just override all text frames.
    Then you have to specify which one to place into. You could just select the frame you want and Arrange > Bring To Front. Or we could specify frames[2], which should be the 3rd-from-the-top (after frames[0] and frames[1]). I'll do the latter, but feel free to keep the script the same and do the former:
    var
        d=app.activeDocument,
        p=d.pages,
        i, frames;
    for (i=0; i<p.length; i++) {
        frames = p[i].appliedMaster.textFrames.everyItem().override(p[i]);
        frames[2].place(new File("/path/to/page"+p[i].name+".doc"));

  • Importing Microsoft Word doc to InDesign with embedded EPS art ~ scaling issue

    Hi, my workflow calls for creating content in Microsoft Word 2010 with embedded EPS art, in this case MathType 6.7a math objects. When I import these manuscripts (after saving as Word 97/2003 format) into my Adobe InDesign CS5.5 templates, the embedded inline graphics have been resized. Strangely, InDesign is keeping the container frame at the correct dimensions and then upsizing or downsizing the art inside that box.
    When I export a sample graphic from the Word file and unembed the same graphic after import it into InDesign, the two graphics are different sizes. InDesign might increase the size of one embedded graphic by 400% and then scale it down to 25% inside the anchored picture box and then in the next anchored picture box it might decrease the size the art to 50% and scale it to 200%.
    I did a test and created a graphic in Adobe Illustrator, saved it as EPS, placed the graphic into a Microsoft Word 2010 document, saved it out to 97/2003 format, imported that doc into an empty Adobe InDesign CS5.5 file. Again! InDesign changed the size of the art and re-scaled it to appear the same.
    I've been able to duplicate this issue on InDesign CS4 also, on both Windows XP and Windows 7.
    Has anyone else run into this issue? Does anyone know why the InDesign import filter doesn't import inline art in a Word document at 100%? Thanks for the help!

    My solution for this is:
    1. Place *.docx (yes, docx) word document with mathtype equations into indesign. This will set correct baseline for equations which is very important.
    2. download this scalegraphics script http://in-tools.com/downloads/indesign/scripts/ScaleGraphics.zip
    3. copy script from zip folder to C:\Program Files\Adobe\Adobe InDesign CS4\Scripts\Scripts Panel\Samples\JavaScript
    4. open palet (window/autoamtion/scripts) scripts, find new sript and run it
    Voila, all equations is at 100%...
    Script explanation: http://in-tools.com/article/scripts-blog/scale-graphics-script/
    In links palete equations have eps extension but this is embeded wmf files so you cant open them in photoshop or distill it with distiller.-((( I use export to pdf option in indesign to make pdf file.
    If you want all this eps links to export from indesign use this method:
    1. in links palete select all links
    2. in palete menu choose "unembed link"
    3. on answer window choose "no"
    4. select folder where you want indesign save files
    5. press "select"
    6.  now you have all links in new folder unembed from indesign document and you can edit it with mathtype.

  • Problems importing a Word doc into Robohelp HTML

    I have a 116-page Word document with 13 chapters. When I
    import this document into Robohelp HTML as a winhelp output file,
    only two topics are created, rather than 13. On the Conversion
    Options window, I select to have new topics created by Word style
    "Heading 1" which are my chapter titles. Why doesn't Robohelp
    create the topics, and what should I change to faciliate that?
    Also, why don't my numbered lists from Word stay numbered in
    Robohelp? Is there a way to automate numbered lists?

    Thanks for your reply.
    When I insert .gif files JDeveloper ends with a message saying "Process exited with exit code 0". I then go and check in the database and I find the image added to the table.
    With a word doc, JDeveloper does not give that message. No message at all regarding what the status of the process is. And the document is not added to the database. No error messages too. Could this be an issue with Oracle?

  • How to import MS Word docs into a Wiki (with embedded images

    What is the best way to import a lot of large MS Word docs (50+ pages) with images into a Wiki-Folder?
    I know that you can copy&paste the text and still preserve the formatting, but i'd still have to import the images manually.
    Is there something planned like Word2MediaWikiPlus?

    Originally Posted by rkattenberg
    Use webdav of set up a email feader.
    I don't understand. If we use Webdav, we can access and share Office-documents, but we want to create a Wiki-structure with links etc.

  • How to 'Paste' a Word doc into InDesign and keep all of the settings?

    I've set up styles in the Word doc, that I was hoping would transfer into InDesign, once pasted. The Word doc is very large, and has hundreds of jpegs placed within it. My issue is that once it is pasted, the images are overlapping the text above it, as well as others.
    How would I rectify this? ...Is this a Word settings problem, or a transferring/'pasting' problem?

    BigEnd wrote:
    When pasted from Word, the graphics are Inline by default.  You can correct each one by selecting the graphic and then Anchored Object, Options and selecting Above Line (centered etc).  What I do then is create an object style to these specs and this makes it quicker to apply to the graphics.
    You say that there are very many graphics in the doc - does anyone know how to make the above settings the default when graphics are pasted from Word?
    M
    Thank you M, but I believe I figured it out:
    I made styles in Word to make things a bit simpler when changing large sections of text, so within the settings of the images style select Format>Paragraph>Line and Page Breaks. Under 'Textbox Options' the Tight wrap defaults to 'None' - Select 'All'.
    When the file is placed into InDesign, the images don't overlap, and are exactly where they need to be.

  • How do I import a word doc into address book

    I have word doc with address labels, I want to import that into address book, how would I do that? If word can't do that I can also open it in Pages. Thank you.

    The way to import datas in AddressBook is not what this forum is dedicated to.
    Please go to
    MacOS X 10.5 > Mail and AddressBook
    or
    MacOS X 10.4 > Mail and AddressBook
    A quick search in AddressBook Help with the wonderful keyword "Import" teach us that AddressBook is able to import from:
    vCard ;
    format LDIF ;
    TAB delimited file ;
    CSV (comma-separated values)file.
    So, it appears that the first thing to do would be to save your Word document as a TAB delimited file or as a CSV one.
    Yvan KOENIG (from FRANCE mardi 29 juillet 2008 17:57:29)

  • I need to import a word doc into the film script format

    I have a script saved in a word doc and i want edit it on adobe story. Ho would i do that?

    Hi,
    in Story Projects view, you can click the 'Import' button and choose the word document and then choose Film/TV template as appropriate to import. If your word document has been properly formatted (e..g, Scene Heading is of the format INT. SET NAME etc.), Adobe Story would be able to parse the elements correctly and import them without issues.
    Thanks
    Aurobinda

  • Importing Graphics - Word 2008 to InDesign - Maintaining links?

    Hi!
    I have an issue where documents are prepared in MS Word 2008 (Mac OS 10.5.7) and then imported/placed into InDesign CS3. The word document has inline graphics which are placed into InDesign as embedded images, however I want them to remain unembedded and linked to the original graphic files when the word doc is imported into InDesign (I have all the graphics in a sub folder within the same folder as the word doc and the InDesign file).
    Under InDesign CS2 with Word 2004 I could import a word doc into Indesign and maintain links to graphics (rather than embedded graphics) as long as the graphics were inserted into MS Word via 'Insert > Picture > From File" and then I Ticked 'Link to File' and unticked 'Save with document'. I have done exactly the same thing with MS Word 2008 but I get embedded empty graphics frames in Indesign rather than links to the images.
    I then tested Word 2008 with Indesign CS2 and still had the same problem, so am now wondering if it is an issue with Word 2008 or the newer OS?
    Any suggestions would be much appreciated!!!

    Thanks Bob.
    This has made me realise that the documents are being supplied to me as .doc rather than .docx even though they are being created in MS Word 2008 (they have a compatibility setting so that they save as an earlier word version - I need to resolve this).
    Am I correct in assuming from what you have said that if I have got the images at the quality I want when they are linked into the Word document they will firstly not lose any quality in Word and secondly when they are embedded in the InDesign document there will be no loss of quality?
    I ask this question because basically I am regularly updating large online PDFs - starting with an MS Word master and then importing this into InDesign, making layout adjustments and then exporting to PDF. I therefore need to make the process as quick as possible (which I have done through a number of Applescripts) and one of the things I want to speed up is to have to manually go through and relink the images each time. So either I need some quick way of linking the images, OR (if I've understood you correctly) not worry about relinking the images because there is no loss of quality from when we link and embed the graphics in MS Word to when they become embedded in InDesign? This would mean the only time I would have to relink the images is when we do a printed version (which requires better quality images)???

Maybe you are looking for

  • Time machine copied my old files over new ones.

    Sometimes the Macbook Pro would't load the desktop. Other times it won't load the password window. The backup drive booted up. I ran Norton anti-virus but found nothing. The disc utility found the disc OK. But repairing permissions won't run. DiskWar

  • How do I Update Twonky on NSS324?

    Hi The twonky server on NSS324 has bugs and will need to see if there is a new twonky pkg available for NSS324. If there is one where can I find it and how can I update it? Abhijit

  • Crash when adding image on DM8

    I need help tofind out the problem such when I try to add a images to site DM crash. This happens every time I try to add a image. Could someone help me? Dreamweaver Vr.8.0.2 Windows Vista

  • My iPod won't sync on my Windows computer...

    I've been trying to sync my iPod touch with my computer for some time, but it has not been working. At some point of the syncing process, iTunes freezes. Therefore, I cannot complete the process. How do I fix this problem? Thank you for your help

  • Printing is slow in adobe

    Greetings, We are having a large scale deployment issue with a new model Canon printer.  Printing is extremely slow when trying to print from Adobe. We have two different type of printers: Ricoh & Canon With Ricoh everything works great.  With Canon