Photo Caption Link to YouTube?

I was unsuccessful in linking a photo caption in an album to a corresponding video on YouTube. Can it be done? Can you think of a good alternative? Thanks - Fabe

You could try Video Lightbox......
http://www.iwebformusicians.com/PromoPage/VideoLightBox.html
It works the same kind of way that Visual Lightbox does.....
http://www.iwebformusicians.com/PromoPage/VisualLightBox.html
"I may receive some form of compensation, financial or otherwise, from my recommendation or link."

Similar Messages

  • Photo caption links in xml

    hi......i was wondering if anyone had ideas on how to display
    links from the xml file?.....i have some photos with corresponding
    captions and links, but have had a hard time figuring how to make
    the links active on the page.......was looking into xlink, but
    heard that IE doesn't support this.......any ideas, or examples
    that might help figure this out?
    thanks,
    emile

    thanks Donald.....hadn't tried that, that works pretty well
    and is really close to what would like to do.......one complication
    is that basically the individual enlarged photos in the album i'm
    trying are either in sets of 1 or 2 images........when u have only
    one image and one link displayed at a time, the link column works
    great.....but when there are two images and two links together - am
    not sure how to get this to work......i tried to make two link
    columns, which worked for the double images, but then on the single
    images one of the links would be undefined........does that make
    sense?......here's a link to the gallery if it might help:
    http://www.00-00.org/0-0/00/0/00-0.html

  • How do I link Photo Title and Photo Caption in iPhoto Book

    When using the yearbook template in iPhoto I have found that the Title is not linked to the photo Captions are linked most of the time, so if I move a photo I have to reset all the titles. How can I link them?

    hi Jim,
    Are the titles that are not moving ones that you gave the photos while you were in the book mode?
    I was just wondering if you gave the titles to the photos in the library view if it would work differently.
    Ok, I just tested it. Before you make the book, give all the photos the correct titles and comments if any. Now highlight that album and choose to create a book. The titles and comments will move with the images this way.
    I also tested an image that was already placed in the book and it had a title that it was imported as. I changed the title in the library view, went back to the book and moved the photo. The title that I just gave it in the library view moved with the photo.

  • How to move the Thumbnails & the photo caption to top in Galleria

    I am working on a click-able gallery using the coding found on jQuery Galleria 1.0b from
    http://galleria.aino.se/
    Similar coding can be found on here;
    http://monc.se/kitchen/146/galleria-a-javascript-image-gallery#comments
    I would like to move the thumbnails and the photo captions to the top, rather than having it at the bottom. Much apperciated any help. I cannot read coding as i am new to these things. My HTML coding as follows;
    <link href="test/galleria.css" rel="stylesheet" type="text/css" media="screen">
        <script type="text/javascript" src="test/jquery.min.js"></script>
        <script type="text/javascript" src="test/jquery.galleria.js"></script>
        <script type="text/javascript">
        $(document).ready(function(){
            $('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
            $('ul.gallery_demo').galleria({
                history   : true, // activates the history object for bookmarking, back-button etc.
                clickNext : true, // helper for making the image clickable
                insert    : '#main_image', // the containing selector for our main image
                onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
                    // fade in the image & caption
                    image.css('display','none').fadeIn(1000);
                    caption.css('display','none').fadeIn(1000);
                    // fetch the thumbnail container
                    var _li = thumb.parents('li');
                    // fade out inactive thumbnail
                    _li.siblings().children('img.selected').fadeTo(500,0.3);
                    // fade in active thumbnail
                    thumb.fadeTo('fast',1).addClass('selected');
                    // add a title for the clickable image
                    image.attr('title','Next image >>');
                onThumb : function(thumb) { // thumbnail effects goes here
                    // fetch the thumbnail container
                    var _li = thumb.parents('li');
                    // if thumbnail is active, fade all the way.
                    var _fadeTo = _li.is('.active') ? '1' : '0.3';
                    // fade in the thumbnail when finnished loading
                    thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
                    // hover effects
                    thumb.hover(
                        function() { thumb.fadeTo('fast',1); },
                        function() { _li.not('.active').children('img').fadeTo('fast',0.3); } // don't fade out if the parent is active
        </script>
        <style media="screen,projection" type="text/css">
        /* BEGIN DEMO STYLE */
        *{margin:0;padding:0}
        body{padding:20px;background:white;text-align:center;background:black;color:#bba;font:80% /140% georgia,serif;}
        h1,h2{font:bold 80% 'helvetica neue',sans-serif;letter-spacing:3px;text-transform:uppercase;}
        a{color:#348;text-decoration:none;outline:none;}
        a:hover{color:#67a;}
        .caption{font-style:italic;color:#887;}
        .demo{position:relative;margin-top:2em;}
        .gallery_demo{width:702px;margin:0 auto;}
        .gallery_demo li{width:68px;height:50px;border:3px double #111;margin: 0 2px;background:#000;}
        .gallery_demo li div{left:240px}
        .gallery_demo li div .caption{font:italic 0.7em/1.4 georgia,serif;}
        #main_image{margin:0 auto 60px auto;height:438px;width:700px;background:black;}
        #main_image img{margin-bottom:10px;}
        .nav{padding-top:15px;clear:both;font:80% 'helvetica neue',sans-serif;letter-spacing:3px;text-transform:uppercase;}
        .info{text-align:left;width:700px;margin:30px auto;border-top:1px dotted #221;padding-top:30px;}
        .info p{margin-top:1.6em;}
        </style>
    </head>
    <body>
    <h1>Galleria Demo 01</h1>
    <div class="demo">
    <div id="main_image"></div>
    <ul class="gallery_demo_unstyled">
        <li><img src="test/img/flowing-rock.jpg" alt="Flowing Rock" title="Flowing Rock Caption"></li>
        <li><img src="test/img/stones.jpg" alt="Stones" title="Stones - from Apple images"></li>
        <li class="active"><img src="test/img/grass-blades.jpg" alt="Grass Blades" title="Apple nature desktop images"></li>
        <li><img src="test/img/ladybug.jpg" alt="Ladybug" title="Ut rutrum, lectus eu pulvinar elementum, lacus urna vestibulum ipsum"></li>
        <li><img src="test/img/lightning.jpg" alt="Lightning" title="Black &amp; White"></li>
        <li><img src="test/img/lotus.jpg" alt="Lotus" title="Fusce quam mi, sagittis nec, adipiscing at, sodales quis"></li>
        <li><img src="test/img/mojave.jpg" alt="Mojave" title="Suspendisse volutpat posuere dui. Suspendisse sit amet lorem et risus faucibus pellentesque."></li>
        <li><img src="test/img/pier.jpg" alt="Pier" title="Proin erat nisi"></li>
        <li><img src="test/img/sea-mist.jpg" alt="Sea Mist" title="Caption text from title"></li>
    </ul>
    <p class="nav"><a href="#" onclick="$.galleria.prev(); return false;">&laquo; previous</a> | <a href="#" onclick="$.galleria.next(); return false;">next &raquo;</a></p>
    </div>
    The CSS coding as follows;
    .galleria{list-style:none;width:200px}
    .galleria li{display:block;width:80px;height:80px;overflow:hidden;float:left;margin:0 10px 10px 0}
    .galleria li a{display:none}
    .galleria li div{position:absolute;display:none;top:0;left:180px}
    .galleria li div img{cursor:pointer}
    .galleria li.active div img,.galleria li.active div{display:block}
    .galleria li img.thumb{cursor:pointer;top:auto;left:auto;display:block;width:auto;height:auto}
    .galleria li .caption{display:block;padding-top:.5em}
    .galleria_main div{display:none;}
    .galleria_main div.active{display:block;}
    * html .galleria li div span{width:400px} /* MSIE bug */

    Looks like you are talking about taskbar, See:
    * http://www.sevenforums.com/tutorials/1066-taskbar-move-location-desktop-screen.html

  • Photo Caption text can't be hyperlinked

    I posted earlier about this problem and yesterday I spoke, at length, to Apple Tech. Here is their answer:
    When you are building your website with iWeb, and you chose the photo page to hold photos the photo captions (the text under the photos) can not be turned into a hyperlink that works when you are viewing the photo as a full screen single image. Although you can build the hyperlink while using iWeb, and that hyperlink will work in the testing phase, once published, that link will no longer work.
    That hyperlink you made in the photo caption text will only work as a hyperlink if you are viewing your photo page in the "album view" with a page of thumbnail images. If the text you made into a hyperlink is visible while viewing that page in a photo album view, that text WILL hyperlink. But if you click on that thumbnail to enlarge, the hyperlinked text will no longer work as a hyperlink.
    Fixing this bug entails digging into the html code of that photo page.
    I sent Apple Feedback a post asking them to fix this bug.
    Panther

    Have you tried Cmd+X and then Cmd+F on the text object?
    (Read Ctrl instead of Cmd if you’re on Windows.)

  • Photo Caption into Hyperlink

    Hi Everyone,
    Earlier today, while working in an iWeb photo template page, I attempted to make one sentence of the photo caption into a hyperlink. The inspector would not respond to the highlighted text. Is it possible to link a caption or am I just missing some simple step?
    Thanks
    iMac 24, 2.33 Intel core duo with 2 GB SD-Ram   Mac OS X (10.4.8)  

    iweb doesn't allow photo (in photo grid) and photo
    captions to be hyperlinked.
    The work around is overlaying graphic shape or text
    box over the caption, set opacity to 1%, then add
    hyperlink to it.
    Thanks for providing me with an easy work around.

  • When ever I try to watch any video, from a link or YouTube say, using Firefox, I get a message 'An error as occurred. Please try again later'. It has been this way for some weeks. I don't have this problem using Safari or Opera.

    When ever I try to watch any video, from a link or YouTube say, using Firefox, I get a message ‘An error as occurred. Please try again later’. It has been this way for some weeks. I don’t have this problem using Safari or Opera.

    I believe that our “Werbung problem” adds an additional second hyperlink to the pop-up window. This second link is activated whenever you trigger a saved hyperlink to a Mail.com site.
    I had the same problem and eliminated it by deleting all bookmarks, hyperlinks and automatic links that take firefox to a mail.com address. So I just deleted all bookmarks I had saved for mail.com. I also changed my home page link because it also went to my email at mail.com. I then did a warm boot, opened firefox and re-saved my bookmarks and homepage to the desired addresses. Good luck.

  • Photo captions in iWeb

    Greetings,
    I'm just creating my first site using iWeb but I am having trouble with photo captions. I am using a blank template and inserting photos into the text with a wrap round. that's fine. However, I can't work out how to put captions under the photos. I've tried using a text box but it won't drag up close to the photo,because  some of the handles remain white and the text on the page moves away from the box so it looks bad. . I've searched through help but can't find an answer there.
    If anyone has any thoughts I'd be grateful

    Your problem is that you cannot follow instructions even when they are spelled out.
    The instruction is not to DROP an image on the textbox, the instruction is to PASTE the image in the textbox.
    UPDATE:
    Here s a picture.
    1. A picture
    2. The picture in the textbox with a caption.
    3. The picture in the textbox with a caption inside a textbox with your text wrapped around it.

  • Best way to create slide show with last photo having links

    What are some of the best ways to create a slide show (more like a season greeting flash) with the last photo having links and buttons for the viewer to click?
    I already have the code for the slide show. What I need now is how do I reference or point to a keyframe that contains the last slide as the background with buttons and hyperlinks? Perhaps, I also need a way to not showing this slide until the last? How do I do that? This last slide with buttons and links are on it's own layer.
    The other route would be to create the buttons and hyperlinks in the AS3 code instead of design time. If so, how do I do on the last slide?

    What are some of the best ways to create a slide show (more like a season greeting flash) with the last photo having links and buttons for the viewer to click?
    I already have the code for the slide show. What I need now is how do I reference or point to a keyframe that contains the last slide as the background with buttons and hyperlinks? Perhaps, I also need a way to not showing this slide until the last? How do I do that? This last slide with buttons and links are on it's own layer.
    The other route would be to create the buttons and hyperlinks in the AS3 code instead of design time. If so, how do I do on the last slide?

  • When I create a photo stream in ios6, everyone who is logged in to my iCloud account can see and edit my stream (on their iPhones only). Not just the email addressees that I sent the photo stream link to. Is that how photo stream security is meant to work

    When I create a photo stream in ios6, everyone who is logged in to my iCloud account can see and edit my stream (on their iPhones only). Not just the email addressees that I sent the photo stream link to. Is that how photo stream security is meant to work? Is so it means my whole family can see any photo stream I set up. Hence no security? Can't share the pics with the wife then :(

    The whole idea to an icloud account is that one user uses it and has all their devices synced together.  Different users need different Apple IDs to create their own icloud accounts.  Note that everyone can still use the same ID for an iTunes account (to share purchases).
    To create a new icloud account, go to
    http://www.apple.com/icloud/setup/

  • Lightroom 5.0 on Windows 7 - Photo Caption problem in Book Module

    Using Lightroom 5.0 on Windows 7, I have produced a 76 page book in the Book Module with multiple photos on most pages, but two photos were not showing their captions, and did not print same in a proof PDF print run. I had the photo captions in the Meta Data, but have subsequently entered the pertinent photo caption via Custom Text from the left control panel, and also directly into the photo caption print box without success. I have changed the photo size, without a successful outcome, but when I did an auto cell fill of the photo the caption appeared within the photo, but disappeared when sizing was reduced back. I have exhausted all help avenues at this stage.

    Frustrated Beginner wrote:
    Thanks for your input and efforts to assist. I have resisted removing and replacing, as the 1966 passport photo has a lengthy (approx 60) adjustments showing in the history, as a result of its age. Hence I think that I will just have tolerate these somewhat minor, I suppose, aberrations and just send it off to Blurb as is, as restoring so many old photos to a more presentable print status has taken me 3 months as it is.
    I don't understand why this a problem. You are removing a page from the book and adding back again. You are not removing the photo from the catalog, therefore you would not loose you are adjustments. Books are just another way of rendering photos.

  • Photo cutlines / photo captions

    Greetings.
    I discovered an easy css technique for laying out pages with
    photos and captions -- cutlines in newspaper lingo:
    http://max.limpag.com/2006/10/15/better-photo-presentation-in-your-website-in-2-easy-steps /
    I didn't see captions or cutlines in any search topics here,
    so I thought I'd add it.
    If anyone else uses a different technique for photo captions,
    feel free to add it to this thread.
    Bruce

    the SEARCH option does miracles
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1298486&highlight_key=y&keyword1=caption

  • IWeb photo captions published via ftp?

    I'm new to iWeb - are photo captions published via ftp now that MobileMe is defunct?  The info in Publish Site says no.  As I wish to use photos purchased and downloaded from a stock agency, they must be captioned with the photographer's name.  I can work around this by acknowledging the photographers in a list above the Album I've created rather than under each photo (if this proves to be acceptable to the stock agency), but this isn't ideal.  Thanks for any advise you can offer.

    Captions added to the images inside a photos template are published no matter where you publish your website.
    The number of caption lines is chosen in the photo Grid popup window...

  • Can I write photo captions in Elements 12 and upload the Photo to Revel, keeping the same Caption?

    Can I write photo captions in Elements 12 and upload the Photo to Revel, keeping the same Caption?

    Yes. Even if you edit Captions post uploading to Revel from Elements Organizer, the updated caption syncs to Revel.
    Thanks
    Andaleeb

  • IWeb Photo Captioning from Aperture Metadata

    I'm not sure if this should be under iWeb or Aperture. I use Aperture 2.1 and iWeb '08 2.0.3. In iWeb I have albums of photos from Aperture. When using the media browser for adding Aperture photos into iWeb, the standard nomenclature is for the iWeb caption to use the Aperture 'Version Name'. Since iWeb can be set to have more than one caption line, I was wondering if there was a way to map Aperture metadata into the multiple lines of iWeb photo captions? As it is, any additional iWeb caption lines have to be added manually. Can this additional caption information be added automatically?

    I'm banging my head on this too.. I prefer to use iWeb for several reasons: one is that I publish to a non-Apple webhost; and I prefer the editing capabilities of iWeb vs Aperture/iPhoto -- plus the templates are more varied.
    It's hard to believe that Apple doesn't provide this extremely basic capability. I've noticed other threads on this & it doesn't seem that it's possible.
    Randy

Maybe you are looking for