Photo gallery slide show - automatic start

I have created a web photo gallery in Adobe Bridge and successfully
opened it in my Dreamweaver site, but I want to the slide show to start automatically because it is on my
first page and I don't want people to have to click on the play button. Can someone tell me if this can be done and if so, how?
Thanks

Hi,
I will gladly help you with your problem but please give me a
link to your gallery wither as a private message or by email
([email protected]). The files here pasted are incorrect, look to
the SetSlideShowTimer() or the StartSlideShow() functions above
that are incomplete. Not mentioning that the CSS are really make
the difference.
It will take me more time to try to reconstruct your
structure, not having all the files you reference and probably not
being able to duplicate your problem because the deployment
failure.
Cristian

Similar Messages

  • Can't get photo gallery slide show to work

    Hello,
    If anyone could help, I'd appreciate it. This is for a
    non-profit I work for. After getting the gallery to work, I can't
    get the slide show to work.
    from my gallery.html:
    <title>Photo Gallery</title>
    <link href="../css/screen.css" rel="stylesheet"
    type="text/css" />
    <script type="text/javascript"
    src="includes/xpath.js"></script>
    <script type="text/javascript"
    src="includes/SpryData.js"></script>
    <script type="text/javascript"
    src="includes/SpryEffects.js"></script>
    <script type="text/javascript">
    var dsGallery = new Spry.Data.XMLDataSet ("photos.xml",
    "gallery/photos/photo");
    var dsData = new
    Spry.Data.XMLDataSet("photos.xml","gallery");
    </script>
    <script src="gallery.js" type="text/javascript">
    </script>
    <script src="SpryMenuBar.js" type="text/javascript">
    </script>
    <style type="text/css">
    #main (I'm not incl. details for these - to save space)
    #thumbContainer
    #controls
    #header
    </style>
    </head>
    <script type="text/javascript">
    </script>
    </head>
    <body>
    <div id="header" spry:region="dsData">
    <p>{sitename}<br />
    </div>
    <div id="thumbContainer" spry:region="dsGallery">
    <img src="thumbnails/{@thumbpath}"
    spry:repeat="dsGallery" class="thumbs"
    spry:setrow="dsGallery"/> </div>
    <div id="main" spry:detailregion="dsGallery">
    <img src="images/{@path}" class="images"/>
    </div>
    <div id="controls">
    <ul id="transport">
    <li><a href="#" onclick="StopSlideShow();
    AdvanceToNextImage(true);"
    title="Previous">Previous</a></li>
    <li class="pausebtn"><a href="#" onclick="if
    (gSlideShowOn) StopSlideShow(); else StartSlideShow();"
    title="Play/Pause" id="playLabel">Play</a></li>
    <li><a href="#" onclick="StopSlideShow();
    AdvanceToNextImage();" title="Next">Next</a></li>
    </ul>
    </div>
    <div id="thumbContainer" spry:region="dsPhotos
    dsGallery">
    <p class="ClearAll"></p>
    </div>
    </div>
    <p class="clear"></p>
    </div>
    </body>
    </html>
    Here's the gallery.js file: (didn't include the global vars -
    to save space)
    dsGallery.addObserver(function(nType, notifier, data) {
    if (nType == "onPreLoad")
    StopSlideShow();
    Spry.Data.Region.addObserver("thumbContainer",
    function(nType, notifier, data) {
    if (nType == "onPostUpdate")
    ShowCurrentImage();
    if (gAutoStartSlideShow)
    StartSlideShow(true);
    function SetMainImage(imgPath, width, height, tnID)
    var img = document.getElementById("mainImage");
    if (!img)
    return;
    CancelBehavior("mainImage");
    Spry.Utils.SelectionManager.clearSelection("thumbnailSelection");
    if (tnID)
    Spry.Utils.SelectionManager.select("thumbnailSelection",
    document.getElementById(tnID), "selectedThumbnail");
    if (gImageLoader)
    gImageLoader.onload = function() {};
    gImageLoader = null;
    gBehaviorsArray["mainImage"] = new Spry.Effect.Opacity(img,
    Spry.Effect.getOpacity(img), 0, { duration: 400,
    finish: function()
    gBehaviorsArray["mainImage"] = new
    Spry.Effect.Size(img.parentNode,
    Spry.Effect.getDimensions(img.parentNode), { width: width, height:
    height, units:"px"}, {duration: 400,
    finish: function()
    gImageLoader = new Image();
    gImageLoader.onload = function()
    img.src = gImageLoader.src;
    gImageLoader = null;
    gBehaviorsArray["mainImage"] = new Spry.Effect.Opacity(img,
    0, 1, { duration: 400,
    finish: function()
    gBehaviorsArray["mainImage"] = null;
    if (gSlideShowOn)
    SetSlideShowTimer();
    gBehaviorsArray["mainImage"].start();
    gImageLoader.src = imgPath;
    gBehaviorsArray["mainImage"].start();
    gBehaviorsArray["mainImage"].start();
    function CancelBehavior(id)
    if (gBehaviorsArray[id])
    gBehaviorsArray[id].cancel();
    gBehaviorsArray[id] = null;
    function SizeAndPosition(id, toX, toY, toWidth, toHeight,
    callback)
    CancelBehavior(id);
    var effectCluster = new Spry.Effect.Cluster( { finish:
    callback } );
    var ele = Spry.Effect.getElement(id);
    var moveEffect = new Spry.Effect.Move(ele,
    Spry.Effect.getPosition(ele), { x: toX, y: toY, units: "px" }, {
    duration: 400 });
    var sizeEffect = new Spry.Effect.Size(ele,
    Spry.Effect.getDimensions(ele), { width: toWidth, height: toHeight,
    units: "px" }, { duration: 400 });
    effectCluster.addParallelEffect(moveEffect);
    effectCluster.addParallelEffect(sizeEffect);
    gBehaviorsArray[id] = effectCluster;
    gBehaviorsArray[id].start();
    function GrowThumbnail(img, width, height)
    Spry.Utils.addClassName(img, "inFocus");
    img.style.zIndex = 150;
    var id = img.getAttribute("id");
    var twidth = Math.floor(width * .75);
    var theight = Math.floor(height * .75);
    var tx = (gThumbWidth - twidth) / 2;
    var ty = (gThumbHeight - theight) / 2;
    SizeAndPosition(id, tx, ty, twidth, theight,
    function(b){gBehaviorsArray[id] = null;});
    function ShrinkThumbnail(img)
    Spry.Utils.addClassName(img, "inFocus");
    img.style.zIndex = 1;
    var id = img.getAttribute("id");
    SizeAndPosition(id, 0, 0, gThumbWidth, gThumbHeight,
    function(b){gBehaviorsArray[id] = null;
    Spry.Utils.removeClassName(img, "inFocus");});
    function ShowCurrentImage()
    var curRow = dsGallery.getCurrentRow();
    SetMainImage(dsGallery.getCurrentRow()["@base"] + "images/"
    + curRow["@path"], curRow["@width"], curRow["@height"], "tn" +
    curRow["ds_RowID"]);
    function AdvanceToNextImage(moveBackwards)
    var rows = dsGallery.getData();
    var curRow = dsGallery.getCurrentRow();
    if (rows.length < 1)
    return;
    for (var i = 0; i < rows.length; i++)
    if (rows
    == curRow)
    if (moveBackwards)
    --i;
    else
    ++i;
    break;
    curRow = rows;
    dsGallery.setCurrentRow(curRow["ds_RowID"]);
    ShowCurrentImage();
    function SetSlideShowTimer()
    function KillSlideShowTimer()
    function StartSlideShow(skipTimer)
    gSlideShowOn = true;
    if (!skipTimer)
    SetSlideShowTimer();
    var playLabel = document.getElementById("playLabel");
    if (playLabel)
    playLabel.firstChild.data = "Pause";
    function StopSlideShow()
    gSlideShowOn = false;
    KillSlideShowTimer();
    var playLabel = document.getElementById("playLabel");
    if (playLabel)
    playLabel.firstChild.data = "Play";
    function HandleThumbnailClick(id)
    StopSlideShow();
    dsGallery.setCurrentRow(id);
    ShowCurrentImage();
    Thank you.

    Hi,
    I will gladly help you with your problem but please give me a
    link to your gallery wither as a private message or by email
    ([email protected]). The files here pasted are incorrect, look to
    the SetSlideShowTimer() or the StartSlideShow() functions above
    that are incomplete. Not mentioning that the CSS are really make
    the difference.
    It will take me more time to try to reconstruct your
    structure, not having all the files you reference and probably not
    being able to duplicate your problem because the deployment
    failure.
    Cristian

  • Slide show auto start

    trying to figure out how to have a simple slide show automatically start when someone goes to my iweb site. Any suggestions would be greatly appreciated

    Mark ~ For a suggestion of how to create a simple slideshow, see this old thread:
    Once you've got your slideshow movie on your iWeb page, to make it automatically start, in iWeb's +Inspector > QuickTime+ tab check the Autoplay option.

  • Auto start flash gallery slide-show

    Is there a way to to have a flash based web gallery slide show created in Photoshop CS 3. I have looked in the preferences and so on and can't find anything in PS help files.
    Gerhard

    Sure,
    Hit File > Automate > Web Photo Gallery. After that just follow the basic wizard and let it run. It will create all the .xml files and thumbnails for you.
    Jay

  • HT201317 My photostream in windows 7 PC does not shows any pic. when i click on slide show it start showing me slide shows of pic but when i try to copy files i cant do as no photo is viewd in list mode. This problem has arised since IOS is updated.

    My photostream in windows 7 PC does not shows any pic. when i click on slide show it start showing me slide shows of pic but when i try to copy files i cant do as no photo is viewd in list mode. This problem has arised since IOS is updated.I reinstalled my icloud and checked if icloud sharing is ON. I can see pic in my photo stream in PC only in slide show mode. While in list mode it shows pics before i actually click on photostream folder. My phone memory is out becose of bunch of photoes. How do i copy my photostream photoes.

    Hi all.  I can’t tell you how to solve your iCloud 3.x issues.  Heck, I don’t think they’re even solvable.
    But if you had a previous version of iCloud that was working correctly then I can definitely tell you how to solve the “iCloud Photo Stream is not syncing correctly to my Windows 7 PC” problem.  …without even a re-boot.
    Log out of iCloud 3.0 and uninstall it.
    Open My Computer and then open your C:\ drive.  Go to Tools/Folder Options and click on the View tab.  Select the “Show hidden…” radio button and click on OK.
    Open the Users folder.
    Open your user folder
    Open ProgramData (previously hidden folder)
    Open the Apple folder – not the Apple Computer folder.
    Open the Installer Cache folder
    In Details view sort on Name
    Open the folder for the newest entry for iCloud Control Panel 2.x – probably 2.1.2.8 dated 4/25/2013
    Right click on iCloud64.msi and select Install.
    When finished, the synching between iCloud and your PC will be back to working perfectly as before the 3.0 fiasco.  The pictures will be synched to the same Photostream folder as before the “upgrade”.  Now all you need to do is wait until Apple/Microsoft get this thing fixed and working before you try the 3.x upgrade again.
    I think the iCloud 3.0 software was written by the same folks who wrote healthcare.gov with the main difference being that healthcare.gov might eventually be made to work.
    For those of you who hate to go backwards, think of it as attacking to the rear.  Which would you rather have, the frustration of no synching or everything working on an older version?
    Good luck…

  • Web Gallery Slide Shows:  Music and Captions an option?

    The title sums up the question. Can web gallery slide shows (on my .Mac account) be made to look and sound like the slide shows i'm running in iphoto - with captions and audio?

    Mark:
    You can get the captions to be displayed in the web gallery by running this script to move the description to the title field before you publish the gallery. After the gallery is published you can change the title back to the file name with the Photos->Batch Change menu option.
    Have you considered using iWeb to create a photo page/slideshow and add the music to it. Here's a test page of such a setup. Be sure to read all of the comments on the linked page as there's a minor error noted in the script that is easy to correct.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) 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 created an Automator workflow application (requires Tiger or later), 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 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • AppleTV: How can I see what song is playing if I am viewing my photos in slide show mode on Apple TV and streaming from my iTunes?

    How can I see what song is playing if I am viewing my photos in slide show mode on Apple TV and streaming music from my iTunes?
    Thanks.

    Thank you Winston. I guess we need to ask that this feature gets added at least as an option in an upcoming release. When someone is using shuffle, it helps to know what is playing while viewing pictures.
    Where is my Apple request button when one needs it ? :-) Cheers, C

  • Extension for gallery/slide show

    I am looking for a versatile gallery/slide show extension that is completely independent of Flash - ie will not require Flash Player for display (curse iPad) - . Any suggestions please?

    Hello,
    Below are some links where you can be downloading these extensions is utilized in your project. Extensions are related to free allSlideshow jQuery technology is utilized, with no flash use and have used the same used in my projects.
    Links
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1695028
    http://www.flevooware.nl/dreamweaver/mxp/Behaviors/LinkedSlideShow/example.html
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1165474
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2141541
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2141543
    Any questions please contact us.
    Sincerely;
    Eufrasio Rodrigo Vieira da Silva
    [email protected]
    www.gotejar.org
    Web Developer
    Brazil - Osasco - SP

  • PSE 7: How do I turn off the automatic text insertion on photos in slide show

    When I create a slide show, PSE 7 creates text on each slide that states my cameras name: "SAMSUNG DIGITAL CAMERA" How do I turn-off this feature?  

    In the settings dialogue when you start the slideshow, uncheck the "Include Captions" box.

  • Full Screen Photos In Slide Show & Other Questions

    Hi - I'm using Premiere Elements 4. I have a few questions since I'm new to using the program. First of all, how do I get the photos to take up the whole screen (instead of showing a black border) when they are played back? They were taken on a 7.2 megapixel camera at the maximum quality setting. Also, the resolution is bad when it's played back but fine when you see the preview of the photos in the program. I've seen other posts about needing to change the resolution but I was wondering if I got the photos to play full screen if that might fix my problem because I can play the photos as a slide show in the Windows Photo Gallery Program and the resolution is perfect and the photos take up the whole screen.
    Secondly, how do I delete a menu from the Disc Menus Section? Also, how would I delete the "Scene Selection" button from the menu screen that I want to keep? I want to be able to have a menu with just a "play all" button.
    Thanks for your help.

    The only way to remove Scene Menu button from Disc Menus is to physically remove it from the template by editing it (They're PSD files) in Photoshop Elements.
    As for photos, DO NOT use photos from that 7.2 megapixel camera at full resolution, niagara. It's a sure recipe for disaster. RAther, per the FAQs at the top of this forum, rez those photos all down to no larger than 1000x750 pixels in size.
    http://www.adobeforums.com/webx/.3bb8822c
    That done, you can get your photos to fill your screen one of two ways:
    a) Leave the Default to Frame Size option checked in your preferences. The only case in which this won't work is if you're using 4:3 photos in a 16:9 widescreen project.
    b) If this is the case, go to Edit/Preferences and uncheck Default to Frame Size BEFORE you import that photos into your project. (It won't work if you do it after.) Then, after placing each photo on your timeline, right-click on each, select Show Properties and, in Properties, open Motion and set Scale to 85%. Note that, because your photos and the widescreen have different aspect ratios, you will lose some of the vertical off the tops and bottoms of your photos.
    There are many more ways to do it -- but it all depends on what you're trying to accomplish.

  • Gallery Slide Show

    Just downloaded the new software update.  Is there any way to STOP the gallery photo slide show set to music ?  Besides a hammer.

    The only options are 1) the type of music and 2) the volume.

  • Photo Gallery not showing photos in computer Web browser

    None of my photo gallery photos are showing up in a computer's Web browser?  They show up fine when you click "View Web Journal in Safari" on an iPad 2, but when I publish them to iCloud and Share the Web Journal Link, the photos don't show up??  It's happening with all of my Journals.  It doesn't work on a Mac or Windows?  What gives??
    You try it:https://www.icloud.com/iphoto/projects/#1;CAEQARoQdoVWsxptdYjcSQD-Rg1QVg;B692688 8-A220-4FF7-848F-6383BB15A5DB

    Arrrrrrrrrrrrrrrrgh, matey. They all show for me in Safari but require several page refreshes to get them all to display.  Those that don't display will if I click on it and then go back to the page.  However, when retuning to the first page will put be back at square one and require multiple refreshes to get them to display, but not always.
    Also, the page links are all messed up.  Clicking on them just returns me to the first page. If I Option click on a page link from Page 1 I will get to the right page. 
    I am unable to get Firefox or Chrome to work at all on your gallery. 
    Send a bug report to Apple via http://www.apple.com/feedback/iphoto.html.  You can include the URL to this topic in order to include my comments and findings.
    OT

  • How do I only show thumbnails in the photo gallery without showing the Main Image?

    Hello,
    I need help customizing the Spry Photo Gallery Demo...
    I would like for the Main Image To Be Hidden when the html
    page loads. After the user clicks the thumbnail, I would like to
    have the Main Image load centered on the page(with div containing
    close button) on a z-index above the thumbnails. While the
    thumbnails layer has a fade effect to 10%. After the user clicks
    the close button the Main image disappears and the thumbnails layer
    fades back to 100%. Then the user can click another thumbnail and
    so on and so forth...
    Is this possible? I have tried everything I can think of with
    my limited knowlege of spry and cant get it to work. I just need
    help with the Large image part. The close button and fades I can
    handle.
    Any help would be most appreciated. Please let me know if
    further information is needed from me. Thank you in advance.

    There is a third-party program called Attachment Tamer that will do that for you.  In the Terminal, you can type this:
    defaults write com.apple.mail DisableInlineAttachmentViewing -bool yes
    Also note that while Attachment Tamer does some things with the encoding that makes certain email clients display the item as an attachment, what shows up at the receiver's end is solely dependent on their email client and its settings.

  • I have a photo PDF slide show in an email. How do I get the photos into my camera roll on iPad ?

    I have a photo slide show PDF file in an email. How to I transfer the photos in my camera roll on my iPad?

    Well I guess you can press cmd + shift + 3 to take a picture of your whole screen or cmd + shift + 4 to take a picture of a selected area, that will create a file called "screen shot yyyy-mm-dd at hh:mm:ss.jpg" on your desktop then you just select those files and drag them into iPhoto.

  • Need help rotating photo in slide show...buttons aren't highlighted

    I'm trying to create a slide show in Photoshop Elements 5.0. For some reason some of the pictures are showing up in my slide show with the wrong orientation. When I click on the picture, the buttons on the right side that allow you to rotate and do more editing won't highlight. Any tips would be helpful. Thanks!

    Some questions to hopefully help us understand what is happening -
    What is the file format of the files where photo shows in the wrong orientation and the buttons to rotate and edit are not available? - For example - are they jpg or psd or tif ? Are these portrait photos that are shown laying on their side?
    Did you add these photos to the slide show from the Organizer or from a Windows folder? Some people have reported that not all functions are available to them when the photo is added to the slide show from a Windows folder.

Maybe you are looking for