InDesign Place Multiple Graphics in a grid

I really like new feature of placing multiple graphics all at once into a grid, simply by holding the Command+Shift. This seems to be limited to only working when multiple files have been chosen in the Place dialog and loaded into the Place cursor. It would be really beneficial for this grid ability to be extended to instances when a single file that contains multiple pages is chosen (ex:multi-page InDesign document or PDF). Each page is loaded into the Place cursor as if they were separate graphics to be placed, just the grid keyboard command doesn't work since only a single file was chosen from the Place command.

That's a great idea. Post it on the official form:  Adobe - Feature Request/Bug Report Form

Similar Messages

  • Place multiple graphics in numerical order

    Hi all,
    I am having a problem with the order in which indesign inserts placed multiple images (graphics).
    I have a folder of images labelled 1, 2, 3, 4, 5, 6.....and so on. Say I select the first 30 images in bridge (or in the finder) and drag them to indesign and pull out a grid for 10 images. All flows in fine, but the order becomes not quite numerical.
    For example the order I see the images now placed down in is:
    1, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 4, 5, 6, 7, 8, 9
    I can't imagine this is expected functionality really and am hopeful that there may be an easy solution without having to do something like number all the images 001, 002, 003, 004 etc. etc. as this would take longer than simply placing down each image into a grid one by one! (I realise i can batch rename in various programs including bridge, but this probably won't help me as my numbering sometimes skips a few numbers (ie 1,2,3,7,8,10,13,17...) and therefore auto (batch) renumbering sequentially would actually break my numbering which need to remain unchanged)
    I hope this explanation makes sense and please let me know if i've left any detail that may help define the problem further.
    I am using a Mac + CS5 InDesign (& CS5 Bridge).
    ps. just tested it on CS4 and found the same issue also.
    Thanks.

    It has been remarked (and commented upon) before.
    That's because the Adobe programmers didn't really expect someone to actually use numbers to organize their files ... If you look at your list of files, you will see that the order is alphabetical instead -- '1' comes before '10' comes before '11' comes before '2'.
    The Low-tech solution is to rename all files with a single digit to one with two digits -- add a '0' in front of '1' to '9', and you'll be allright.
    (The High-tech solution is for Adobe to re-write their file sorting. For chrissakes, nowadays even Windows sorts files correctly!)

  • [Disappeared Post] Place multiple graphics in numerical order

    (Am I going crazy, or is Jive having a nervous breakdown AGAIN? I'm pretty sure -- well, fairly sure -- I just answered to a thread with this title!!)
    This Javascript will rename all files that start with one or more digits within a selected folder, adding the proper number of leading zeroes, and thus nicely circumvent InDesign's programmers' incapability to properly sort files on importing and placing.
    (Copy, paste into the ESTK Editor, and save as "AddLeadingZeroes.jsx" in your User Scripts folder. Run by double-clicking and selecting a folder. A No Guarantees, Inc., guaranteed Jongware Script. Use With Care, No Undo!)
    //DESCRIPTION:Add Leading Zeroes to File Names
    A Jongware Script, 14-Feb-2011
    var folderLoc = Folder.selectDialog("Select Folder to rename in");
    if (folderLoc)
    folderContents = folderLoc.getFiles("*.*");
    maxNum = 0;
    for (l=0; l<folderContents.length; l++)
      if (folderContents[l] instanceof Folder)
       continue;
      if (folderContents[l].name.match(/^\d/))
       n = folderContents[l].name.match(/^\d+/)[0].length;
       if (n > maxNum)
        maxNum = n;
    if (maxNum)
      var failList = [];
      var successList = [];
      for (l=0; l<folderContents.length; l++)
       if (folderContents[l] instanceof Folder)
        continue;
       if (folderContents[l].name.match(/^\d/))
        n = folderContents[l].name.match(/^\d+/)[0].length;
        if (n < maxNum)
         if (folderContents[l].rename ("000000000000".substring(0,maxNum-n)+folderContents[l].name))
          successList.push (folderContents[l].name);
         else
          failList.push (folderContents[l].name);
      if (failList.length)
       alert ("Warning!\rRenaming failed on:\r"+failList.join("\r"));
      alert ("Renamed to:\r"+successList.join("\r"));
    RIP Gary Moore 1952-2011

    ... That 2nd line is of vital importance ...
    The Description line is to show a nice helpful pop-up when you hover the mouse above this script in the Scripts panel -- particularly useful if you have some (wait, I'm gonna count mine) 140 scripts with, erm, "helpful names" like 'alignwords2.js' or 'balance.js' or (indeed) 'test.jsx'.
    The second line, however, is important when this script suddenly stops working! It contains the important information of who made it (me) and when (today). If I ever update or amend the script, you might want to know what version you are using!
    Commenting out a line, by the way, is extremely easy. Just as in the first line, all you have to do is place two slashes // at the start of any line, and it will no longer be part of the action. Also, good for you! for finding out all you had to do was to remove that 2nd line to get it to work! I dunno what went wrong, it's correct over here in my local copy. Let's blaim Jive again, shall we.

  • Place multiple InDesign document pages (ImportedPages)

    Hello,
    I need a way to place multiple pages from an InDesign document in much the same way as the sample PlaceMulitpagePDF.jsx does but with InDesign documents rather than PDFs.
    The following is the critical line where the PDF page number to import is set:
    app.pdfPlacePreferences.pageNumber = myCounter;
    What is the equivalent command for setting the InDesign document page number when choosing a page to import?
    I have tried using:
    Application.ImportedPageAttribute.pageNumber
    but without result.
    TIA

    Why, thank you Mr. Schneider!
    I am embarassed to say that my problem was a couple of typos, (reading the Zanelli script made that obvious to me). The command should have been:
    app.importedPageAttributes.pageNumber
    Note the lowercase "i" on "imported" and the "s" after "Attribute."
    Your help is very much appreciated!

  • I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics

    I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics with "Alternative Text".
    I know that with a Microsoft product graphics can be tagged before a PDF is made. I need to know how to do this with my programming.

    The Acrobat SDK might be a starting point.
    From there, perhaps a plug-in (built with C+).
    Perhaps with a licensed release of a PDF Library (this could be $$).
    The viable and cost effective alternative is use the tried and true.
    Authoring in an appropriate authoring application with appropriate tag management.
    Example:  Adobe InDesign; Adobe FrameMaker or MS Word with PDFMaker (comes with install of Acrobat).
    This way you place "Alternative Text" when mastering content in the authoring file.
    Going the route and with some look-see (research) you may find programmatic approaches to placing the alt txt in the authoring file.
    Note: as discussed in the Matterhorn Protocols there is no programmatic method that provides a fully accessible PDF (specifically, that is an ISO 14289-1, PDF/UA-1 compliant PDF).
    Regardless, here you have a sub-forum for discussions on Acrobat usage.
    Consequently discussions on/of 3rd party software is rather out of scope eh.
    Be well...

  • Loading/Placing multiple graphics in the correct order

    Hi. This might be hard to understand but... On a Mac (OSX 10.5.5) when placing multiple graphics at once in InDesign CS3, is there a way to have the graphics loaded/placed in the same alpha-numeric order that they show up in an open folder window (sorted by name) in the Finder? They are in correct order in the finder window with the absolute value of the file number taken into account instead of the number of decimal places (for instance 8000 comes before 12000) but they seem to load up in the placement cursor by referencing the first digit instead. I know this has been how it's always worked, but Apple has fixed the dilemma. Is Adobe just behind in this idea? Is there a better way for me besides renaming all the files or placing them one by one? I just tried changing the links palette to "Sort by name" but they go into old school computer alpha-numeric order based on the first number unfortunately. Any ideas would be much appreciated!
    Thanks,
    Mike

    I don't have a real answer, but my "peanut gallery" comment is that alphabetizing has been eff'd up in OS X since 10.0 (Finder and other apps), and never works reliably in all instances. Though it has been fixed up "better" by now, 10.5.
    Makes me long for the good old days of OS 9 where everything worked right.

  • Is it possible to replace  XSLT mapping in place of Graphical mapping

    Is it possible to do XSLT mapping in place of Graphical mapping, in any normal scenario?
    Means the fuctionality we do by using Graphical mapping(like the operations by using node functions etc...) could possible to do with XSLT Mapping?

    HI
    yes it is possible to replace the graphical mapping with the XSLT mapping.
    But using XSLTs degrade the performance of the interface and moreover they are not easily maintainable.
    Refer the below links for assistance on XSLT Mapping:
    XSLT MAPPING:
    Generic XSLT Mapping for SAP XI,Part I
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    Generic XSLT Mapping for SAP XI,Part II
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9692eb84-0601-0010-5ca0-923b4fb8674a
    XSLT: Recursive Templates
    XSLT: Recursive Templates
    Easy RFC lookup from XSLT mappings using a Java helper class
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14
    Step u2013 By u2013 Step Simple Approach for XSLT Mapping
    Step – By – Step Simple Approach for XSLT Mapping
    http://www.devguru.com/Technologies/xslt/quickref/xslt_element_applytemplates.html
    XSLT Mapping
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9692eb84-0601-0010-5ca0-923b4fb8674a
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/006aa890-0201-0010-1eb1-afc5cbae3f15
    xpath functions in xslt mapping
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=xslt+mapping&adv=false&sortby=cm_rnd_rankvalue#
    Using XSLT mapping in a ccBPM scenario
    File to Multiple IDocs (XSLT Mapping)
    Comparsion of Different mappings:
    Comparing Performance of Mapping Programs
    Complete mapping guide url:
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/content.htm
    cheers

  • FCP 10.1.3 multiple graphic images into one frame

    Hi - How do I put multiple graphic images into one frame? - so it kind of looks like a video wall - except these are still images. I can do it manually but it's not precise. Anyone found a way other than this? Thanks.

    Here is my quick and dirty generator called "9 Pictures": https://www.dropbox.com/s/92c536wgesh2yzj/9%20Pictures.zip?dl=0
    To install it, unzip the file and place the folder inside /Users/yourname/Movies/Motion Templates/Generators
    It will look like this in FCP X. You just have to click each drop zone icon in the inspector and then select the desired clip from the browser. Use the Pan and Scale controls in the inspector to select which part of each image you want to use. Note: this was done in the hope that it may be helpful, but it is no more than a quick thing. You can also control-click the generator in the generator browser and choose open in motion (if you have it) to see how it was done and to modify it.

  • Can not place any graphic in Illustrator CS6

    I try to place a jpg or psd graphic inside a normal Illustrator document. Illustrator tells me the graph has no color profile (what is not correct - it has) but whatever option I choose nothing happens - no graphic is placed, I get no cursor to place the graphic. Or Illustrator just crashes. This used to work just fine in earlier version... I use CS6 cloud version.
    Any help greatly appreciated!
    Thanks.

    I tried several color settings, I checked with the color tool if profiles are damaged but the ones I use did were not listed, I removed the preference files... nothing. Either Illustrator is just crashing or it says for every file that it has no profile but then just nothing further is happening.
    The only way I found to get a picture into Illustrator is to place it within InDesign (that works normal) and then copy / paste it to Illustrator.
    Maybe this is a Mountain Lion problem? I can not remember having those problems on Lion.

  • Place inline graphic?

    Hi all,
    I have ExtendScript code that places a graphic inline in a text frame. It does this by placing the graphic on the page, selecting it, cutting it, then selecting some placeholder text in the text frame, and pasting. This replaces the placeholder text with the graphic.
    This might not be the most elegant way to do this, but it's been working fine.
    Problem: now I need to move this code to InDesign Server. InDesign Server lacks select, copy, and paste methods (since there's no UI).
    I've been trying to find an alternate way of doing this without success. I don't have the option to import the text stream as XML.
    Any suggestions?
    Thanks,
    Chuck

    I forgot to mention: in many cases, the "graphic" that must be placed is a snippet. NOW is it complicated enough for you?
    -Chuck

  • How to place multiple list box in Module Pool Program having same option.

    I have a screen. I want to place multiple i/o box with listbox option having 10 option of each . Is it possible ?

    Hi Manoj,
    Sorry, did not got you. You mean list box with 10 options, just this?
    Or Cascading list box?
    regards,
    Archer

  • FCP 7 Multiple Graphics Cards & 3 Displays

    With FCP 7 (Studio 3) has Apple fixed the issue that you can't have multiple graphics cards and more than 2 displays as was the problem with prior versions?

    I did the typical; post a question then play around with the problem routine here.
    I've found a solution where i put the "playout monitor" on the same card as screen 1. move screen 2 to another card and make the relevant adjustments to the displays arrangement panel so everything is the same layout as before. FCP now plays out to the correct monitor it seems it can't handle sending to other cards.
    i'm running 10.5.8 and FCP 6.0.6

  • Place multiple page PDF script no longer runs correctly

    I have place multiple PDFs into ID java script. Recently, when running the script, I'm no longer prompted to use current doc or new doc. I also don't get a prompt to place PDF starting on page x. It just opens a new 8.5 x 11 doc and places the PDF pages.
    I haven't deleted my prefs yet (haven't made a note of what they are). Nor have I deleted the script. Thought I'd check here first before nuking prefs or script. I get a lot of PP presentations as PDFs for printing so I need the ability to place into an 11 x 8.5 file.
    AFAIK, I haven't added anything new to my workstation which is running CS3 on Dual G5 with OS10.4.11. I have a tendency to troubleshoot after a 12 hour day and I've found out after the fact I did a lot of unneeded busy work by not thinking on it out more or asking around beforehand.
    Thanks in advance for any help.

    Does any other script show any dialog at all?
    If not, some rogue (or interrupted) script switched off User Interaction. You can enable it again with this one line javascript:
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;

  • Place multiple titles on a single clip and then manually place them?

    Hi all,
    Is it possible to place multiple titles on the same clip in iMovie 09?
    I would also like to manually place those titles to where I want them to be on the frame.
    I know it's possible to "trick" iMovie by adding a title to a clip, exporting it, and then importing it again to add another title but this seems to degrade the quality of the video.
    Thanks very much!
    Mike

    mac shy wrote:
    .. I would also like to manually place those titles to where I want them to be on the frame.
    I guess, that kills iMs built in title features.
    so, Plan B)
    export a still form your project (=just as reference for following procedure)
    use any pic processor (Photoshop Elements/Pixelmator/..) which allows 'layers'.
    use exported still as background
    add as many titles where you want .. (keep in mind, video! no small fonts, no serifs, no too bright colors...)
    replace background layer by pure Green
    export as jpeg
    import to iMovie, use Greenbox effect to add video.

  • Multiple Heading in ALV Grid

    Hello ,
    I have a requirement to display Multiple heading in ALV Grid, I am using the Class 'cl_gui_alv_grid'. please let me know if you have Any suggestions.
    Ex:
    |                 Divison                     |     
    Sub D:1
    Sub D: 2
    Sub D: 3
        Like wise i have few more divisions to display and Under we need to display the Sub Division also .
    Thanks in Advance..  Waiting for your suggestions.
    With Best Regards
    Nags

    Hi,
    I had attempted to do it in the object oriented way, but found no ready solution, so I settled for the below solution.
    Please use the function REUSE_ALV_COMMENTARY_WRITE.
    This allows you to print multiple lines in the header.
    I had a requirement of showing 5 lines in the header.
    So i went on like:
    DATA: it_list_commentary TYPE slis_t_listheader,
               wa_list_commentary TYPE slis_listheader.
    wa_list_commentary-typ = 'H'.
    wa_list_commentary-info = <text>.
    APPEND wa_list_commentary TO it_list_commentary.
    wa_list_commentary-typ = 'S'.
    wa_list_commentary-info = <text>.
    APPEND wa_list_commentary TO it_list_commentary.
    I fed he internal table with all 5 lines like above.
    Finally I called the function.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = it_list_commentary.
    Regards,
    Prosenjit.
    Edited by: prosenjit chaudhuri on Jan 28, 2009 6:14 AM

Maybe you are looking for

  • What are the different ways to back up your photos from iphoto using a MacBook Pro which does not have a disk drive?

    What are the different ways to back up your photos from iphoto using a MacBook Pro which does not have a disk drive?

  • EP logon page as part of web pages of portal

    hi I want to create a layout using web page composer. The layout is attached with the post. top left of the layout consists of a logon functionality. I want to put EP's logon page as part of the layout. Such that logon block will appear with every we

  • No registered window for:w0 error using Jdev 11.1.2.4.0

    Hi, We are using JDev 11.1.2.4.0 version. We have created an ADF application and deployed it to weblogic server 10.3.5.0. When we run the application in IE 9 "No registered window for:w0" error appears in the logs. But for IE8 there is no such error.

  • Dirty Writes to the database

    I have a value object which was originally populated with information from database. I have a requirement to update ONLY the data that was changed in the value object. I could come up with something clever to do it myself, or I could use an existing

  • Adjust date/time for multiple images

    Wonder if anyone else is having this problem (some posts seem similar but not exactly the same) 1. Clean library (mix of DNG, JPEG and TIFF files) 2. Need to change dates to match other images in the project 3. Selected multiple images and used Metad