Image With Title

Hi, how are all of you? I wonder if it is possible to have an Image with Label or Title that display along with the Image itself as a single object.
Thanks
.:.Wahab

Sure. In this example the image path and caption are in an XML file, and I am putting the images in:
1) a HorizontalList
2) a List
3) individual Panels using a Repeater
The images I am using are in a folder "images" under the folder containing MainApp.mxml
--------------- data.xml ---------------------
<?xml version="1.0" encoding="utf-8"?>
<photos>
    <photo>
        <image>images/red30_30.JPG</image>
        <caption>Red Square</caption>
    </photo>
    <photo>
        <image>images/green30_30.JPG</image>
        <caption>Green Square</caption>
    </photo>
    <photo>
        <image>images/blue30_30.JPG</image>
        <caption>Blue Square</caption>
    </photo>
    <photo>
        <image>images/black30_30.JPG</image>
        <caption>Black Square</caption>
    </photo>
</photos>
------------------ MainApp.mxml ------------------------
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  creationComplete="photosRequest.send();">
  <mx:Script>
    <![CDATA[
      import mx.rpc.events.ResultEvent;
      import mx.collections.XMLListCollection;
      [Bindable] private var xlc:XMLListCollection;
      private function photosHandler(evt:ResultEvent):void{
        xlc = new XMLListCollection(evt.result..photo); 
    ]]>
  </mx:Script>
  <mx:HTTPService id="photosRequest" url="data.xml" result="photosHandler(event)"
    resultFormat="e4x"/>
  <mx:HBox width="100%" horizontalAlign="center" horizontalGap="30">
    <mx:HorizontalList dataProvider="{xlc}" rowHeight="100"
      columnWidth="100">
      <mx:itemRenderer>
        <mx:Component>
          <mx:VBox horizontalAlign="center" verticalAlign="middle">
            <mx:Image source="{data.image}"/>
            <mx:Text text="{data.caption}"/>
          </mx:VBox>
        </mx:Component>
      </mx:itemRenderer>
    </mx:HorizontalList>
    <mx:List dataProvider="{xlc}" rowHeight="100"
      columnWidth="100" height="405" width="110">
      <mx:itemRenderer>
        <mx:Component>
          <mx:VBox horizontalAlign="center" verticalAlign="middle">
            <mx:Image source="{data.image}"/>
            <mx:Text text="{data.caption}"/>
          </mx:VBox>
        </mx:Component>
      </mx:itemRenderer>
    </mx:List>
    <mx:HBox>
      <mx:Repeater id="rp" dataProvider="{xlc}">
        <mx:Panel title="{rp.currentItem.caption}">
          <mx:Image source="{rp.currentItem.image}"/>
          <mx:Text text="{rp.currentItem.caption}"/>
        </mx:Panel>   
      </mx:Repeater>
    </mx:HBox>
  </mx:HBox>
</mx:Application>

Similar Messages

  • Conversion Table: Image with Title

    I'm using conversation tables to move from Unstructured FM8 to Structured (DITA) FM10.
    I am trying to move the existing tables and graphics with titles into the DITA structure.  My understanding is that in DITA, it should look like this:
    So I've developed my conversion table to look like this:
    But when I run Structure Current Document, it doesn't wrap the (title[fig], image) in the figure element:
    The one part that seems odd to me is that when I generate the conversion table, I don't see any row that represents the image element itself.  Is that the problem?  Is there something else that I should be doing?
    Thanks!

    You need a row that has "G:" in column 1 and "image" in column 2 to indicate that anchored frames should map to the image element.
                  --Lynne

  • Image with Title/Description Hover on MouseOver

    Hello All,
    So currently I am having trouble getting this perfect. I have an image that populates dynamically, as well as Title, Description and Link to the details page. The problem is the hover is not centered to the image, and in IE it doesn't always appear when you mouse over. If anyone could please help me out I would greatly appreciate it! I haven't been able to get this to work properly, and have been working on/off for a week.
    Here is the html/php code:
      <div class="featured2">
        <h2>Featured </h2>
        <?php foreach ($feature as $featured) { ?>
      <div class="featured-pic2">
            <img src="image/<?php echo $featured['filename']; ?>" alt="" width="320" height="320" />
            <div class="title2">
            <a href="details.php?place=<?php echo $featured['link_name']; ?>">
            <span>
         <h2><?php echo $featured['name']; ?></h2>
      <p><?php echo substr($featured['description'], 0, strpos($featured['description'], '.')+1);?></p>
            </a>
            </span>
            </div>
            </div>
    <?php } ?>
      </div>
    And here is the CSS
    .featured-pic2 {
    position:relative;
    float:left;
    width:320px;
    height:320px;
    padding:5px 5px 5px 5px;
    border:#F00 }
    .title2 {
    left:0px;
    top:0px;
    position:absolute;
    float:left;
    width: 325px;
    height: 325px;
    top:0px;
    left:0px;
    .title2 a {
    color: #FFF;
    width: 320px;
    height: 320px;
    display: block;
    text-decoration: none;
    .title2 a:hover {
    background:#000;
    opacity:.60;
    filter:alpha(opacity=60);
    .title2 a span {
    display: none;
    padding:0px;
    .title2 a:hover span {
    display: block;

    Ok so I have made some modifications to the CSS as follows; What isn't correct now is that in IE9 the hover is white (no big deal) should be grey, but in Mozilla the hover is not centered (because I removed the padding on a:hover) to center it in IE. Other than that the functionality is great now! And just some minor details to work out.
    .featured-pic2 {
        position:relative;
        float:left;
        width:320px;
        height:320px;
        padding:5px 5px 5px 5px;
        border:#F00 }
    .title2 {
        left:0px;
        top:0px;
        position:absolute;
        float:left;
        width: 325px;
        height: 325px;
        top:0px;
        left:0px;
    .featured-pic2 a {
        color: #666;
        width: 320px;
        height: 320px;
        display: block;
        text-decoration: none;
    .featured-pic2 a:hover {
        background:#000;
        opacity:.60;
        ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
        filter:alpha(opacity=60);
        padding: 0px;
    .featured-pic2 a span {
        display: none;
        padding:5px;
    .featured-pic2 a:hover span {
        display: block;

  • In iPhoto, how can I export images with the metadata - including the title and caption information - intact as part of the image?

    In iPhoto, how can I export images with the metadata — including the title and caption information — intact as part of the image?

    Check those boxes in the export dialogue - Exporting From iPhoto
    LN

  • I have a sharepoint custom list with Title and image attachments, now i want to display image attachments in div based on the title.

    hi,
    i have a sharepoint custom list with Title and image attachments, now i want to display image attachments in div based on the title.

    i am using the below code only
     SPSite mySite = new SPSite("http://sharepoinsiteaddress");
    SPWeb myweb = mySite.OpenWeb();   
    SPList myList = myweb.Lists["Announcements"];   
    SPListItem myListItem = myList.GetItemById(1);   foreach (String attachmentname in myListItem.Attachments)
    String attachmentAbsoluteURL =    myListItem.Attachments.UrlPrefix // gets the containing directory URL
       + attachmentname;
       // To get the SPSile reference to the attachment just use this code
      SPFile attachmentFile = myweb.GetFile(attachmentAbsoluteURL);
       // To read the file content simply use this code
       Stream stream = attachmentFile.OpenBinaryStream();    StreamReader reader = new StreamReader(stream);
       String fileContent = reader.ReadToEnd();
    here i am using panel, how can i attach this attached image to panel

  • How to make a podcast with one still image with iMovie 09

    I'm using trying to transfer my podcasts to Vimeo. I've been using iWeb to create a person web site with video and podcasts. I have embedded Vimeo with "html snippet widge." I want to do the same thing with audio, however Vimeo only accept "video" files.
    In my attempt to work around Vimeo's video issues, I had the idea to use iMovie 09 to create a "video file" using a single still image with my audio podcast play in the background. The single image would be consistent for the entire length of the audio. It seems simple...one still image file and one audio file.
    All of my audio files are less than 45 minutes in length. The problem is that when I insert an image in iMovie I can't get it to last for more than 10:00 minutes of my podcast. I've had to drag the same image over several times, extend each image's length to 10:00 minutes until I have enough images to last the full length of the audio file.
    I'm sure there's a simple way to do this with one image, used one time, and have the audio added.
    Anyone understand my situation and have a good idea?

    The most efficient method would be for you to do this in iMovie 6. You can download a version if you don't already have it on your computer. http://supportdownload.apple.com/download.info.apple.com/AppleSupport_Area/Apple_Software_Updates/Mac_OSX/downloads/061-3532.20070807.nq3ER/iMovieHD6.dmg
    Put all your clips into a new iMovie project, in the order you wish them to play. Use the chapters tab and add chapter markers for each clip (except the first one; iDVD will add that one for you). Close iMovie.
    Open an new iDVD project. Use the Media tab, then Movies, to locate your new iMovie. Drag and drop it onto the main iDVD window, taking care not to drop it into a drop zone. You should then see the title of your movie and the two options: Play Movie (which will play all the clips sequentiallly) and Scene Selection (which will take you to submenu(s) where you can select which clip to view).

  • Rotating Image with Fade Effect

    Ok looking to rotate an image with a fade effect; below is a rotating image code.
    (Wanting this effect to be transitional and smooth. Transparency? Opacity?)
    <script language="JavaScript">
    <!--
    function adArray() {
    for (i=0; i*2<adArray.arguments.length; i++) {
    this[i] = new Object();
    this[i].src = adArray.arguments[i*2];
    this[i].href = adArray.arguments[i*2+1];
    this.length = i;
    function getAdNum() {
    dat = new Date();
    dat = (dat.getTime()+"").charAt(8);
    if (dat.length == 1)
    ad_num = dat%ads.length;
    else
    ad_num = 0;
    return ad_num;
    var ads = new adArray(
    "img1.jpg","http://www.domain.com",
    "img2.jpg","http://www.domain.com",
    "img3.jpg","http://www.domain.com");
    var ad_num = getAdNum();
    document.write('<div align="center"><A HREF="'+ads[ad_num].href+'" target="_blank"><IMG SRC="'+ads[ad_num].src+'" '
    +'BORDER=0 name=js_ad></A></div>');
    link_num = document.links.length-1;
    function rotateSponsor() {
    if (document.images) {
    ad_num = (ad_num+1)%ads.length;
    document.js_ad.src = ads[ad_num].src;
    document.links[link_num].href = ads[ad_num].href;
    setTimeout("rotateSponsor()",4000);
    setTimeout("rotateSponsor()",4000);
    // -->
    </script>
    Any ideas?

    Here is the script I finally got working! It would have not came to me without your help guys!
    <script>
    var pictureWebPartName="Pictures"; // name of the picture library web part
    var showThumbnails = true; //otherwise show full sized images
    var randomImg = true; //set to true to show in random order
    var useCustomLinks = false; //true to use second column as URL for picture clicks
    var RotatingPicturesLoopTime = 5000; //2000 = 2 seconds
    var imgToImgTransition = 1.0; //2 = 2 seconds
    // don't change these
    var selectedImg = 0;
    var imgCache = [];
    var imgTag;
    function RotatingPictures()
    imgTag = document.getElementById("RotatingImage");
    //Find the picture web part and hide it
    var Imgs = [];
    var x = document.getElementsByTagName("TD"); // find all of the table cells
    var LinkList;
    var i=0;
    for (i=0;i<x.length;i++)
    if (x[i].title == pictureWebPartName)
    // tables in tables in tables... ah SharePoint!
    LinkList = x[i].parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode;
    // hide the links list web part
    LinkList.style.display="none";
    break;
    if (!LinkList)
    document.all("RotatingImageMsg").innerHTML="Web Part '" + pictureWebPartName + "' not found!";
    //Copy all of the links from the web part to our array
    var links = LinkList.getElementsByTagName("TR") // find all of the rows
    var url;
    var len;
    for (i=0;i<links.length;i++)
    //if (links(i).id.match("row")!=null)
    if (links[i].childNodes[0].className=="ms-vb2")
    len=Imgs.length
    Imgs[len]=[]
    Imgs[len][0] = links[i].childNodes[0].childNodes[0].href;
    if (useCustomLinks)
    if (links[i].childNodes[1].childNodes.length>0)
    { Imgs[len][1] = links[i].childNodes[1].childNodes[0].href; }
    else
    { Imgs[len][1] = "" }
    if (Imgs.length==0)
    document.all("RotatingImageMsg").innerHTML="No images found in web part '" + pictureWebPartName + "'!";
    for (i = 0; i < Imgs.length; i++)
    imgCache[i] = new Image();
    imgCache[i].src = Imgs[i][0];
    if (useCustomLinks)
    imgCache[i].customlink=Imgs[i][1];
    RotatingPicturesLoop();
    // now show the pictures...
    function RotatingPicturesLoop()
    if (randomImg)
    selectedImg=Math.floor(Math.random()*imgCache.length);
    if (document.all){
    imgTag.style.filter="blendTrans(duration=" + imgToImgTransition + ")";
    imgTag.filters.blendTrans.Apply();
    url=imgCache[selectedImg].src
    if (useCustomLinks)
    { RotatingImageLnk.href=imgCache[selectedImg].customlink; }
    else
    { RotatingImageLnk.href = url; }
    if (showThumbnails)
    // convert URLs to point to the thumbnails...
    // from airshow%20pictures/helicopter.jpg
    // to airshow%20pictures/_t/helicopter_jpg.jpg
    url = revString(url);
    c = url.indexOf(".");
    url = url.substring(0,c) + "_" + url.substring(c+1,url.length);
    c = url.indexOf("/");
    url = url.substring(0,c) + "/t_" + url.substring(c,url.length);
    url = revString(url) + ".jpg";
    imgTag.src = url;
    if (document.all){
    imgTag.filters.blendTrans.Play();
    selectedImg += 1;
    if (selectedImg > (imgCache.length-1)) selectedImg=0;
    setTimeout(RotatingPicturesLoop, RotatingPicturesLoopTime);
    // utility function revString found here:
    // http://www.java2s.com/Code/JavaScript/Language-Basics/PlayingwithStrings.htm
    function revString(str) {
    var retStr = "";
    for (i=str.length - 1 ; i > - 1 ; i--){
    retStr += str.substr(i,1);
    return retStr;
    // add our function to the SharePoint OnLoad event
    _spBodyOnLoadFunctionNames.push("RotatingPictures");
    </script>
    <!-- add your own formatting here... -->
    <center>
    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td id="VU" height="125" width="160" align="center" valign="middle">
    <a name="RotatingImageLnk" id="RotatingImageLnk" alt="click for larger picture">
    <img src="/_layouts/images/dot.gif" name="RotatingImage" id="RotatingImage" border=0>
    </a>
    <span name="RotatingImageMsg" id="RotatingImageMsg"></span>
    </td>
    </tr>
    </table>
    </center>
    Thanks again guys!

  • Smart Collection bug with Title doesn't contain rule

    Hi,
    There are various articles on smart collections that check if the "Title" field is filled or not. Because the "Title" field doesn't have an "is empty" like function, the sugested solution is to use the rule:
      Title   doesn't contain   a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z
    But there is a bug in this rule. I found that the letter 't' is causing a problem. The letter 't' seems to include all characters.
    Situation:
    Four images that have a their Title field as follows:
      Image 1:
      Image 2: 2014-01 - Street Photography.dng
      Image 3: 2014-01
      Image 4: Some Image
    (Image 1 has an empty title)
    Four smart collections with the following rules:
      Collection 1: Title   doesn't contain   a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z
      Collection 2: Title   doesn't contain   0,1,2,3,4,5,6,7,8,9
      Collection 3: Title   doesn't contain   a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,u,v,w,x,y,z
      Collection 4: Title   doesn't contain   t
    My expected result of the smart collections is:
      Collection 1: Image 1 and Image 3
      Collection 2: Image 1 and Image 4
      Collection 3: Image 1 and Image 3
      Collection 4: Image 1, Image 3 and Image 4
    The actual result of the smart collections is:
      Collection 1: Image 1
      Collection 2: Image 1 and Image 4
      Collection 3: Image 1 and Image 3
      Collection 4: Image 1
    I'm using Lightroom 5.7 on a MacBook Pro 17" (mid 2010), i7 @ 2.66GHz, 8GB RAM and 2 x 240GB SSD's running on OS X 10.10.1
    My questions are:
    Can anyone, specially from the Adobe Lightroom team, confirm this?
    How to solve this issue?
    With kind regards,
    Dennis
    www.idemi.nl

    That is a bizarre bug.  There is an even simpler way to reproduce the problem: Have two pics, one with title "a" and the other with title "t".  The criterion "Title Contains a" correctly shows just the first picture, but the criterion "Title Contains t" shows both.
    Searching with smart collections and filters has numerous bugs, but this one is by far the most surprising.  As a geek programmer, I'd love to know what causes this!
    Adobe rarely reads this forum -- I suggest you post this in the official Adobe feedback forum, which Adobe does faithfully read (but only infrequently responds).

  • Have an image as title and form underneath?

    Hi, I'm trying to put an image on the top of my Midlet. Currently it has a form as a 'init' with a few items in it. The problem is I want an image as title intstead of String title. Can i remove the title in form and kind of move it down so that i can put an image on top of my form. if so, can you guide me how please (classes methods). Or is there any other possibilities like form in canvas maybe?
    thanks
    indy

    You can't change the Form title by an Image. One thing you can do is put an ImageItem the beginning of your Form, looking like a title. This way you can control the Image alignment and other things.
    Raphael

  • DHTML List (Image) with Sublist and authorization problems

    Dear all -
    I wonder if anyone can help with this DHTML drop-down menu query:
    We use hierarchical menus implemented as DHTML Lists (Image) with Sublists. When some of the items are hidden through authorization, the wrong headers appear for the menus.
    For example:
    Menu
      Item 1
        Subitem 1 of Item 1
        Subitem 2 of Item 1
      Item 2
        Subitem 1 of Item 2
        Subitem 2 of Item 2
    Say Item 1 and its subitems are all hidden through authorization controls. The heading for Item 2 then appears as 'Subitem 2 of Item 1' instead of 'Menu'.
    There's an example here:
    http://htmldb.oracle.com/pls/otn/f?p=11837:1
    Anyone know why this is happening?
    Thanks for your time.
    John.
    PS. Any idea where my previous post on this subject has disappeared to?

    Carl - in the example on htmldb.oracle.com, in Menu2 I'm hiding all the elements in Category 1 (parent and children), although not the 'grandparent' (Menu2).
    I'm therefore still expecting the menu title to be 'Menu2', because that's Category 2's parent.
    It doesn't appear to be an issue with the sequence of the items, because I've changed all those about and still got the same problem.
    To be more specific, again using the htmldb.oracle.com example, in Menu2 we have:
    Menu2
      Category 1 (Hidden)
        Item 1 of Category 1 (Hidden)
        Item 2 of Category 1 (Hidden)
        Item 3 of Category 1 (Hidden)
        Item 4 of Category 1 (Hidden)
      Category 2     
        Item 1 of Category 2     
        Item 2 of Category 2     
    And Scott - thanks for picking up the previous post - for some reason I couldn't for the life of me find that yesterday (in fact I still can't find it when I search).
    Thanks for looking into this.
    Regards,
    John.

  • Can't create disk image with Disk Utility

    I just upgraded to OS X Mountain Lion and i can no longer create disk images with Disk Utility in order to store encrypted data.
    The operation fails and ends with the post :
    Failed to create disk image, error:
    hdiutil: create failed - Resource busy
    I use three Macs with Mountain Lion, and this problem occurs only on one of the three.
    I check the disk, repair permissions and did a reset of the PRAM. I even did a reinstall of Mountain Lion, without success.
    But curiously, using a new user account, I was able to create a first disk image. But no one after.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the page that opens.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Click the Clear Display icon in the toolbar. Try the action that you're having trouble with again. Post any messages that appear in the Console window – the text, please, not a screenshot.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    DO NOT INDISCRIMINATELY DUMP THOUSANDS OF LINES FROM THE LOG INTO A MESSAGE. If you do that, I will not respond.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Working with Titles Painfully slow (or am I Doing something wrong?)

    I have tried with a couple of new projects adding titles to the beginning and end. I have tried plain text as well as some of the backgrounds provided or using images. In all cases, when I edit the text or especially if I try to undo or even preview it, it takes forever. It will finally return control, but only when I add Titles does everything slow WAY Down.
    I have no problem creating them. They are just painful to work with. Can anyone suggest better (more efficient and quicker) way of working with titles?
    Thanks,
    Joe..

    Once again, many thanks!
    So I dl'd the driver update. I had previously done many of the items in the thread regarding performances increases. I do have to admit Godmode was a new one to me so thank you for that as well.
    I did kill some additional background programs as well from the service auto starting (services.msc) and set them to manual or disabled as well as some MSCONFIG options. The ones I need will kick in if I launch the programs. I also turned off disc indexing as I did not know that was such a hog.
    All-in-all besides booting faster performance in Elements has definately improved and quite a bit. As a positive on the side, I use Cakewalk Sonar x64 X1 Pro Expanded and a Presonus 10x10 digital firewire interface and I was occaisonally having some stutter on larger projects. This seems to have resolved that as well.
    So you guys Rock. I do appreciate the help.
    Thanks again,
    Joe..

  • T400 keeps restarting after being re-imaged with Ghost

    I built an XP image with the recovery disks from Lenovo.
    Now I'm trying to dump this image on to other T400's that are straight out of the box and after the image is done loading the laptop will just keep restarting.
    Please help.
    Configuration:
    - hard drive is set to ACHI (defualt)
    - did a full disk image when dumping down.
    I don't get a flashing cursor or error message the laptop will just restart aftee the Lenovo Screen.

    ashaikh, welcome to the forum,
    how did you create the image? Did you capture the 4 boot blocks using the -IB switch?
    There is a tip, a bit old and you can ignore the part about setting the predesktop area to disabled, but it should hopefully help you.
    Partition does not boot after being restored with Norton Ghost
    The title may also not seem to be 100% relevant. The important part is the -IB switch - See this thread.
    Hope this helps
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Bridge CS4 won't output to pdf multiple images with same filename

    Hiya...my googling efforts have thus far failed!
    I've got CS4, and in Bridge, I created a New Smart Collection to find all filenames in a folder containing "." or ".jpg" - which in turn searched through all the subfolders like what you used to be able to do in Photoshop CS3.  Very simple stuff, but all the images are jpg's, but in multiple folders (I don't want to move them out of the folders, as the files came from an external source, and there are heaps of folders, and I don't want to pdf each subfolder seperately as it will take forever).
    The problem is that some of the files have the same filenames (again I'd prefer not to rename, as it happens a lot on this project, and they are all over the place).  So whilst Bridge will show the thumbnail images correctly in the content tabbed screen in my New Smart Collection, but once I've done the Output to PDF thing, for example, instead of showing both different images it has pdf only the first image but repeated it twice.  And this happens multiple times throughout the pdf, the more times the same filename is used, the more times the first image gets repeated.
    I know that it is messy to have multiple similar filenames, but why can't bridge just place the image anyway?  It allocated a space for it on the pdf and does show it in bridge, it just doesn't seem to survive the transfer to pdf well.
    The only other thing that I have done is use the below link (which was posted on another adobe forum thread) to create a custom pdf output template (nothing too fancy, just number of rows / columns, size, font etc).  But I've tried using the standard bridge templates and it does the same thing.
    http://www.proficiografik.com/2009/08/03/save-custom-pdf-output-template-in-adobe-bridge-c s4.html
    Any help would be appreciated...even if to tell me that I am being unreasonable!
    UPDATE 16/11/09
    Just to let you know that I seem to have resolved the bug inadvertently with one of the Adobe updates. The below is the link for the AdobeOutputModule-2.1-mul-AdobeUpdate.zip which was released on 2/19/2009 - which allows for headers & footers to be placed in the Ouput pdf. I finally installed it today, and everything seems to be working fine now (i.e. I can pdf multiple images with the same filenames and the pdf will actually show each different image rather than repeating only 1 of the images).
    Must have been a fix installed in the contact sheet templates that get installed with the update - not sure why the original version was corrupted, but I've left that with the Adobe guys (I submitted a bug report - and they were able to replicate the problem but hadn't fixed it as yet).
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4228
    Message was edited by: djtun71 (16/11/09)

    When I click import from disc I am asked to choose a disc and then I get this message:
    The following photos will not be imported because they are already present in the catalog. To see these photos in the catalog select 'Show in Library' (the import will be canceled).
    This is followed by a long list of images. If I click 'Show in Library' I can see all the images with the same filename. And then they start to automatically write over those images with images from the disc. However they keep the same metadata and keywords from the previous images. If I click on Import and deselect the "don't reimport suspected duplicates" box, it imports only the images that don't share filenames and none of the images that do.
    Is there a way of setting the "Don't reimport suspected duplicates" box in preferences?

Maybe you are looking for

  • Missing permission on DPM Report

    I just reinstalled a DPM server and restored the database. Everything seems to be working, except when I try to viewer the "Tage Management" report. An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data

  • Replication of 'Variant' data from R/3 (ECC) to CRM

    Hi all, We are trying to replicate entries in R/3 tables CAWN and CABN whith Class type '300' (Variant). We have replicated (R3AS) the objects 'Class' and 'Attribute' but cannot find the information in CRM afterwards. The status is in SMW01 is green

  • Multiple Context - Changing http server port

    Hi, Is it possible to change the firewall https port to different port? Normally in single context mode you can change it with this command. http server enable 4434 In multiple context mode there is no option for the port... http server enable ?

  • What is the "catch" in writing Variants to a Binary file?

    I'm saving "event" data associated with an experiment that LabVIEW is "controlling".  The data includes such things as the State of several State Machines, Messages to Queued Message Handlers, digital data from hardware (such as Button Pushes), etc.

  • Scan wirelessly with older macbook

    When I use my Macbook Pro (2011) (MacbookPro8,2) to scan something I just open Printers and Scanners and there is an option there to scan. My dad want to scan something... his macbook is slightly older Macbook Pro (Mid-2009) (MacbookPro5,5) same mave