Random order of adverts in inDesign document

Hi!
I have a monthly publication with about 18 pages of adverts with two to 6 adverts on each page. Every month I have to randomly change the order to make sure sometimes people are towards the fropnt, sometimes near the back. Is there any plugin or way to automate the process and randomly change the order of the advert groups?
Cheers,
Matt

Put the photos in an album and manually sort them in as a random order as you can. The in your iDVD project, create a slideshow, enter the slideshow mode and under the Media pane, select that album and drag it into the sideshow window at the left. The order will be the same that you created in the album.
Or, if you click on the album and use the Share->Send to iDVD the order will be the same as the album.
Do you Twango?
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
Message was edited by: Old Toad

Similar Messages

  • Random lines in PDF inserted in InDesign document

    I have been generating PDF files from Alibre Design (MCAD) since 2005 with no problem. I 'print' the pages with the current Adobe Acrobat Pro and then place them in the pages of my magazine layout in InDesign.
    Recently, when I place a PDF generated from Acrobat Pro, PDF Creator and one or two other PDF generating packages and place the PDF in InDesign, I find random and fairly thin files in most of the placed pages. But not all.
    So far the lines have not appeared in the PDF files generated by the Export function in InDesign.
    What I am worried about is the possibility of the lines showing up in the PDF generated by the Export function. That would force me to use Acrobat to generate TIFF files from the PDF files. A significant time sink if necessary.

    No, it is not a screen artifact. It carries on through to the PDF file I publish as my magazine.
    The workflow is 3D CAD to PDF, place the PDF in InDesign document then Exporting the document to the final PDF.
    The lines are visible in InDesign, sometimes in the resulting Exported PDF and if one prints the PDF page the lines show up randomly on a laser printer.
    Lines do get wider.
    This would kill even a commercial print job.

  • How to place two different indesign documents side by side on my desktop in order to copy and paste images and text from one to the other?

    How to place two different indesign documents side by side on my desktop in order to copy and paste images and text from one to the other?

    Or choose Window > Arrange > Tile
    And, you of course can copy/paste without tiling.

  • How can I search and replace the order items appear in the document?

    Here is my script. I am trying to replace instances of a text pattern (Lot ^9^9^9^9^9) with an auto incremented number Lot 1, Lot 2, Lot 3, etc... I believe this script produces unexpected results becuase the search result is ordered by document construction. The first item in myfounditems is the last item added to the document (which is on the last pages of the document), the second item in myfounditems is the next to last item that was added to the document (which was moved to a middle page in the document). The net result is that instead of having the first item on the first page being Lot 1) and the item directly below it being Lot 2), my document is a hodgepodge of Lot numbers is a seeminlgly random order. Any thoughts on how to fix this?
    tell application "Adobe InDesign CS5.5"
      --Clear the find/change preferences.
              set find text preferences to nothing
              set change text preferences to nothing
      --Search the document for the string "lot".
              set find what of find text preferences to "Lot ^9^9^9^9^9)"
      #set change to of change text preferences to "Lot " & lotnum & ")"
      --Set the find options.
              set case sensitive of find change text options to false
              set include footnotes of find change text options to false
              set include hidden layers of find change text options to false
              set include locked layers for find of find change text options to false
              set include locked stories for find of find change text options to false
              set include master pages of find change text options to false
              set whole word of find change text options to false
              tell active document
                        set lotnum to 1
                        set myFoundItems to find text
                        repeat with foundItem in myFoundItems
                                  set contents of object reference of foundItem to "Lot " & lotnum & ")"
                                  set lotnum to lotnum + 1
                        end repeat
              end tell
    end tell
    display dialog ("Numbered " & (count myFoundItems) & " lots in this document. Next starting lot number is " & lotnum & ".")

    You noticed the first one yourself: the Found item list seems to randomly jump around the document -- I believe you are correct in your observation it may be due to the object construction order. That tells me, by the way, something about your lot numbers that tou didn't mention: your text is not one continuous long threaded story, but it's all or partially in disconnected etxt frames. The Found list does return everything inside a single story in the correct order, but it goes over each separate story in the order they were constructed.
    The only solution is to gather all of your lot numbers, *re-sort* them according to the page number they appear on (and some sort of Worst Case Scenario is when you might have more than one lot number frame per page; in that case you also need to sort by textframe, top to bottom -- yet even worse is if you also may have these textframes side by side!).
    Only then you have a reliable counting order.
    This isn't too bad. We can just extend the method I offered for sorting top-to-bottom/left-to-right in Re: Working around the frame selection order issue in CS 4 and make it also include page numbers:
    function byPageYX(a,b) {
        var
            aP = a.parentTextFrames[0].parentPage.index,
            bP = b.parentTextFrames[0].parentPage.index,
            aY = a.baseline[0],
            bY = b.baseline[0],
            aX = a.horizontalOffset[1],
            bX = b.horizontalOffset[1],
            dP = aP-bP,
            dy = aY-bY,
            dx = aX-bX;
        return dP?dP:(dy?dy:dx);
    myResults.sort(byPageYX);
    Or something like that.
    As for actually implementing the above I cannot be of any help with Applescript.
    Once we're dealing with sorting I think you're much better off in Javascript anyhow.

  • How to import multiple XML files into one inDesign document without copy/paste ?

    I use InDesign CS6, and I have several XML files with the same structure. Only the data are different.
    I created  an Indesign layout with some tagged placeholder frames on merge mode, for automated layout.
    Today for each XML file I have to create a new InDesign document to import the XML. Everything works fine. Then in order to have all Indesign layouts one after the other into a single Indesign layout, I have to use the copy/paste function.
    I mean for example, copy the contents of all documents to the first one. Or add pages of other documents to the first one, then delete spaces between each page.
    So my question is the following:
    How to repeat this process without copy/paste function, knowing that the
    number of XML files could be unknown.
    Thank you very much for your answer.

    Yes, effectively I would like to catalogue the files into one collection so i can save as one PDF and Print as one.:)
    I know I could save each AI as a pdf them then merge the pdf's together in acrobat, but I have nearly 100 files so would feel more comfortable seeing them all together before print / saving.
    My concern is that if I insert them in Ai, will the file resolution reduce? and will the ai still be editable and would it update the indesign file?
    Thanks for the quick reply

  • Can multiple articles be in one indesign document?

    I have an indesign document with multiple articles in it. I made the articles using the Articles panel. How can I add these articles to a folio? When I add an article to a folio using the folio builder panel, it adds the entire document, even though I've used the Articles panel to specify that, say, pages 2-5 are an article named "Family Matters."  Does an article have to be a separate indesign document in order to be added to a folio?
    On a more general level, I haven't seen anything in the DPS literature that explains what an article is, what can/can't be an article, etc. I think that would help me. Thanks to anyone who can answer this.

    Currently it is one article per INDD document. (Two INDD if you intend to do dual orientation)  The "articles" panel is directed more toward epub and html export.
    The concept of the"article" (in terms of the Digital Publishing Suite) was alot easier to understand when it was previous called a "stack" in the prerelease.  The concept is that each page in your article stacks on top of eachother to form one article.  You article InDesign file contains all the pages in that particle "stack" .
    Think of it in terms of a magazine.  Each "article" has its own section in the viewer and thus is own InDesign document (consisting of all the pages for that particular article).  All these different articles or InDesign documents come together to make one "folio" or edition of your magazine.
    My suggestion would be to get familar with the workflow to understand what is and isn't support from Indesign.  Some great videos are on the "getting started with the DPS" page
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60174dc2eb12f2ca67c28-80 00.html

  • How do I set up an InDesign document in another language?

    I have laid out an InDesign document in English. It will be very easy for me to copy/paste my translated text for Spanish since my fonts include the accents, etc. for Spanish. But, how do I do it for a language that uses cyrillic (or other) characters instead of normal letters? I will be given the text in Russian, Vietnamese, Chinese, Tagalog, and Korean in a Word document. Will I need to purchase special fonts for these languages? I'm assuming that if my English InDesign file is using Helvetica Neue Lt Std, that a copy/paste will not work when I'm pasting Russian text. If I will need special fonts, can you recommend some for these languages (for PC; opentype or postscript)? Any assistance will be greatly appreciated.

    Well, I can answer all of your questions, but I'm feeling like you ought to be answer some of them yourself in order to be able to demonstrate yourself competent of typesetting these languages in the first place. For instance: a brief visit to Wikipedia will reveal that Tagalog is typeset in Latin script. Just make sure that it's not marked as English, and that hyphenation is off, and you should be okay with whatever English-language fonts were originally selected for the project. This is partially because Tagalog typographical rules are not as stringent as English rules are, and many of the rules tend to hew to US English standards in any case.
    However, that cannot be said for Russian at all. Russian typographical rules are more stringent than English rules. They don't have the pick-your-own-style-guide problem that English has. Ever watched people argue over the Oxford comma? Much less likely to have that kind of dispute in Russian. But since you don't know the rules, you won't know when you're breaking them.
    Russian and Vietnamese are both supported by comparatively narrow arrays of fonts. There's a Russian foundry called Paratype that will have a very wide array of Cyrillic cuts of familar fonts. Vietnamese is harder to find. The advice from Ellis is good. I'd also point out that any Adobe "Pro" font stands a good chance of having Russian and/or Vietnamese. I am pretty regular user of Myriad Pro and Hypatia Sans Pro (with all of the extra typographical doodads turned off).
    Chinese and Korean are so different that there isn't even very much hope that you can go out and find a font and do it yourself. Fonts for both languages are incredibly expensive. The free fonts that came with your OS might be okay; the ones that came for free with InDesign are also good. But in neither case should you expect a full set of weights, or any italics whatsoever. (Also: don't fake an oblique by adding skew; it looks about eight thousand times worse in Chinese than it does in English.)
    I would strongly advise that you have all of your documents proofed by the translators. For Korean, it'd almost be mandatory; your formatting job stands a decent chance of being Worse Than Useless. (About ten percent of the Korean I handle in InDesign fails to wrap at spaces and breaks in the middle of words.) If there is any chance that you can job this out to a pro, I'd suggest that you take it. It'd be far better for your non-English-language readership if you as a designer critique the typically sub-par design job offered by your translation firm's DTP department than you, as a designer, render the translated text poorly and not have an in-language reader tell you where you've botched it. In the first case, it's probably ugly, but in the second case, it's maybe illegible.

  • How may i place a Numbers spreadsheet in an InDesign document?

    How may i place a Numbers spreadsheet in an InDesign document?
    It's possible?

    Hi.
    You can import a .xls file.
    First, go to Preferences > File handling > check "Create links ... spreadsheet files" in order to be able to update your table when modified in Excel.
    Note that you won't be able to get any formatting from Excel file, so you should create a custom table style, along with paragraph and character styles.
    While importing your Excel file, check "import options", select "Unformatted Table", and apply your table style.
    Of course, no dynamic math operation can be make within InDesign Table, you must do it in your source file, then resave it and update your link.
    If you properly used cells, paragraphs and characters styles, the formatting will be preserved when updating link to the spreadsheet.
    Don't forget your .xls file is now linked to your indesign file (just like a picture), so don't move or delete it without caution...

  • Would like to create a script for list all elements and structure of an indesign document

    Hello everybody,
    I'm a very beginner in indesign scripting.
    I would like to create a script in order to list all elements and the inner structure of a n indesign document.
    The aim for me is to understand how elements are sorted and arranged into indesign, and be able to find an specific element by its item name.
    The output document could be an xml or txt document with a treeview structure.
    I would like have a rough idea of which kind of javascript code I should use for that.
    Thanks for answers.

    Hi Ossydoc,
    You can use Muse to create such a website. All you need to do is, create links in Muse for the sermons and select  " link to File " in the hyperlink option and link to those Mp3 files.
    Please refer to this screenshot :- http://prntscr.com/4xvdup
    Now, when you publish your site,  Muse would automatically upload those files onto the server and the users would then be able to listen as well as download those sermons using the links on your site.
    Hope this helps
    Regards,
    Rohit Nair 

  • Make Data Merge import certain page of pdf or indesign document

    I don't know if it is possible but can you make Data Merge import certain page of pdf or indesign document, this would be great addition for indesign

    Here are a couple of questions that might help understand what might need to be done to achieve your request:
    * How do you propose to identify the desired page(s) within a PDF and an ID document, so the merge field placeholder knows how to find it?
    * How do you propose to keep track of the page if they're re-ordered in an updated document?
    * What if the identification marker is within text and flows to a different page - would you want to retrieve the original page (before the reflow) or the new page to which the marker would have flowed?
    Perhaps the scripters could comment on the possibility of scripting these.
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    aybekDes wrote:
    I don't know if it is possible but can you make Data Merge import certain page of pdf or indesign document, this would be great addition for indesign

  • I upload a podcast each week using Podcast Maker. When I search the iTunes Store to determine if the most recent one is listed all the podcasts are in random order. This week's is

    I upload a podcast each week using Podcast Maker. When I search the iTunes Store to determine if the most recent one is listed all the podcasts are in random order. This week's is #14; last week's is #1. Any ideas how to correct this? The odd thing is that when you try to subscribe to the podcasts, they are listed in the proper order.

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Recurring images in INDESIGN document

    I am trying to find a way to make my workflow easier. I publish a weekly newsletter which will have a standard format and recurring chart images each week.  In order to avoid, inserting the same images ( which update with new data each week) each week, is there a way to set up the INDESIGN document so that it references the same image file on my hard drive which will get updated by me outside of the INDESIGN program?
    This so that all I have to do is update the text portion of my newsletter. Thanks for your help.

    JSTELLAK wrote:
    I am trying to find a way to make my workflow easier. I publish a weekly newsletter which will have a standard format and recurring chart images each week.  In order to avoid, inserting the same images ( which update with new data each week) each week, is there a way to set up the INDESIGN document so that it references the same image file on my hard drive which will get updated by me outside of the INDESIGN program?
    This so that all I have to do is update the text portion of my newsletter. Thanks for your help.
    If you want the updated image to be linked into the document, you need to save it in the same place as the old image, with the same name, so the link recognizes it. The link will display the out-of-date warning in InDesign's Links panel, because the datestamp has changed, of course. Update the link(s) to refresh the image(s) with the latest revised versions.
    Try to set up a directory structure for your publication such that you can revise the graphics in one location and copy them to the location and name that's linked to the publication.
    There may be some existing scripts that can save the current issue to a new name and perform link updates. Ask on the InDesign scripting forum.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Export indesign document to pdf white strokes around text

    Hello there, I have this problem, I am exporting an indesign document to interactive pdf, and the problem seams to appear, when I open the created pdf in adobe reader x, it shows some of the text with white outlines, and the text looks very thick. When previewed in indesign, it looks perfect, text looks crisp. I also opened the pdf document with apples preview, and in preview it looks fine! But in adobe reader it looks horible, I tried adobe readers on other computers, and they all show up with the outline. What causes this anoying issue? plase help, thanks

    We'd have to see the file to know for sure, but this sounds like a transparency flattening issue. Thickened text is indicative of it being converted to outlines, whcih can happen when it interacts with transparency. It's not clear if your white lines are around theindividual glyphs, or around the entire areas. The latter is also a common flattenign artifact called "stitching" that shows up on screen and in low resoution printing.
    The first bit of advice is to keep your text at the top of the stacking order, above transparency, shadows, and other effects. It sometimes helps to have a top layer just for text. The way to eliminate these artifacts 100% of the time is to not flatten transparency at all, which is possible in Print PDFs, but alas, not in Interactive.

  • Random order recordset

    i'm trying to do something that i would think would be fairly simple, and am actually surprised its not a standard dreamweaver selection possibility...
    i'm retrieving a recordset, and i want to return it to the user in a random order.  but i only have the option of ascending, or descending.
    i want to display 1 record per page, for however many pages are in the recordset, but i want them to display in a random order... and differently random each time the first page loads.
    any input would be greatly appreciated.  please speak to me as if i were a child. i'm very new to dynamic development.
    by the way, i'm using PHP/MySQL.
    thanks!
    jamie

    thanks, that sort of works.
    i'm showing 1 result per page though, and instead of showing all the results from the recordset randomly spread throughout the pages, it chooses a new random record for each page.
    so i can be viewing the first record, which IS being pulled randomly as it should, but when i click to go to the next page, it picks an all new record, and therefore repeats previous records, skips others entirely, etc.
    i'm out of my scope of knowledge here obviously. attached is the code for my page in case anyone cares to give it a look.
    thanks!
    <?php require_once('Connections/mZamboni.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_RS_cards = 1;
    $pageNum_RS_cards = 0;
    if (isset($_GET['pageNum_RS_cards'])) {
      $pageNum_RS_cards = $_GET['pageNum_RS_cards'];
    $startRow_RS_cards = $pageNum_RS_cards * $maxRows_RS_cards;
    $colname_RS_cards = "-1";
    if (isset($_GET['set_id'])) {
      $colname_RS_cards = $_GET['set_id'];
    mysql_select_db($database_mZamboni, $mZamboni);
    $query_RS_cards = sprintf("SELECT * FROM cards WHERE set_id = %s ORDER BY RAND() ", GetSQLValueString($colname_RS_cards, "int"));
    $query_limit_RS_cards = sprintf("%s LIMIT %d, %d", $query_RS_cards, $startRow_RS_cards, $maxRows_RS_cards);
    $RS_cards = mysql_query($query_limit_RS_cards, $mZamboni) or die(mysql_error());
    $row_RS_cards = mysql_fetch_assoc($RS_cards);
    if (isset($_GET['totalRows_RS_cards'])) {
      $totalRows_RS_cards = $_GET['totalRows_RS_cards'];
    } else {
      $all_RS_cards = mysql_query($query_RS_cards);
      $totalRows_RS_cards = mysql_num_rows($all_RS_cards);
    $totalPages_RS_cards = ceil($totalRows_RS_cards/$maxRows_RS_cards)-1;
    $queryString_RS_cards = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_RS_cards") == false &&
            stristr($param, "totalRows_RS_cards") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_RS_cards = "&" . htmlentities(implode("&", $newParams));
    $queryString_RS_cards = sprintf("&totalRows_RS_cards=%d%s", $totalRows_RS_cards, $queryString_RS_cards);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <?php do { ?>
      <p><?php echo $row_RS_cards['id']; ?></p>
      <?php } while ($row_RS_cards = mysql_fetch_assoc($RS_cards)); ?>
      <table border="0">
        <tr>
          <td><?php if ($pageNum_RS_cards > 0) { // Show if not first page ?>
              <a href="<?php printf("%s?pageNum_RS_cards=%d%s", $currentPage, 0, $queryString_RS_cards); ?>"><img src="images/First.gif" /></a>
              <?php } // Show if not first page ?></td>
          <td><?php if ($pageNum_RS_cards > 0) { // Show if not first page ?>
              <a href="<?php printf("%s?pageNum_RS_cards=%d%s", $currentPage, max(0, $pageNum_RS_cards - 1), $queryString_RS_cards); ?>"><img src="images/Previous.gif" /></a>
              <?php } // Show if not first page ?></td>
          <td><?php if ($pageNum_RS_cards < $totalPages_RS_cards) { // Show if not last page ?>
              <a href="<?php printf("%s?pageNum_RS_cards=%d%s", $currentPage, min($totalPages_RS_cards, $pageNum_RS_cards + 1), $queryString_RS_cards); ?>"><img src="images/Next.gif" /></a>
              <?php } // Show if not last page ?></td>
          <td><?php if ($pageNum_RS_cards < $totalPages_RS_cards) { // Show if not last page ?>
              <a href="<?php printf("%s?pageNum_RS_cards=%d%s", $currentPage, $totalPages_RS_cards, $queryString_RS_cards); ?>"><img src="images/Last.gif" /></a>
              <?php } // Show if not last page ?></td>
        </tr>
      </table>
    </body>
    </html>
    <?php
    mysql_free_result($RS_cards);
    ?>

  • Finding folios in the indesign document

    i want to find the folios in the indesign document and i want to write in csv file. filename.foliosexistpage.
    could anyone tell me

    Hi,
    There is no folio in InDesign, You can get a pagenumber with section prefix. by using the following code:
    app.activeDocument.pages.everyItem().name;
    Regards,
    Ramkumar .P

Maybe you are looking for

  • Vimeo groups are not updated in ATV3

    Using the ATV for Vimeo but none of the groups I follow are updated since first use. Anyone a suggestion? Thanks in advance!!! Cheers!

  • PHP MysQL Background Application

    Has anyone used PHP / MySQL / ADDT to develop a background application that is clocked based?  Essentially, I'm just looking to fire off a stored procedure every "n" minutes.  Is there a way to write / configure an app to do this?

  • After I installed itune 11 my averTV HD duet card is missing from the system

    After I updated itune to 11, my averTV HD duet  card is missing from the device manager. The system does not recoginze the card anymore. This happened two PCs using Gigbyte 970 motherboard.

  • Oracle9i and linux 6,2

    Hi, I am having RedHat 6.2 and I need to install Oracle9i on it, so can I do it?, if yes please send me the URLs where can I get glibc2.2.rpm and other required packages for linux. Best Regards Thanks

  • Delta Load problem

    Hi, I have one question regarding the deltas. we have one ODS it consist of materail number text and some other fields. The thing is we are doing the full loads. And the data is pulling by  the 3rd party tool from the BW by accessing directly the ODS