Automatically placing images into frames?

Hello all, I really hope im in the right part of this forum
anyway, I work at a print shop, we layout our gang runs in indesign, our files are automatically renamed to 88888-F.xxx and 88888-B.xxx (front/back, xxx being the extension jpg/pdf/tiff/etc)
the layouts are vertically symmetrical
is there anyway I can manually drag 88888-F into its frame and have 88888-B automatically be placed into the frame on the other side?
Thanks in advance!

I not aware of a process that allows you to use a manual drag and drop.  Not sure if the event listener would work here. What you could do is using the ImageCatalog.jsx that comes in the sample JavaScript is create a script that selects a folder or files and places then in the order you require.

Similar Messages

  • How draw image into frame in applet

    How draw image into frame in applet.Please give my simple example code.

    http://search.java.sun.com/search/java/index.jsp?qt=%2Bdraw+%2Bimage+%2Bpanel+%2Bhow&nh=10&qp=&rf=1&since=&country=&language=&charset=&variant=&col=javaforums

  • [AS] [CS2] Placing images in frames

    Hello,
    Thank you all for such a brilliant forum. In the past two weeks I've gone from knowing nothing about scripting to compiling two scripts which do exactly as I need thanks mostly to contributors to this forum.
    My question is about WHY my script works. I can understand most of the syntax I've been working with (sort of) but I can't get my head around this one....
    The script is based on one from the thread "[AS] Indesign CS - place image into existing frame" (thanks Matt McGregor and Shane Stanley).
    **begin script**
    -- Thanks to all Adobe Forums contributors for generously publishing sections of code which new users can use to build their own
    -- This version selects images from a specific folder
    -- Script needs to be altered to automatically select the relevant "eps files" folder
    tell application "Finder"
    set dsFolder to "Macintosh HD:Users:Design:Desktop:Scripting:8076707_Qld WC:eps files:"
    set dsPics to every item of folder dsFolder
    end tell
    tell application "Adobe InDesign CS2"
    set dsDocument to active document
    set dsLayer to layer 4 of dsDocument
    tell dsLayer
    set FrameNo to 1
    repeat with dsPicItem in dsPics
    place dsPicItem as alias on rectangle FrameNo of dsLayer
    fit rectangle FrameNo given content to frame
    set FrameNo to (FrameNo + 1)
    end repeat
    end tell
    end tell
    **end script**
    How does the script understand the term dsPicItem when it hasn't been defined?
    How does the script know to place one instance of each image (rather than, say, repeating the first image in every frame)?
    Thanks in advance,
    Dwayne Smith

    On 3/7/08 1:46 PM, "myDwayneSmith" <[email protected]> wrote:<br /><br />> How does the script understand the term dsPicItem when it hasn't been defined?<br />> How does the script know to place one instance of each image (rather than,<br />> say, repeating the first image in every frame)?<br /><br />When you say "repeat with dsPicItem in dsPics", you're saying to put a<br />reference to the first item of dsPics into dsPicItem, then next time around<br />put the second item, and so on. It's just a shorter way of saying:<br /><br />repeat with i from 1 to count of dsPics<br />set dsPicItem  to item i of dsPics<br /><br />Sometimes it can cause problems (because of the way references work), so the<br />"longer" way is a better habit to get into.<br /><br />-- <br />Shane Stanley <[email protected]>

  • Placing images into documents

    Is it possible to place an Illustrator CS3 image into a text box in InDesign CS3 so that the text wraps around the image? I need the image to move along with the text so that I can make changes to the text. Normally, I would just place the image outside of the text box and apply a text wrap to it, however, I'm working on a 300 page document. The text and image need to flow together so I can make text changes. Any advice?

    You can create an anchored object. This will move with the text on the page when anchored.
    Draw an image frame and place the image, then copy the frame and paste it into the text frame at the insertion point.
    This will then flow with the text around it.
    For more detail, have a look at the InDesign help for more info.

  • How can I automatically import images into iBook Author?

    I'd like to make a photo book with a couple hundred photos.
    Aside from manually inserting each page, inserting each image, placing/resizing it on the page, is there an easier way to insert many images, and flow them one per page?
    thanks in advance

    There is no built-in support for automatic inserts, sorry.
    I can imagine whipping up an Autormator/AppleScript to do that job, however - in which case success lies in your abilities to put that together, of course.

  • Placing images into a multistate object

    Hey folks,
    Trying to figure out what's going on here. Thanks to some helpful folks here, I'm making inroads with JS programming, but I'm still hitting some bumps in the road.
    I've got a handful of graphics that I'm importing, and now I want to to turn them into a multistate object. Here's what I'm doing:
    var tabletSlideshow = app.activeDocument;
    tabletSlideshow.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.PIXELS;
    tabletSlideshow.viewPreferences.verticalMeasurementUnits = MeasurementUnits.PIXELS;
    var slideshowImages = File.openDialog("Choose the images you want incuded", "Files:*.jpg", true);
    if((slideshowImages != "")&&(slideshowImages != null)){
    for (i=0; i<slideshowImages.length; i++)
    tabletSlideshow.pages.item(0).place(slideshowImages[i]);
    //get items for slideshow
    mySlideshow = tabletSlideshow.pageItems;
    app.select(mySlideshow);
    //this is where I get my errors
    tabletSlideshow.pages.item(0).pageItems(mySlideshow).multiStateObjects.add();
    //I've also tried this
    var myState = tabletSlideshow.pages.item(0).pageItem(mySlideshow).multiStateObjects.add();
    I know it's something silly, I just can't put my finger in it. I've managed to do:
    var myState = tabletSlideshow.pages.item(0).multiStateObjects.add();
    for (j=2; j<slideshowImages.length; j++)
    myState.states.add([j]);
    Which creates a new object state with the same number of states as graphics, but I'm not too sure of how to place the graphics inside each state.
    I know I'm making this way more complicated than it should be, and that's the problem. Any help would be much appreciated! Thanks in advance!
    N

    I don't have any experience with multistate objects, but:
    for (i=0; i<slideshowImages.length; i++)
    tabletSlideshow.pages.item(0).place(slideshowImages[i]);
    //get items for slideshow
    mySlideshow = tabletSlideshow.pageItems;
    app.select(mySlideshow);
    You should indent your loops!
    You should not be accessing your page item via the document's .pageItems array. The place() method will return an array of objects that are placed, so you should set a variable equal to its return value and use that.
    Also:
    myState.states.add([j]);
    That's just wrong! j is a number from 2 to {something}, so [j] is an Array containing one element, the number j. That cannot be what you want to pass to State.add(), which takes an object full of properties to add.
    Anyhow, back to your problem:
    //this is where I get my errors
    tabletSlideshow.pages.item(0).pageItems(mySlideshow).multiStateObjects.add();
    Why would this work? a PageItem does not have a multiStateObjects property. And it wouldn't make sense for it to do so -- a MultiStateObject is not contained within a PageItem! It is a type of PageItem. (Though it appears to be contained within some pageitems, like Rectangle, but let's not worry about that).
    So, if you want to add a new MultiStateObject, you'll have to add it to a page or a spread or something. Such as with
    var myMSO = tabletSlideShow.pages[0].multiStateObjects.add();
    Then you probably want to call the addItemsAsState() method on your MSO, with the placed item as the parameter.

  • Putting images into frames

    I'm making diamnond shaped frames to put images in and I need some help. I'm making a square and rotating it but the image rotates as well. How do I do this? I have indesign CS5. Thanks!

    Thanks! I'm attaching a screen shot. I'm trying to duplicate the pdf that's on the right. Thanks again!

  • CS3-style of placing the images inside frames in CS4.

    Hi everyone,
    I'm trying to find a way to have the cs3 - style of placing the images into frames in the new Indy CS4. I mean when I hit cmd+D and draw a frame I don't want any scaling / fitting of the placed image. I know there's no scaling if you drop an image into existing frame but when you draw one on-the-fly it's either the frame that keeps the proportions of the image or when you hold shift the image gets scaled to fit into.
    I'd rather have the old style placing as an option - but didn't find such a switch anywhere in the prefs.
    Thnx.
    R.

    Interesting request. I wouldn't have thought anyone would want the older way of creating images in frames, but I guess there's always someone who wants the old ways.
    I can't find any preference to restore the behavior back to the pre-CS4 way.
    But if you want to work with images the old way, you can. Your commands are just a little different, in a different order. But you may actually save a step.
    Consider:
    b In CS3 you had to do the following:
    1. Drag to create a frame.
    2. Switch to the Direct Selection tool.
    3. If desired, change the position the image inside the frame
    4. If desired, scale the image inside the frame
    5. If desired, use the Fitting commands to fit the image inside the frame.
    b In CS4 you have to do the following:
    1. Drag to create a frame.
    2. Switch to the Direct Selection tool.
    3. Scale the image inside the frame.
    4. Position the image inside the frame.
    However, step 5 is probably eliminated as you already started with the image fitting inside the frame.
    I agree no one likes to need to learn new work habits, but it's not such a big deal.

  • SCRIPT TO IMPORT MULTIPLE PLACED IMAGES..AND OUTPUT MULTIPLE IMAGES TO SINGLE PDF.

    Anyone got a script to import multiple placed images into CS4? or is this possible in CS5?
    and can we output multiple layers into a single PDF in illustrator?  Or multiple layers into single JPEGS from illustrator with one command instead of individually saving out each page... would be a huge time saver for me.
    Currently I output each completed layer individually and then right click those outputted jpegs in their output folder and choose "combine supported files into acrobat..." to make a single acrobat file..
    I`d also like to be able to CTRL click multiple layers and go save as... only those layers get saved out...
    And so adding something in the Save for PDF output dialogue box to save layers to multiple pages would be a helpful time saver..

    In CS 4 and CS 5 you can drag and drop fro m the finder or the Bridge, and I guess any other similar type viewer, multiple number of image files to a document. You can configure the bridge in such a way as to allow you to see the Bridge and your document at the same time for this very purpose.
    If you just drag and drop the files are linked if you drag while holding the shift key then the files will be embedded.
    ID and PS CS 5 have a minibridge which works the sam way but is an actually panel and will stay in the front.
    I separate the images but they import one on top of another.

  • How to automatically crop images in Image Capture for import into iPhoto?

    On my PowerBook G4 / Mac OS X 10.4.2, I'm using the Image Capture 3.0.3 application to capture images coming from scanning photographs with a CanoScan 8400F.
    Can I get the Image Capture application to automatically set the crop frame on the overview? Other applications do that, but with Image Capture it seems that after I do the Overview (preview), I have to manually set the crop frame by clicking and dragging, before I can click the Scan button to do the scan?
    P.S. It seems that iPhoto does not handle scanning, and you do have to use a different application to scan photos before importing them into iPhoto.
    PowerBook G4   Mac OS X (10.4.2)  

    If you hide the details pane Image Capture will scan immediately to a specified folder. Other way is to open printers and faxing from the system preferences , select the scanning tab of your printer and click Open scanner. It will start scanning immediately without opening Image Capture. To set other software as default you should open Image Capture, select your printer/scanner and click the scanner buttons. It will then let you chose which program should be launched when you scan a document.

  • How do I align a placed image in a frame using JS?

    I am new both to javascript and to scripting for InDesign, so please bear with me on this question.
    I am trying to align an image in a graphic frame so it aligns to the top right corner of the frame.
    I can do this using the InDesign interface by following these steps:
    1. Create a rectangular frame.
    2. Right-clicking the frame and selecting "Fitting > Frame Fitting Options."
    3. Selecting the top-right square in the "Alignment" area of the Frame Fitting Options dialogue.
    For me, this automatically aligns the image to the top right corner in the selected text frame, even if there is a placed item in the frame.
    I am trying to apply this to the actual image frame using the following code where "modelFrame" is the rectangle that is the parent of the placed image:
              modelFrame.frameFittingOptions.fittingAlignment.anchorPoint = AnchorPoint.TOP_RIGHT_ANCHOR;
    I am not getting an error, but I am also not getting the desired results (in fact, it doesn't change anythign at all). What am I doing wrong?

    Hi lanejd,
    I have got the same issue as you but had just found the solution. Please see below:
    modelFrame.frameFittingOptions.fittingAlignment.anchorPoint = AnchorPoint.TOP_RIGHT_ANCHOR;
    This will only set the properties for the Frame Fitting Options. You will need to call a method/function. Add the below line to your script and it will execute the Frame fitting Options.
    modelFrame.fit(FitOptions.applyFrameFittingOptions);
    Hope this help!

  • InDesign CS3 Scripting XML Import Multiple Images into same Text Frame

    I am having trouble importing multiple images into the same Text Frame using XML import. I imported 5 images into the text frame. However, all 5 images are laying on top of one another. Does anyone know if there is a way to have all images laying out like how Microsoft Word handles inline images, i.e., laying out next image to the right of previsous image in the same line and if there is not enough space left in the line, then wrap to next line. Thanks in advance. I understand I could use JavaScript to do post import processing, e.g, calculate the image size and place each images accordingly. But I am trying to see whether there is a way to do this without scripts.

    You can apply an object style to all anchored images by script. A text frame containing main flow should be selected.
    var doc = app.activeDocument;
    var textFrame =  app.selection[0];
    var rectangles = textFrame.texts[0].rectangles;
    if (rectangles.length > 0) {
         for (var i=0; i < rectangles.length; i++) {
              rectangles[i].appliedObjectStyle = doc.objectStyles.item("Cover");
    However, there is a better approach:
    Step 1
    Create place holders for a single "Book" element and format it as needed -- apply an object style to the cover.
    Step 2
    Import the xml file -- the placeholders are replaced with data from the 1st xml element
    Step 3
    Drag & drop the element containing all "Books" elements into the main flow -- all elements are placed and formatted the same way as in step 1.
    Finally, add a new page, click the overset text icon and autoflow text to add pages so that to fit all the text.
    Hope this helps.
    Kasyan

  • Drag and drop images into anchored frames -- can this be done with the images imported by reference?

    My company bought a product from another company and the only manuals files that came with it were in pdf format. I am currently grabbing text out in Acrobat, then pasting and reformatting it in FrameMaker. Boring and tedious. . . .
    Eventually I get to the point of importing the illustrations. There are *hundreds* of them. As a rule, we import the files by reference, to keep the chapter size smaller and to be able to double click the image to open it for modification.
    However, I can drag an image file from the folder window and drop it into an anchored frame. Oooh, this is fast--way faster than all the mousework that goes into clicking file>import>file>[choosing the file then hitting the import button].
    But, dang it, that copies the image into the FrameMaker file. No double-click opening. Giant fm. file size. Mad boss, shaking an SOP standards sheet in my face.
    So, my question: Is there a way to import an image *by reference* by dragging and dropping them into an anchored frame?
    Thanks, folks.
    Moore. Matt Moore.

    I tried the RTF route and, in addition to getting the body text I wanted, got paragraph after paragraph of the page numbers, the illustration text, the header and footer verbiage, all randomly placed between body text paragraphs.
    I did the same file twice, once by saving as RTF and deleting unwanted stuff, then repairing body paragraphs (each line of which is a seperate paragraph in the RTF file) and also by sweeping only the necessary text, then copying and pasting it page by page. The second method was a bit faster and less frustrating. Not to say that it isn't slow and frustrating in itself, but just a bit less. Less errors, too, with the second method.
    Bummer about importing by reference. I don't suppose there's a way to set up recorded actions with hotkeys, is there? Like in Illustrator?
    Thanks, Art.
    Moore. Matt Moore.

  • Problem with photoshop automatically resizing placed images

    Hi,
    I have PS6. I have images that are 144x100 px. When I use file>place ps resizes the image to 108x75. I can't figure out how to make ps quit resizing my pictures. Anybody know?
    Thanks

    When Pasting, Dragging, copying and placing an image Photoshop will copy all of the image being duplicated original pixels to preserve the image pixel quality the image quality.  If the receiving document has a different DPI resolution the image may look a different size in the  receiving documents because of the number of pixels added to the document that has a lower or higher dpi resolution.  If the image is being placed in if the image pixels exceeds the receiving documents canvas size. Photoshop may scale the smart object layer to fit within the canvas that depends on the users Photoshop's preference.  All of the images original pixels are still there in the embedded object.   In my Photoshop Collage Scripts  I always transform all placed images to 100% size  incase Photoshop scaled the placed image.  For you can not get the scale percent Photoshop used.  Once I know I have the image at 100% size I can use the layer bounds to get the actual number of pixels there are in the placed image.  Once I know that I can calculate the scale I need to use to resize the image to fit the area being populated in the collage template.   Once resized I center it into place and mask off any excess image pixels.

  • Importing raw images into lightroom4 without automatically editing.

    when importing my raw images into lightroom4 they are automatically editing how do i change this?

    My guess is that you just don't understand how Lr4 (and every other raw converter) works.
    There is no such thing as viewing a raw file, only viewing the interpretation of a particular converter (of which your camera is the first raw converter to take a whack).
    It's time to learn how to edit with Lr4 - what you start with in Lightroom will *always* be different than your camera, or your manufacturer software, or any other raw converter...
    (assuming it's not an issue of inadvertently changed default settings or settings applied inadvertently upon import...).
    Note: because Lightroom does not take camera-specific things into account, the initial starting point is often less optimized than your camera or manufacturer's rendition (e.g. no luminance noise reduction is applied, active d-lighting is not taken into consideration...)
    PS - Lr4/PV2012 rocks - once you learn how to use it - it's the best!
    A couple of specifics:
    * Lr4 defaults to Adobe Standard (see Camera Calibration section in Develop Module), which tends to be run a little magenta-y, a little cyan-y, and a little bright. Consider a camera emulation profile, or try red (primary) hue +7 and blue (primary) hue +10 for portraits that use Adobe Standard (also camera calibration section). Also try pulling the lights slider left in the parametric tone curve. If you like this for some photo types, roll it into a custom profile using DNG profile editor (can even be precisely calibrated for your specific camera).
    * Lr4 includes a little contrast boost that is not represented by the tone curve (nor the contrast slider). If too much for portraits, try -contrast, or -highlights...
    Rob

Maybe you are looking for