Spry gallery with filmstrip wont display images??

i am currently making a photography website so i am trying to insert the spry gallery widget however once i have inserted it and got it in the right position i cant seem to get the images to show.
i have clicked on the two links in the properties box at the bottom and linked them to the images in my site folder but they still wont show in live view or safari browser any help would be appreciated.
Thanks
Declan

Sorry, but without a link to your online page, it's a time-wasting, error-prone guessing game.
If you put your test page and all dependent files online, and post a link here, we will gladly check that:
    Your server is working
    That all required HTML code is correct
    That your folder hierarchy is correct
    That all required dependent files  (HTML, CSS, JS, Images etc.) are uploaded to proper folders
    That Javascript Versions are correct
    That link paths are all correct and case sensitive

Similar Messages

  • Spry image gallery with filmstrip - how to display all thumbnails?

    Hello,
    I'm using the Spry image gallery with filmstrip and want to be able to show all thumbnails. So instead of scrolling across to see all the thumbnails I would like to display them in a couple of rows. I thought it would be a case of changing the css from overflow: hidden to overflow: visible and increasing the height but this didn't make a difference.
    An example of my gallery is here http://www.demo.femmewebsites.com/gallery.html (This site doesn't have many thumbnails but I have others with 20+ images that need to be displayed)
    Your help would be much appreciated.
    Thanks

    Hello Krista,
    did you have a look here: http://labs.adobe.com/technologies/spry/demos/pe_gallery.html, where you will find DW "Photo Gallery Demos". In every demo, are arranged a large number of images in several rows and rows. Therefrom you can use their source codes.
    Hans-Günter

  • Spry Slideshow with Filmstrip not working in IE Browsers

    I'm working on a brand new website design and am trying to incorporate the Spry Slideshow with Filmstrip on a lot of the pages. It works and loads great on every browser except IE versions. On IE it will show it correctly for a second and then changes it to show one picture above the other. Can someone please help me figure out what to do to make it work for IE?
    Here's a link to one of the test pages.
    http://4034.sandbox.i3dthemes.net/oceankayakbanzai.html
    Thanks for your help in advance!

    I have a similar problem. I've added a note to reference your problem. I've not got an answer to date.
    Cliff

  • My iPhone 4S went into lock-up with a screen display image of USB connector pointing to iTunes logo. I took it to a Verizon store and they said I have a brick lock and that only an Apple retail store 50 miles away could clear it

    My iPhone 4S went into lockup with a screen displaying an image of the USB connector pointing to the iTunes logo. I was traveling and took the phone to the closest Verizon store. The store informed me that I had a brick lock and that only an Apple retail store could unlock the phone. The Verizon store explained that they have seen this problem with SEVERAL other 4S users who had upgraded to the new iOS7 operating system and that to their knowledge it is too demanding to work on pre-iPhone 5S phones having a far less capable processor. The closest Apple store was 50 miles away in King of Prussia, Pennsylvania. I went to that store three days later (today) to reset the phone before flying out of Philadelphia Intl. Airport. The Apple store personnel were overloaded and not sensitive to my plight. They told me that I would have to make a reservation for a time 2 hours later for tech support. I couldn't do that without missing my flight - out of luck until I get back to Los Angeles. If the Verizon store explanation is true, Apple needs to accommodate 4S and earlier generation users and not force them to upgrade to a $459 iPhone 5S!

    villebard wrote:
    The Verizon store explained that they have seen this problem with SEVERAL other 4S users who had upgraded to the new iOS7 operating system and that to their knowledge it is too demanding to work on pre-iPhone 5S phones having a far less capable processor. !
    The salesperson at Verizon has no clue what their saying.
    My 4S and many of my friends works perfectly fine on IOS 7.3, no issue as all.

  • Web gallery with links to hires images - possible?

    Hi all,
    I would like to use a web gallery to "deliver" hires images to clients, meaning that I want to have a preview page with thumnail images that should link to hires jpeg or even tif images for download. I found, however, that Aperture web galleries seem to be limited to maximum 1200x1200 jpegs for the detail page.
    I know that there are ways to customize web galleries so I thought there might be a solution for this anyway? Like putting in a link to the hires image in the detail page?
    Any hints appreciated
    Alexandra

    I made a good step forward regarding this type of customized template: I found that the image size restrictions can be changed in the "albuminfo.plist" file, and I can also edit the link on the gallery page that points to the detail page.
    But: Both gallery page and detail page use the same tag to refer to the image they are displaying: "ThumbImageURL" which seems to be interpreted differently in different contexts: In the gallery page it refers to the thumbnail (as expected) and in the detail page it refers to the larger image. This seems to indicate that there might be something like LargeImageURL"...
    Is there any kind of documentation to the tags used for web galleries in Aperture?

  • Spry Dataset (dynamic table) not displaying images

    Hi - new to Spry but loving it! I just did the tutorial for
    creating
    dynamic
    tables and had no problems outside of trying to get images to
    display in one tableset. in the XML I have
    <thumb><image href="imx/china.jpg"
    /></thumb>
    with thumb being the node name (naturally). the table cell
    displays nothing but all others have text displayed properly. is
    there no way of calling in images?
    Thanks for the help and advice!

    If you really want to embed HTML in XML, then read this
    sample:
    http://labs.adobe.com/technologies/spry/samples/data_region/HTMLFragsInXMLSample.html
    You can also just embed the path in the XML like this:
    <thumb>img/china.jpg</thumb>
    and then reference it in your region markup like this:
    <div spry:region="ds1">
    <img src="{thumb}" alt="{thumb}" />
    </div>

  • Problem with creating and displaying images in a thread

    Hi everyone,
    i need some bit of advice (of course otherwise i wouldn't write anything here). My situation is like this:
    I have a JFrame where the user can enter a string. Then a file that corresponds to this string is read and the information is stored in objects, then these two objects (there are always 2 objects per file) are passed to an ImageCreator class that creates one image with the information found in each object. So per file there are always two images created. Now the thing is that after creating the images i need to display them for 10 seconds each, but as it takes about 2 seconds to create each image i would like to start showing the first one already while the second one is still being created. As i am not really experienced with threads i wonder what would be the best way to manage something like this. Here is a little bit of code, which is still in a rather pseudo code state...if(checkPattern(scanField.getText()) &&
          fc.getFile(createFilename(scanField.getText())) != null)
          BufferedImage img = null;
          ImageDisplay display = new ImageDisplay(scanField.getText(), this);
          for (int i=1; i<3; i++) {
          Info info = tReader.readTelegramForOneInfo(createFilename(scanField.getText()));
          if(i==1) 
            info.setError(ew.getProperty(info.getMTNr1(), info.getLack()));
          if(i==2)
            info.setError(ew.getProperty(info.getMTNr2(), info.getLack()));
            iCreator.setHashtable(info);
            iCreator.setWhichMatNr(i);
            img = iCreator.createImage(false);
            if(i == 1)
                //here i would like to start showing the first image
                display.showImage(img);
          //thats an older version where i displayed both images after they had been
          //created.
          //Thread t = new Thread(new ImageDisplay(scanField.getText(), this));
          //t.start();
          //here i would like to show the second image.
          display.showImage(img);
          scanField.setText("");
        else
           doSomethingElse();
        }I hope you can help me.
    Thanks!

    All actual drawing opertations should occur on the dispatcher thread. When the first image is ready you could use SwingUtiltiies.invokeLater() to place a task on the dispatcher thread to draw the image e.g.
    final BufferedImage img = iCreator.createImage(false);
    if(i == 1)
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
           display.showImage(img);
       });(Both the variables uses in run() must be final.
    But it's probably better to have a java.awt.Component of some kind for each image to be displayed, and whose paint method does the actual rendering, if the image is ready (is blank otherwise). Then, when the image is ready you need only call repaint on the components.

  • Gallery with HTML text under image

    I'm working on a gallery of images with thumbnails on the left and larger photos on the right. My problem is the larger photos on the right need some text under them. I've been adding the text to the photos in photoshop and doing this as a standard swap image/swap image restore. What I was wondering, is there a way to add this text as HTML. When I do the swap image I would need to swap out the HTML text also. I've done this as a layered div in the past, but it gets cumbersome when you have 30 thumbnails. Hopefully someone has a good solution for this. I'm thinking about giving up on Dreamweaver and doing this sort of thing in Flash.
    ----Here's the website I'm working on -- http://www.elyssabassdesigns.com/fashion_collection/fashion_cuffs.html

    There are literally hundreds of CSS, DHTML or jQuery solutions you could use.
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-lightbox-solut ions/
    http://www.dynamicdrive.com/dynamicindex14/index.html
    www.JAlbum.net
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Spry Gallery - how to get large image to open in a new window?

    Hey guys,
    I'm building a new website and decided to use Spry for the Gallery section. It works like a charm but I want to get the larger version of the image to open in a new window when someone clicks on the normal image? It shouldn't be that difficult but I'm lost. Can anyone help?
    I believe I have to put a <a href> infront of the image something like this:
    <div id="picture">
            <div id="mainImageOutline" style="width: 0px; height: 0px;"><a href="?????" target="_blank" id="??????"><img id="mainImage" alt="main image" src=""/></a></div>
      </div>
    and something to the XML file...
    <photo
    path = "1.jpg"
    width = "300"
    height = "400"
    thumbpath = "1.jpg"
    thumbwidth = "56"
    thumbheight = "75"
    large = "galleries/xyz/large/1.jpg"   <------- this is the large image I want to open in a new windows
    >
    </photo>
    thanks!!

    Actually, the site is for my friend and she really likes this Gallery: http://labs.adobe.com/technologies/spry/demos/gallery/index-air.html
    I just want to keep this one and just edit it, so when I click on the image it opens the large image...

  • Spry Slideshow With Filmstrip -- works in Dreamweaver, forever loads online!

    http://toights.com/strut.html
    I'm fairly new to this, and after hours of figuring this thing out I finally have it customized and working ... in Dreamweaver! On the live site, everything is fine except for the main display that keeps loading.
    I did my best searching the forums, and found only one potential solution (http://forums.adobe.com/thread/881855) which didn't work for me (and you'll see it in the code where it's linked to labs.adobe.com rather than my file). It can't be directory structure or nothing would work, right? It has to be something teensy weensy that my amateur eyes can't pick out of the code. Help?
    I suppose after this I'm going to have that pesky "works in FireFox and Chrome But Not in IE" issue...

    Okay, found out what the problem was. I upload through Dreamweaver's Site/Put option, and although I always upload support files, it failed to upload the large images (though somehow uploaded the thumbnails located in the same folder).
    Simple, stupid solution, and I should've known better than to trust the auto-upload rather than to assume it worked. I am forever tainted by Dreamweaver's uploading and will always doublecheck my FTP client software now.

  • Portfolio: Thumbnail gallery with the full size image appearing on a darkened opacity layer?

    I'm creating my photography website, and so far, my portfolio looks like this:
    but I want the images to be buttons. I know how to re-load them as buttons, but then I'm stuck... I want for the full size version of each image to appear on the screen, with the background greyed out, like this quickly photoshopped version:
    I've seen it done, but I just can't figure out how... I even downloaded a free template that had this, trying to replace the stock images with mine, but that didn't work either...
    Thanks!

    Use the 'Lightbox' widget to achieve this effect.
    Or if you used another slideshow widget, there should be a Lightbox button you can mark to change to this type of view.
    Double click the outside area when you change to Lightbox view (a dark box will appear around your image) to change the opacity of the background.

  • Spry Slideshow with Filmstrip - Thumbnail 'Active' State

    Does anyone know if it's possible to make an "active" state for the thumbnails so that the thumbnail for the slide that is chosen remains in its 'hover' state?
    And further, if it's possible to specify diferent images for link, hover and active states?
    Thanks in advance to anyone able to help.

    Look at the code and you will see five lines that are:
    Delete the last one and problem solved
    Jon

  • Spry Image Slideshow with Filmstrip doesn't work in IE, but works in Safari and Firefox

    Hello,
    The Spry slideshow with filmstrip wiget works fine in Firefox and Safari. However, it does not work in Internet Explorer. The slideshow looks like it is loading (the little circle spins), then it disappears and the slideshow is replaced with an empty space and a little white box with the red x (that normally signifies a missing picture of picture that can't load for some reason). Has anyone found a solution to this problem? I was hoping that the widget would work in Safari, Firefox, and IE. Does anyone know of another option for adding a slideshow that works in all three browsers?
    Thanks!!

    gatorgirl,
    Here are the first lines in my template.  The Spry Menu script src and link statements are the only two lines that have to be moved (on your template or any page for that matter) above the Spry Slideshow  src and link statements.  Just leave the Slideshow code in the same position that Dreamweaver inserts it.   When you create a new document from your template, Dreamweaver leaves it alone.  Just set it and forget it.   I've wrestled with all sorts of other solutions listed on this forum and this is the fix that continues to work for me!  It seems to me that the only reason this solution works is that javascript is a procedural language and some code in the Spry Slideshow javascript has some conflict (maybe a name/symbol problem) with the Spry Slideshow javascript.  If someone else knows the absolute reason for this ordering problem, please feel free to come back and teach me!!  Always ready to learn something new!!
    I hope this helps you!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link REL="SHORTCUT ICON" HREF="http://pcpros.com/images/alfred.ico">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>PC Pros Consulting Services and Programming Examples</title>
    <!-- TemplateEndEditable -->
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
        background: #42413C;
        margin: 0;
        padding: 0;
        color: #000;
        background-image: url(../images/PCPback1.jpg);
        font-family: "Times New Roman", Times, serif;
        font-size: 100%;
        line-height: normal;

  • Won't display images - Its probably something simple!

    Hey ,
    Ive been trying for ages, looked throught the tutorials (i have even tried just using java pasted from the site for one of the simple programs) and looking through old forum questions but can't find out why my GUI wont display images. It compiles fine but then when i run the program ... no pics!
    I suspect its something to do with the directory, i have tired:
    - putting the images in the same directory as the java classes,
    - putting in the entire image location paths (for this i get illegal characters error because it has '\' in the path but i get round this using '\\' ) but still no joy.
    Like i said am just using the example programme from the site so i know its correct, Any ideas??
    Thanx
    Lisa

    Here is a simple program to test:
    JFrame frame = new JFrame();
    JLabel label = new JLabel("image.jpg");
    frame.getContenPane()..add( label );
    frame.pack();
    frame.setVisible(true);a) Place "image.jpg" is the same directory as the source and class files.
    b) Don't use any package names for you class.
    c) Compile using javac, not through and ide or anything.
    d) Make sure your classpath includes ".", so it will search the current directory.

  • Spry Gallery, adding content box on thumbnail click

    I've attached the html for the page I'm working on. Essentially, it's using the spry gallery. Onclick, the main image is updated dynamically, what I also want to happen onclick, is for a separate DIV with some text in it to be updated with new text. I had thought that by editing the photo.xml and simply adding another tag labeled 'dtext' in each photo area, I could refer back to it. While this does work on the initial page load, it doesn't update onclick.
    Thoughts
    Website can be viewed here: http://www.thesilversandbox.net/purple/purple_gallery.html
    uploaded, a .zip file containing the .html and the photo.xml file being used. You'll note on the web page the blue placeholder section is where I'd like the text to appear and in the .xml file you'll see the 'dtext' tag which I'd like to be where I enter the product descriptions that change on thumbnail click.
    Thanks,

    Can someone comment on this please? Essentially what I'd like to know is if it's possible, using only the Spry Gallery, to add an additional XML comment into the "photo.xml", which contains some text. Then, call this text upon each thumbnail-click event to have a small description appear when the picture changes.
    I realize there are content-widgets for this, but they are heavy, all I want is a little comment box, everything else is working properly.
    Thoughts?
    /bump

Maybe you are looking for

  • Does any one know how to uninstall xcode 4.4 on OSX 10.7?

    Because of openframeworks, I want to swich back to xcode 4.2 not the xcode 4.4 after I accidentally upgraded it. I tried the /Developer/Library/uninstall-devtools or deleting the xcode.app from the application folder, none of it works, everytime I tr

  • Jhtml not working! Please help

              Simple jtml is not working in weblogic5.1           1. Jhtml code which I kept in public_html folder           <html>           <head><title>Hello World Test</title></head>           <body>           <h1> <font color=#DB1260> Hello World Te

  • Structure deleted?

    Hi guys, I'm using Frame 7.1, someone opened my Structured doc with the unstructured version of Frame and saved it. Now when I open my document, I can't view any of the structured elements. The Elements list is empty and selecting View > Element Boun

  • param name='progressbar' value='true' is not working, shows as empty

    Hello everyone, I have a very odd problem with the above tag within an applet. I am running the same applet, using the same JVM version and same browser version, but on different LANs. On one system, the progress bar will correctly update as the Jar

  • Extract / Export Data from my IBM Cognos Applix TM1 to BW7 Oracle based

    Hi, I need to extract data from my IBM Cognos Applix TM1 to my Oracle based BW7. Anyone has done this ? How to get Data out of the Applix TM1 ? Are BW7 Adaptors for TM1 availiable ? What about OLE DB ? Anyobody tried this yet ? Thanks Martin