"Image Viewer" slide show wont work.

I am trying to do somthing very simple...creat a slide show using the image viewer option in Dreamweaver.  After uploading the Image "urls" it wont even play within dreamweaver.  What could be the problem?

1.  Have you uploaded the Scripts folder to the remote server... because if you try and view it, there's an error message that it can't be found:
The requested URL /http://www.thebloomsociety.net/Scripts/AC_RunActiveContent.js was not found on this server.
2.  This link: index/slide show.swf
The requested URL /index/slide show.swf was not found on this server.
Validation errors for the page can be found here:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.thebloomsociety.net%2F

Similar Messages

  • How do I move Elements 8 projects (slide shows) from a Windows XP computer to new Windows 7 computer that also has Elements 8 on it so that the slides shows will work (Elements 8 works well on the Windows 7 computer & I have done several new slide show pr

    How do I move Elements 8 projects (slide shows) from a Windows XP computer to new Windows 7 computer that also has Elements 8 on it so that the slides shows will work (Elements 8 works well on the Windows 7 computer & I have done several new slide show projects on it)?    I tried backup & restore without success.  I have also found the .psess files and copied them to the catalog in the new computer but when the sides shows are opened none of the images or music is there.  Only the text that I entered shows.  I have even tried to replicate the file paths from the XP computer to the new computer to see if that will help.

    UPDATE:  By a stroke of luck I happened to find a catalog link (a PSE8D file) in the 'My Catalog' file where the imported data was stored.  When I clicked on it to investigate what is was 'magically' all of my transferred projects appeared in Organizer.  Upon further investigation I found that the projects transferred from my XP computer were stored in a hidden catalog that had to be accessed through the Custom Location option in Catalog Manager (accessed by clicking File then Catalog then Custom Location).  No Windows or Elements search revealed this fact.  I am appreciative that I just got lucky.  The Adode/Photoshop company was absolutely of no help.  If fact to me their structure is designed to avoid contact with their customers unless you're buying a new product.  Their products have many good features (even though user unfriendly) and it's a shame they don't value their customers more once the sale is completed. 
    Bottom line:  All of the projects (sideshows) have been recovered and work in my new Windows 7 computer.  I hope my experience helps others. 

  • 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

  • PowerPoint Shuts Down When View Slide Show

    I am using Office 2004 and when I try to View Slide Show, the program shuts down. It just started doing this. Have had it 2-1/2 years. I used Disk Repair. I Removed Office and Reinstalled. And, it still is doing that. Any suggestions?

    Office I believe has a repair tool somewhere hidden in one of the folders.
    On another note, have you ever tried iWork's Keynote? You can do more stunning presentations and working with media is much easier than PowerPoint. Also, you can export to PowerPoint if you need to. But some advanced features PowerPoint won't be able to support.
    I've kicked my MS habit and no longer use Office, even though I have Office 2008. I'm all iWork now.
    Bryan

  • Why does slide show stop working?

    When I was creating tablet version layout from desktop layout, the slide show stopped working. Do you know why?

    Seems odd, it should work. I would do a test. Add a new slideshow widget onto the tablet layout, leaving the images that Muse has and test to see if that works. If it does then there is an issue with the file you are coping in.

  • How do I get Flash animated slide shows to work on iPads, iPods, and iPhones?

    How do I get Flash animated slide shows to work on iPads, iPods, and iPhones?
    I'm using a PC. Web Site Flash generated slide show works fine on PC's.
    Does not work on Apple platforms.
    What do I use to to enable animated slide shows to work on Apple platforms?
    cliffordf51127948

    Hello,
    Flash Player is only supported on Apple OS X systems (10.6 - 10.10).  It is not, and has never been, supported on any i-Devices.  There are no plans to support these platforms.
    Maria

  • Subscibe and View slide show links now appear on upgraded site

    Subscibe and View slide show links now appear on my upgraded site ( from the previous version of iweb. Does anyone know how to get rid of them?

    Go to the "photo" inspector "photo" page and uncheck the "Allow visitors to subscribe" box.
    Click the "slideshow" button and uncheck the "enable slideshow" box.

  • IPhoto slide show stopped working, just showing the first chosen picture, the same with the sound. iPhoto 9.5.1(902 17), MacBook Pro and Maverics. How to solve this problem?

    iPhoto slide show stopped working, now showing just the first chosen picture, and the same with the music. iPhoto 9.5.1 (902.17), operating system Maverics 10.9.2
    How solve this problem?

    There's a bug with iPhoto 9.5 and Mavericks in that slideshows from Albums do not play correctly if they are sorted manually.  Only photos that have been sorted by date, keyword, rating or title will play from albums correctly.
    To have a slideshow with photos sorted manually use the slideshow mode in iPhoto.
    Send a bug report to Apple viahttp://www.apple.com/feedback/iphoto.html.
    OT

  • How do I create image pushing slide show in Flash?

    Hi. I am wondering if anybody can tell me how to create a picture PUSH. I have three images that I wish to work with. By pushing I mean having an image come in from the left (or right) and place itself on top of the other (or pushing the other out of view). Like a slide show of three images scrolling along but one stops for a brief period before the other image comes into view.
    Any help would be appreciated. Thanks!!!

    As Pat mentioned, this question might be best suited for the Flash Professional forum, I just happen to have the link handy
    Thanks,
    Chris

  • Invalid Token while viewing Slide Show Component in Design Mode

    Hi Guys,
    I am having an issue where my SWF files that appear in a slide show component are displaying an invalid token error while in design mode in Xcelsius.  When I export the SWF file to Infoview, this error flashes on the screen for a second before the logon token is passed and the child SWF is loaded.
    I am trying to find a way to solve my issue so the invalid token error message does not appear and therefore does not get flashed to the user before the file actually loads.
    I downloaded Fix Pack 1 for SP3 because there was a line in the fixed issues detailing:
    "An Invalid logon token message appeared in Infoview when you viewed Flash objects (SWF files) that contain a QaaWS or Live Office connection."
    "This issue has been resolved".
    It is still happening even with FP 1 installed.
    Has anyone ever encountered this issue before and found a solution for it.
    Thanks in advance!!
    - Anthony

    Ok, I found out it has definitively something to do with the "Design mode could not load swiz-framework-1.0.0-RC1.swc. It may be incompatible with this SDK, or invalid. (DesignAssetLoader.CompleteTimeout)" warning. This somehow affects the loading of the mx:Image.
    Recompiling the SWC might work with the swiz swc, but there are more swc's giving this error like the google maps swc which does not have the source avalable freely.
    This is a real pain as I like to use a mockup image in Design Mode to place components exactly as provided by the design team.

  • IDVD won't create thumbnail images in slide shows

    In a slide show, the window that used to show the photos in a slide show no longer renders thumbnails in the list or grid views. The status at the top of the window just sits there and spins forever, with the text "Creating thumbnail images...." Anyone know of a workaround?

    Neither of these "fixes" has changed anything. I also cleared my cache, ran a diagnostic check, and a virus/trojan scan! Either way, firefox 4 is just not working up to my needs! Should, or can I go back to 3.6?

  • Missing images in slide shows?

    does anyone know why some jpgs disappear after a few days in keynote files? I create slide shows and import images, save the files and everything seems fine. A few days later when I return to the document, some images are missing, with just a question mark and a gray rectangle remaining. Text below is still there. This can happen to four or five slides out of 30 in a document. It is very annoying and doesn't give me much confidence in the program.

    I have been having this problem alot. I design slides on my laptop at home and transfer them via cd or jumpdrive to the computers on show site. More often than not, I spend the first day fixing many broken links to images and movies. Fortunately, I know this will happen so I bring all my assets with me. If I thought I could just bring the Keynote file (like I should be able to) I would be SOL. This especially scares me when I design the slides but someone else works with them on site. They probably won't know what to do when the assets go missing.
    This last show, I also had a few corrrupt movies causing Keynote to crash. The original movies themselves are fine, it's whatever got saved to the archive. If I simply selected the thumbnail or master of the slide containing the movie in edit mode, Keynote would crash. I had to create a new Keynote file, copy into it all the good slides and redo the crashing ones. Very frustrating. Once I had all my Keynotes straightened out on the show computers, they ran fine.
    Something just isn't very robust with the creation of the Keynote archives.

  • Exporting Aperture 3 slide show to work on TV

    Hi I've created a slideshow with music but can't seem to export it to work on a television (in the UK this is)
    I've tried both HD versions and ,just as a chance Apple tv. Any Ideas where I'm going wrong welcome.
    It plays fine on a pc or mac.
    Richard

    When you exported your slide show what option did you select, when you view it on your computer what app are you using to view the slide show.  Try importing it into iTunes if you have not done that then try to watch it via Apple TV, Or you can make a DVD or the show in iDVD. 

  • Distorted images in slide show creation.

    Hello,
    I created a slide show using high res image files and adding music files.
    I noticed that while viewing the show in full screen and even after outputing the sllide show to a cd, all the images are distorted.
    Any suggestions as to what I am doing wrong?
    Thanks,
    scephotog

    It happened to me the same but after a while not using it, it disapeared. So I don't recommand this method but I noticed I had everything closed after that when I was creating slide show.

  • Trying to get simple slide show to work.

    Can anyone tell me why this simple slide show isn't working on the left side of my page? The black and white image should be changing and showing two other images every 2.5 seconds.
    http://friendsoflafayette.org/andreas01_orig/index.html
    Thanks,
    John

    Assuming you're following these steps
    http://www.javascriptkit.com/howto/show2.shtml
    You seem to have omitted the name attribute in the <img> tag described in Step 3.
    I'm still not sure if that fixes it but see how you go.

Maybe you are looking for