Revamped Slideshow
Update: The slideshow viewer now has its very own homepage. Check it out!
We recently updated the TripTracker photo slideshow interface. For a sample, click on the first thumbnail below and then the Play button:
(photos taken from the Thailand trip)
Feel free to use the JavaScript slideshow on your own personal web space (please have a look at the terms at the top of the JavaScript file). The interface to the slideshow is simple — insert the script source, initialize the viewer and photo links and then call the viewer.show() method. Here is an example:
<script type="text/javascript" src="http://slideshow.triptracker.net/slide.js"></script>
<script type="text/javascript">
<!--
var viewer = new PhotoViewer();
viewer.add('/photos/my-photo-1.jpg');
viewer.add('/photos/my-photo-2.jpg');
viewer.add('/photos/my-photo-3.jpg');
//--></script>
<a href="javascript:void(viewer.show(0))">Slideshow</a>
We’re also providing a bookmarklet that allows you to try out the slideshow on other web sites:
- Bookmark the following link: Slideshow Bookmarklet (e.g. by dragging the link to your bookmark toolbar).
- Visit a page with photo thumbnails, such as the page you are just reading.
- Click on your bookmark to bring up the slideshow.
Note that the bookmarklet will only work properly on web pages that include thumbnails linking directly to the full-sized photos. In other cases, the viewer needs to be initialized explicitly using the method described above.
September 12th, 2006 at 1:42 pm
Very nice! this is a great app.
September 13th, 2006 at 5:00 am
Genial en todos los sentidos. Gracias. Hablo de ello en mi blog.
Un saludo.
September 13th, 2006 at 3:47 pm
Can someone help me make this work?
I am putting it on my page, and I have copied the .js file exactly, to my server.
I created a photos/ bin to put my-photo-1.jpg etc…\
however I get a blank page with the word “false” on it, at the link of:javascript:viewer.show(0)
please help!
thanks
September 13th, 2006 at 3:48 pm
mariande@gmail.com is my contact!
thank you.
September 13th, 2006 at 3:56 pm
Keyboard access would be great. Next version, perhaps?
September 13th, 2006 at 3:59 pm
I imagine you need to leave the .js file hosted on the triptracker server since there is likely some behind the scenes work that is not included in that file. Thus, when you try to host it on your server you’re only executing part of a much larger program and it fails.
September 13th, 2006 at 4:03 pm
@Jonathan
The link should actually be javascript:void(viewer.show(0)). I corrected the post, thanks for the warning.
@James
Keyboard navigation should work already, although I do see a focus problem that we’ll resolve shortly. In the mean time, try clicking on one of the toolbar controls first and then navigate using arrow keys, space, etc. (all the keys are listed in the toolbar tooltips).
@Help
The script should work offsite, but we’d rather see it hosted to be able to roll out upgrades easier.
September 13th, 2006 at 4:10 pm
Ziga,
Perfect!
I was wondering also, if this script is able to be embeded into flash?
September 13th, 2006 at 4:27 pm
[…] Click here to visit the original site, Triptracker.net […]
September 13th, 2006 at 4:45 pm
[…] Via TripTracker. I don’t know if it actually qualifies as AJAX just because it uses an HTTPrequest, but I think it’s pretty cool nonetheless. Quote: “Feel free to use the JavaScript slideshow on your own personal web space (please have a look at the terms at the top of the JavaScript file). The interface to the slideshow is simple — insert the script source, initialize the viewer and photo links and then call the viewer.show() method.” LINK […]
September 13th, 2006 at 4:50 pm
@ Jonathan
> I was wondering also, if this script is able to be embeded into flash?
You can include the script into the HTML code that embeds the Flash. Then use the fscommand() method from ActionScript to start the slideshow from Flash.
For more info on how to call JavaScript from Flash, see
http://www.moock.org/webdesign/flash/fscommand/
September 13th, 2006 at 5:06 pm
Just started playing with this and generally a very nice job.
Are there methods available to affect the behavior, such as changing the timing between the slides or the opacity, etc.? If not, I might suggest unobfuscating the code and allowing others to make improvements (& return them to the community) in true open source tradition.
Thanks for sharing your work.
September 13th, 2006 at 5:11 pm
@Braco
Could you be a bit more specific as to including the script into the HTML Embeding the flash,
the problem I am encountering is the slideshow is eclipsed by a flash file embeded into the HTML directly below. Could this be because they are the same table cell?
September 13th, 2006 at 5:29 pm
@Jonathan
> The problem I am encountering is the slideshow is eclipsed by a flash file embeded into the HTML directly below.
Oh, of course, I hadn’t thought of that. The flash file is running within an ActiveX control in the browser. It’s probably placed on top of what is being rendered by the browser (that’s the slideshow, in this particular case). We’ll see if this can be worked around by controlling the z-index of the slideshow though.
September 13th, 2006 at 6:04 pm
Thanks Braco, so should i redownload the slide.js file? I assume that’s what you will be updating? I downloaded the file for my own server just because I was afraid you would take it down one day when I still needed its use.
September 13th, 2006 at 7:54 pm
This is great…
1 question
how do I make 2 slideshows on the same page? in other words use the same script 2 times on the same page.
Thanks!
September 13th, 2006 at 8:25 pm
I can’t seem to get this to work anyway I try it…
-with the .js file on my server or with your file
-with the extra “)” or without
-I’m not using the rich text editor in my wordpress (because it was stripping the js src out)
-I tried it with the pics in the root and /photos/picture.jpg neither worked
-when you click the link it does nothing… doesn’t open up anything.
This is the code I’m putting in my post:
var viewer = new PhotoViewer();
viewer.add(”/photos/picture 335.jpg”);
viewer.add(”/photos/picture 330.jpg”);
viewer.add(”/photos/picture 332.jpg”);
(Slideshow
(parentheses added to prevent this from becoming a link)
Any idea what I’m doing wrong?
Anything would be appreciated!
Thanks in advance,
-Doc
September 13th, 2006 at 8:26 pm
It would appear the comment thing took half the code away… my bad, I didn’t do pre…
var viewer = new PhotoViewer();
viewer.add(”/photos/picture 335.jpg”);
viewer.add(”/photos/picture 330.jpg”);
viewer.add(”/photos/picture 332.jpg”);
Slideshow
September 13th, 2006 at 8:29 pm
wow… makes me look like the novice… ugh…
(
(
(
var viewer = new PhotoViewer();
viewer.add(”/photos/picture 335.jpg”);
viewer.add(”/photos/picture 330.jpg”);
viewer.add(”/photos/picture 332.jpg”);
(
(Slideshow
(parentheses added to prevent me from looking like a moron and taking up your comment space ;))
September 13th, 2006 at 8:30 pm
Ok fine… it’s the same code as you have there, only with MY picture links… since I can’t figure out how to use this comment thing…
September 13th, 2006 at 11:25 pm
Any way for someone to make a WordPress plugin for this?
September 14th, 2006 at 6:53 am
I can’t get this to work, either. I’m copying and pasting the code as is, and then changing the image locations to refer to my directory structure and files.
doc misterio, I think we may be having the same issue.
Do we need to add an onLoad command to the body tag, or something?
you can see mine at http://www.plexcomols.com/test/bdp/weddings.shtml
There’s a slideshow link just above the thumbnails.
September 14th, 2006 at 7:04 am
Hi, bdizzlefizzle! Looking at your HTML source, there appear to be some strange leading characters where you copied the JavaScript. Try deleting those. The bookmarklet also appears to be working on your page (at least in my browser).
September 14th, 2006 at 7:22 am
@Kenny
> Are there methods available to affect the behavior[…]
Please see the updated post and let us know if that fits your needs.
@Jonathan
> so should i redownload the slide.js file
I suggest you run the JavaScript off our host, since that will make upgrades much easier.
@randy
> how do I make 2 slideshows on the same page?
This is currently not supported, but it is definitely useful so we’ll add support shortly. We’ll keep you posted!
@doc misterio
> I’m not using the rich text editor in my wordpress
Are you sure WordPress is not modifying the JavaScript in any way? We were having issues with WordPress as well, so we eventually added the PhotoViewer using an <iframe> (see the HTML source of the post above). You might have better luck by including the JavaScript source though a WordPress template file. Does the bookmarklet work if you invoke it on your page? Also, if you could provide a link to your page, we might be able to spot the problem.
September 14th, 2006 at 7:38 am
The page that I’m working with here is….
http://www.docmisterio.com/?page_id=22
@bdizzlefizzle
>Yes I believe that we are having the same problem! That is exactly what mine is doing…
@ziga
>When I did have the rich text on what what was happening was it was stripping the src .js file out… and now upon post it would appear that there is a /br in between the type=text/javascript and the src… and also on the pictures instead of quotes the following number shows up:
“#8221;”
That is everything as far as I can tell, any ideas? Thank you everyone for your help!
September 14th, 2006 at 8:07 am
@doc misterio
> and now upon post it would appear that there is a /br in between
Yes, these breaks that WordPress inserts are exactly what causes the issue. We updated the post to use a more WordPress-friendly script syntax (note the XML comments and single-line script import). As you noted, the rich editor needs to be disabled. Details here: http://codex.wordpress.org/Using_Javascript
Let us know if this works.
September 14th, 2006 at 9:08 am
@ziga
> I just wanted to try it because I was curious, I uploaded it to the sidebar, which is NOT in a post, and it worked like a dream - it would appear that the post is the thing that is breaking it… and according to this link you sent me, it’s hard to do JS in a post… so… now with the comment tags and the single line script…. EUREKA!!! It works - Thanks you guys so much!!!
September 14th, 2006 at 9:35 am
… and just like that… it broke again… I sent it to a friend “hey dude check out this awesome thing…” and he told me that he clicks on it and nothing happens… so I went back and sure enough… it didn’t work
http://www.docmisterio.com/?page_id=22
I can’t see anything wrong… I’m going to keep trying things…
September 14th, 2006 at 9:44 am
Ok… it would seem that this is what works…
I have to put the NON single line code before the ul tags in my sidebar with a noscript around the anchor… and then I have to put the single-line code in the post, and it works… not sure why… thanks guys… I just hope I don’t have to update both instances of the code with the pictures… any idea why I have to have the code in both places… ?
docmisterio.com
Slideshow post page
September 14th, 2006 at 1:37 pm
Cool script, Thanks for sharing … I’ve implemented it into my gallery code.
Absolutely super!
September 14th, 2006 at 2:00 pm
Safari and IE do not run the script.
Not for me atleast, as my boss has not been able to view the script at all from either of the two browsers he has.
Can anyone out there view from ie or safari?
@Ziga what do you advise?
- - I would like to e-mail you the link to my site, its sensitive information I would rather not post on an open forum. if you don’t mind taking a look at my site,
mariande@gmail.com
j
September 14th, 2006 at 4:30 pm
@ziga
Thanks very much. That information is most helpful. I much prefer using the script straight off your site. I’ll check it out some more shortly.
September 14th, 2006 at 5:27 pm
Great Script!
Works great in IE but I have an issue under Firefox(1.5.0.3). When you start the slide show it displays the images half way out of the bottom of the window. You can scroll down to see it but the next image drops below again.
You can check it at
http://www.towsurfer.com/Photo/ViewGallery2.asp?PhotoGalleryID=77
“SlideShow” link above thumbnails.
September 14th, 2006 at 6:37 pm
@Matt
> I have an issue under Firefox(1.5.0.3)
This should be fixed now, thanks for the heads-up.
Note that instead of opening a new window for each photo, you can have the thumbnails linking directly to the slideshow (showing the corresponding photo first). Simply replace the current onclick attribute values with “return viewer.show(123)” (where 123 is the index of the corresponding thumbnail; indexes start with 0).
Surf on
September 14th, 2006 at 9:38 pm
OK I’m sorry for being daft here, but could someone please explain exactly how to integrate this into my site? I run Wordpress, so I don’t know if that will be a problem, but I love this slideshow, I’ve been looking for a “lightbox” slideshow for galleries but couldn’t find anything cool enough but this is perfect. I would really like to have this on my site, any help would be greatly appreciated. If it will help, my site is www.automoblog.net Thanks!
September 15th, 2006 at 5:52 pm
Very nice! I plan on setting up a personal photo website for my friends and family, and this is exactly what I was looking for to give it some style! Great work!
September 16th, 2006 at 3:34 pm
(I’m french, so excuse for my english)
Hi, i’m a future professionnal Webmaster, and I find that your script is very good. Will be there a “legal way” to propose it to my customers ? Do you plan to sell it ? Thank you, good job.
September 17th, 2006 at 11:01 am
Braco, you saved the day! I guess there were some hidden characters (gremlins) that I didn’t catch. It works now.
As a note, I also had to take out the leading / from the image src
September 18th, 2006 at 12:36 am
[…] Nuoroda: Revamped Slideshow […]
September 18th, 2006 at 8:43 am
Nice slideshow, got it to work for me. But I have a problem, I am running my site with frames, and using this code in an iFrame, is there any way to get this to run outside the iFrame instead of inside?
September 18th, 2006 at 8:51 am
@seminis
> is there any way to get this to run outside the iFrame
This is not documented yet, but the PhotoViewer constructor takes an optional window parameter. You can call it with:
var viewer = new PhotoViewer(window.parent);
September 18th, 2006 at 9:12 am
Hey ziga, I was unsuccessful with your help, probably due to my n00bness at javascript. Do I just need to edit the entry in the javascript for var viewer?
September 18th, 2006 at 9:18 am
@ziga
Nevermind, I have sorted it out, thanks for the tip
September 18th, 2006 at 4:15 pm
Wow, this is definitely the best slideshow script I’ve seen.
Any chance of adding a randomize function to the panning direction? It just seems strange to have all the images pan in the same direction.
Keep up the great work!
September 18th, 2006 at 9:27 pm
eagerly awaiting that multi slideshow on the same page. any update on that ?
Thanks!
September 19th, 2006 at 7:09 am
Randy, the latest update will allow multiple slideshows. Simply use a separate variable for each viewer, e.g.:
var viewer1 = new PhotoViewer();
viewer1.add(”photo1.jpg”);
var viewer2 = new PhotoViewer();
viewer2.add(”photo2.jpg”);
September 20th, 2006 at 4:45 am
Hi Ziga! I use multiple slideshows in my web page (HTML+CSS+Javascript) as you said:
var viewer1 = new PhotoViewer();
viewer1.add(”photo1.jpg”);
var viewer2 = new PhotoViewer();
viewer2.add(”photo2.jpg”);
And it is not working! Even I ´ve changed the javascript´s name for another, but nothing. eg: (slide.js, slide2.js, slide3.js…) But nothing, through these ways i cant use multiple slideshows in my web page. Tell me, wat can i do?
Thanks!!
September 21st, 2006 at 2:35 am
I wan to know ho to diaply title or name with image
September 22nd, 2006 at 4:52 pm
Is it possible to purchase a version without the Trip Tracker link on the corner of the slide control strip?
Very nice application!
September 24th, 2006 at 5:42 pm
Philip…
You have this part correct:
var viewer1 = new PhotoViewer();
viewer1.add(”photo1.jpg”);
var viewer2 = new PhotoViewer();
viewer2.add(”photo2.jpg”);
What you need to do is change the script call (link) to refledt the above..as an example:
Slideshow
or
Slideshow
Those separate links will call up the appropriate gallery…
September 24th, 2006 at 5:46 pm
Whoops…
The above showed as links…
<a href=”void(viewer1.show(0))” >Slideshow</a>
<a href=”void(viewer2.show(0))” >Slideshow</a>
(Edit by ziga: encoded HTML tags)
October 2nd, 2006 at 6:21 am
There is a memory leak in IE6. If you use this slideshow, there will be a loss of memory (signifikant, because images are involved) until you close the IE.
Is any workaround known?
October 5th, 2006 at 2:06 pm
I was wondering if there was a way to disable the toolbar at the bottom of the viewer? I was wanting to use your script to kind of “blowup” images on a page, but I don’t want people scrolling ahead to the next image until they get to that point on the main page. Just a suggestion.
Thanks for your app though. Very elegant, simple and effective.
October 5th, 2006 at 2:22 pm
hello,
i like to use the nice function “Email Photo.”
Email client opens, subject ist “Photo” but in textarea there is just the local path displayed like: pictures/trt.jpg.
how can i get the full path of picture?
many thanks
Michael
October 5th, 2006 at 6:53 pm
Hi Michael…
Usse the full URL path when you list your images in the code (”viewer.add”)
October 10th, 2006 at 7:36 am
@Marcel
> There is a memory leak in IE6
We added some workarounds for the IE memory leak problem, please give it another try.
Thanks for the report.
October 15th, 2006 at 10:34 pm
Is there somene willing to write How To guide for \
October 15th, 2006 at 10:35 pm
Is there somene willing to write How To guide for dummies like me? I want to implement on my blog run with WP to viewing my flickr photo
October 16th, 2006 at 9:19 am
Hi,
Very Nice Gallery
Very Simple To Use it
I’ve Designed a Mambot for Joomla / Mambo But I Haven’t Publised Yet!
see a demo in action…
http://work.tudodoido.com/index.php?option=com_content&task=view&id=67&Itemid=76
October 16th, 2006 at 2:43 pm
First of all excellent app!
Would it be possible to get this to show all the images in same folder without including file names viewer.add?
It would be really handy when there are 100+ photos
Have anyone had luck with including viewer.show in Flash GetUrl?
I mean in IE photos are behind flash, but in Firefox everything are ok.
October 16th, 2006 at 5:31 pm
@Ipa
> Would it be possible to get this to show all the images in
> same folder without including file names viewer.add?
This cannot be done on client (i.e. JavaScript) side only, for security reasons. I think this is best solved using server side code, e.g. a PHP script that traverses a photo directory and outputs JavaScript.
We could however add a way to specify a single text file containing image file names. Would that help?
> I mean in IE photos are behind flash
By default, a Flash control will display above any other content. Luckily, there’s a workaround: within the <object> tag where you set up the Flash file, add the following parameter:
<param name=”wmode” value=”transparent”>
Details here: http://joshuaink.com/blog/82/flash-content-and-z-index
Hope this helps. If not, please post a link to your site.
October 17th, 2006 at 6:16 am
Excellent!
Works with “wmode”.
Thanks!
October 18th, 2006 at 6:04 pm
@Ipa
yeah i know the
features:
Automatic Thumb Generation
TODO:
Configuration part, some configurations are staticaly adapted in the config file and i’m trying to modify that
and specify the thumbnail site too
when i get time i’ll will publish the component
PREVISION 3 days from now
@ziga
i would like to incorporate the script in the component but i need Your Authorization please contact me for more Licencing / Usage Confirmation
October 20th, 2006 at 1:17 pm
Any plans to make this compatible with IE7? The slideshow bar is unreliably placed in IE7 (i.e. above the pictures, on top of the pictures, way below the pictures). BTW amazing product!
October 20th, 2006 at 7:15 pm
@Nils
> Any plans to make this compatible with IE7?
Definitely — it worked fine in IE7/RC1, but looks like there was a change in behavior in the recent IE7 release. Should be fixed now, thanks for the heads-up.
Note that for best results (i.e. fixed positioning of the toolbar), the web page should use a proper DOCTYPE and thus run in strict mode.
October 23rd, 2006 at 12:59 pm
Ziga said “Note that for best results (i.e. fixed positioning of the toolbar), the web page should use a proper DOCTYPE and thus run in strict mode. ”
I am a novice when it comes to building website. Can you give me a clue on how to fix the menu at the bottom of a page in IE7, or what DOCTYPE does?
November 14th, 2006 at 8:37 am
Very nice, keep it up.
November 18th, 2006 at 12:15 am
I just wabt to know if you can make the show pop up atomatically. If so can please tell me how?
November 18th, 2006 at 12:16 am
Sorry “Want to know”
November 18th, 2006 at 7:30 pm
@Paul
>I just want to know if you can make the show pop up atomatically.
Sure — instead of using a link for the show() call, call it directly after you’ve added all of the photos, e.g.:
var viewer = new PhotoViewer();
viewer.add(’/photos/my-photo-1.jpg’);
…
viewer.show(0);
December 2nd, 2006 at 8:35 pm
Hi,
Just wondering if it’s possible to start the slideshow automatically after the viewer is launched (ie. without having to press the ‘play’ button).
If anyone’s got any ideas it would be much appreciated!
Thanks, Jamie
December 11th, 2006 at 8:37 am
super slideshow. jen tak dal,je to moc pekne
January 4th, 2007 at 8:27 am
tnx!!!
February 3rd, 2007 at 1:04 pm
thanks for the great script
I was not sure how to disable the panning - didn’t seem to work - and is there a way to disable the e-mail photo function?
February 6th, 2007 at 7:54 am
@wendy
viewer.disablePanning() should work as expected. Could you post a link to the site in question, so we can have a closer look?
As for the email function, there is currently no way to disable it. We may add that option in the future, we’ll keep you posted.
February 6th, 2007 at 4:27 pm
thanks for the reply, Ziga. I gave up on trying to disable pannning after my brother said he liked it.
I have another question tho … is there a limit as to how many viewers you can call up on one website? I had quite a few different sets of photos I wanted to display.
February 7th, 2007 at 9:07 am
@wendy
> is there a limit as to how many viewers you can call up on one website?
There is no hard limit on the number of viewers. Just make sure they have unique names (e.g. viewer1, viewer2, etc.).
February 7th, 2007 at 10:52 am
thanks again for the reply.
I am using unique names and all was going along fine, until the 5th viewer and now I get messages: viewer5 is null and photoviewer is undefined … even tho I have not changed anything except the number from the 4th viewer which is working fine.
February 7th, 2007 at 11:32 am
hmmm … tried using another number and it worked, maybe it didn’t like the number 5? thanks!
February 13th, 2007 at 3:55 am
Yes,it didn\’t like the number 5.
I more than am assured.
February 25th, 2007 at 5:10 am
is there a way to implement that slideshow to a gallery?load pics from directory. (changing the highslide code)
//Different popup methods
switch ($displayPopup) {
//No popup
case 0:
break;
//Normal popup
case 1:
$imgtag = “target=”_blank”";
break;
//Fancy popup using JS (This one generates errors in IE6, so offered as an option)
case 2:
//Load stylesheet business for JS Highslide
$imgtag = “class=”highslide” onclick=”return hs.expand(this)”";
?>
/components/com_rsgallery2/js_highslide/highslide.css” type=”text/css” />
/components/com_rsgallery2/js_highslide/highslide.js”>
hs.graphicsDir = ‘/components/com_rsgallery2/js_highslide/graphics/’;
hs.showCredits = false;
hs.outlineType = ‘drop-shadow’;
window.onload = function() {
hs.preloadImages();
}
February 26th, 2007 at 8:32 am
hello
Wow, what a wonderfull and so class slideshow!
I’ve got the same question as Jamie :
“Just wondering if it’s possible to start the slideshow automatically after the viewer is launched (ie. without having to press the ‘play’ button).”
It will be very helpfull .
Thanks!
February 26th, 2007 at 8:39 am
@Jamie, koponic
> Just wondering if it’s possible to start the slideshow
> automatically after the viewer is launched
We’ve now added a new method: enableAutoPlay(). Check the slideshow documentation page for details:
http://slideshow.triptracker.net/howto.html
@D.Won
Loading the images from a directory is possible of course, but this needs to be done in server code (e.g. PHP). JavaScript alone cannot be used to browse photos on the disk.
In server code, you would basically list all of the images in a directory and output a “viewer.add(…);” script line for each file. I’m sure others will be able to provide samples here.
February 26th, 2007 at 8:40 am
@koponic, @Jamie
> Just wondering if it’s possible to start the slideshow automatically after the viewer is launched…
Yes, this option was recently added to the API. Use the “enableAutoPlay()” method. It’s documented here:
http://slideshow.triptracker.net/howto.html
February 26th, 2007 at 10:28 am
Thank you! thank you! thank you!!!
March 2nd, 2007 at 10:14 pm
Just wanted to pass along a thank you for this slideshow script. I’m using it on my family website and it works perfectly and looks fabulous! Kudos to the programmer(s).
March 27th, 2007 at 2:50 pm
Great tool! I’m very impressed.
One question….how can I change the font color when using titles? Changing the font size with setFontSize() is great, but my Grandmother has bad eyes, so I was hoping to try a few different font colors or weights to help her out.
Thanks for the great tool!
March 28th, 2007 at 1:20 pm
got it. I just added the following line to the js file that sets the photoTitle style:
photoTitle.style.fontWeight=”bold”;
I didn’t bother making it configurable like setFontSize(), but I’m sure one could if they
March 28th, 2007 at 1:22 pm
…wanted to.
April 19th, 2007 at 3:06 pm
Thanks for the example. I understand it now.
June 22nd, 2007 at 7:20 am
Wow! This is exactly what I was looking for! Thanx!
June 29th, 2007 at 8:23 am
I have a strange problem with this app :
when the app is on, all the flash (under IE, not Mozilla) disappears behind the transparent background…
Someone have already met this problem ? and fixed it ?
Thanks for the responses
Have a nice WE !
June 29th, 2007 at 11:50 am
@jonathan
> all the flash (under IE, not Mozilla) disappears
This is the expected behavior. Because of the problems with Flash displaying above the transparent background (see discussion above), we made it so that Flash controls are hidden for the duration of the slide show. The controls will reappear once the viewer is closed so this should not be a big issue.
September 5th, 2007 at 6:57 am
HI,
I am trying to put the same slideshow js in our site , what we cannot do is decide the number of pictures to be added.
Please suggest a dynamic way for adding pictures to the list and then using it across. As we have a dynamic page where the name of the images could not be predefined.
Cheers
NM
September 7th, 2007 at 2:01 am
This can only be done by a server-side script, such as PHP. The server-side
script should enumerate all images and generate the slideshow initialization code - one viewer.add() call for each image.
regards,
gregor
September 10th, 2007 at 4:03 am
Hi, is it possible to show images dynamically using the TripTracker slide show? I’m working on an upcoming project and considering using this in my project but the problem is all the large images coming dynamic from a central repository and there are going to be four slideshows on one page!
September 10th, 2007 at 4:28 am
This can be done by a server-side script, such as PHP. The server-side
script should enumerate all images from the central repository and generate the slideshow initialization code - one viewer.add() call for each image.
May 10th, 2008 at 11:56 am
Orthopedic Wrist Braces
I found your site on technorati and read a few of your other posts. Keep up the good work. I just added your RSS feed to my Google News Reader. Looking forward to reading more from you.
May 10th, 2008 at 2:07 pm
Health Insurance Gulf Breeze Insurance Flood Insurance
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 10th, 2008 at 8:16 pm
I couldn’t understand some parts of this article Revamped Slideshow, but I guess I just need to check some more resources regarding this, because it sounds interesting.
May 11th, 2008 at 3:26 am
This article sounds well, but how everything is related together?
May 11th, 2008 at 4:18 am
David
I’ve been a member of the aarp for about 5 years now. At first I resisted it, thinking it was an admission that I was getting older, but hey, I need the insurance and with them, I was a shoe in. If you haven’t checked them out recently, the America…
May 11th, 2008 at 7:45 am
Dkny Wallets
I found your site on technorati and read a few of your other posts. Keep up the good work. I just added your RSS feed to my Google News Reader. Looking forward to reading more from you.
May 11th, 2008 at 11:27 pm
Teen Girls Teen Mpeg Ass Teen
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 12th, 2008 at 3:34 am
Revamped Slideshow thanks for this post!
May 12th, 2008 at 5:30 am
Insurance Automobile Insurance Home Owners Insurance
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 12th, 2008 at 7:05 am
Online Banking For Banks In South Carolina
Interesting - because that is the same thing I found out last Thursday.
May 12th, 2008 at 3:55 pm
Bankruptcy Court Tampa Florida
It is a quite interesting post but quite difficult to understand for me -
May 12th, 2008 at 9:45 pm
Insurance Small Business Health Insurance Nationwide Insurance
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 13th, 2008 at 3:19 am
chase bank background checks
I’m with the earlier poster, this seems like a good idea.
May 13th, 2008 at 1:17 pm
London Banking Second Mortgages
There is only one good thing in life, and that is love. ~ Guy de Maupassant
May 13th, 2008 at 7:18 pm
Teen Teens For Cash Nudist Teens
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 13th, 2008 at 8:26 pm
I couldn’t understand some parts of this article, but I guess I just need to check some more resources regarding this, because it sounds interesting.
May 14th, 2008 at 1:27 pm
great stuff - cu
May 14th, 2008 at 10:16 pm
Revamped Slideshow seems quite interesting - thanks for information R.Kraven
May 14th, 2008 at 11:20 pm
Halifax Home Insurance
It is a quite interesting post but quite difficult to understand for me -
May 14th, 2008 at 11:45 pm
I Googled for something completely different, but found your page about Revamped Slideshow and have to say thanks. nice read.
May 15th, 2008 at 6:17 am
Hello! Found your blog on google while searching for Allergic Pink Eye Photos - quite some good info thanks, R. Kraven
May 15th, 2008 at 4:30 pm
Thanks for this post!
May 15th, 2008 at 10:28 pm
Hi! Found your blog on yahoo - thanks for the article but i still don’t get it.
May 16th, 2008 at 3:36 am
I don’t mean to be too in your face, but I’m not sure I agree with this. Anyhow, thanks for sharing and I think I’ll come to this blog more often.
May 16th, 2008 at 8:09 am
Health Insurance California Health Insurance Michigan Health Insurance
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 16th, 2008 at 11:43 am
Single woman looking for the right guy to fullfill all my wants and
desires in and sexy swingers out of the bedroom.
Hotlisted or Winked at us plus we are not. We even had some friends of ours to send us
but have http://adultplaypartner.com yet to receive them either.
May 16th, 2008 at 3:25 pm
Free Porn Free Full Length Porn Movies Free Full Length Porn Movies
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 16th, 2008 at 7:26 pm
Can it be that your server is infected with a virus - I get an Virus warning when I open your site with Firefox - Just for your Info.
May 17th, 2008 at 1:17 am
Looking For Aig Auto Low Cost Auto Insurance Free Quote
The doors of heaven and hell are adjacent and identical. ~ Nikos Kazantzakis
May 17th, 2008 at 2:35 pm
He wants to see me with another woman and I need someone who
will not adult personals be into my husband. He
will be there for me only. We will be glad to send photo with reply. Looking for couples
and single females wanting http://ito5.com to engage in fun and frolic.
Inside and outside the bedroom.
May 17th, 2008 at 3:28 pm
Buy Sell Agreement For House %2B Free Template
Found your blog on yahoo - thanks for the article but i still don’t get it.
May 17th, 2008 at 4:07 pm
You got a nice post on Revamped Slideshow. Really very nice to read and useful, thanks for the nice share.
May 18th, 2008 at 2:07 am
Hi there , I must say that you have a great information on your blog. Even I could not understand the whole article it is nice to know that people are writing also for Cash Advance Payday Loan Services as that is how i found you on Google , anyway just i stop it to say hello and posted my thought on your blog comment section. Cheers and keep growing your blog.
May 18th, 2008 at 11:07 am
Jack
Interesting opinions which are diverse and give reason to a great deal of thought.
May 18th, 2008 at 3:26 pm
Please keep these excellent posts coming.
May 19th, 2008 at 9:53 am
I read similar article also named Revamped Slideshow, and it was completely different. Personally, I agree with you more, because this article makes a little bit more sense for me
May 19th, 2008 at 1:39 pm
Bad Credit Loans Auto Loans Mortgage Refinance
I didn’t agree with you first, but last paragraph makes sense for me
May 20th, 2008 at 3:18 am
Hi - just wanted to say good design and blog -
May 20th, 2008 at 4:13 am
Hello , I like a lot of your blog post especially the article regarding Revamped Slideshow, it looks very interesting. I found you on yahoo while searching for guaranteed instant online bank personal loans. I just Stumble it on Tuesday!
May 20th, 2008 at 9:28 am
Vacation Rental Vacation Package Cruise Travel
I didn’t agree with you first, but last paragraph makes sense for me
May 20th, 2008 at 11:23 am
This article sounds well, but how everything is related together?
May 20th, 2008 at 12:02 pm
Shopping Cart Free Merchant Account Folding Shopping Cart
I didn’t agree with you first, but last paragraph makes sense for me
May 20th, 2008 at 3:23 pm
Found your blog on yahoo - thanks for the article but i still don’t get it.
May 20th, 2008 at 11:05 pm
Prom Dresses Emo Fashion Prom Dress
I didn’t agree with you first, but last paragraph makes sense for me
May 21st, 2008 at 7:56 am
Teen Girls Teen Titans Hentai Teen Girls That Are Hot
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 21st, 2008 at 8:24 am
Mortgage Calculator Currency Conversion Financing
I didn’t agree with you first, but last paragraph makes sense for me
May 21st, 2008 at 4:56 pm
natural amateur nude girls
natural asian beauty nude
May 21st, 2008 at 9:42 pm
[…] trong điều khiển thời gian. Có 1 số hiệu ứng ảnh dịch chuyển và thumbnail. Revamped Slideshow Một đoạn mã tuyệt với để tạo 1 slideshow cho những ảnh của bạn với những […]
May 22nd, 2008 at 4:49 am
poker download for computer
Two poker game rule online casino black jack free 5 card stud poker play video poker online free online poker software
May 22nd, 2008 at 5:06 am
Hi - just wanted to say good design and blog - cu Frank
May 22nd, 2008 at 10:39 am
advance card cash credit
Whom card credit debt management uk casinos lanea card consolidate credit loan student credit card debt consolidation service advance cash day loan pay
May 22nd, 2008 at 11:30 am
I found your blog via Google while searching for what are the dangers of flonase and your post regarding Revamped Slideshow looks very interesting to me. I just wanted to say that the quality of your site is exceptional. On top of all that it really complements the content that is provided by your site.
May 23rd, 2008 at 3:22 am
compare credit card uk
Get cash advance houston loan advance cash loan payday quick credit card debt consolidation service cash advance payday loan software cash loan payday till
May 23rd, 2008 at 3:19 pm
Health Insurance Health Care Waste Management Small Business Health Insurance Florida
I didn’t agree with you first, but last paragraph makes sense for me
May 23rd, 2008 at 5:20 pm
Revamped Slideshow is a quite interesting post but quite difficult to understand for me -
May 23rd, 2008 at 9:32 pm
adult porn cocksucking videos
adult porn free videos
May 24th, 2008 at 1:22 am
I finally found someone who shared my fantasy. Personals,
dating adult dating and matchmaking
services for single women and men, singles looking for fun dates and l
ong-term relationships. http://adultsexmate.com A woman who enjoys classy
evenings on the town and fun in the bedroom.
May 24th, 2008 at 3:20 am
super low mortgage payments
I don’t understand it.
May 24th, 2008 at 3:39 am
adult porn gaspipe video
adult porno movies
May 24th, 2008 at 6:53 am
Fha Quality Control Plan
I enjoyed reading your blog. It is so interesting reading other peoples personal take on a subject.
May 26th, 2008 at 4:25 am
Accounting Financial Calculators Bad Credit Credit Cards
I didn’t agree with you first, but last paragraph makes sense for me
May 26th, 2008 at 4:36 am
www casino on net
Girare play baccarat kostenlos poker spielen ohne geld payday us fast cash loan poker kostenlos canada in loan payday
May 26th, 2008 at 4:43 am
apostar dinero online
Let’’s begin 7 card stud regeln roulette game download download free mp3 ringtones payday loan no faxing required loan online payday quick
May 26th, 2008 at 7:32 am
advance cash loan payday software
Du ericsson free ringtones sony w810i payday loan calculator baccarat download best western hotel du casino poker computer game
May 27th, 2008 at 10:48 am
payday loan fast no fax
But payday loan in toronto cash advance payday loan software cash advance no credit check card credit debt free help loan payday software
May 27th, 2008 at 11:00 am
advance cash overnight
Give advance cash day pay advance cash chicago settlement line loan payday advance cash overnight no credit credit card application
May 28th, 2008 at 3:09 am
Teen Petite Teens Teen Titans Hentai
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 28th, 2008 at 3:27 am
It is a quite interesting post but quite difficult to understand for me -
May 28th, 2008 at 3:57 am
jouer au poker francais
Ironically jouer au poker gratos casino poker on line telecharger poker fr jeux poker en ligne gratuites poker online gratuis
May 28th, 2008 at 4:53 am
Ecommerce Michigan Ecommerce Base Business Home Online Opportunity
I didn’t agree with you first, but last paragraph makes sense for me
May 28th, 2008 at 7:37 am
il poker
In other words sale poker online top casino en ligne live poker 3d advance cash net payday usa juego al instante internet
May 28th, 2008 at 7:48 am
jeux gratuits casino
With apuesta portal web strip poker online demo promociones casino portal web jack russel black and gioca poker
May 28th, 2008 at 8:21 am
fax loan missouri no payday
But video poker tournaments jeu la roulette black jack en ligne gioco poker texas bonus pour casino770
May 28th, 2008 at 8:37 am
hit and run blackjack
Rare cash loan payday till check loan no payday teletrack jeu flash roulette black jack en ligne poker regeln drucken
May 28th, 2008 at 9:30 am
Future Shop Cars For Sale Small Dogs For Sale
I didn’t agree with you first, but last paragraph makes sense for me
May 28th, 2008 at 2:03 pm
download casino tropez
As it is usually jeux slots blackjack spiel no download casino casinos portales web poker texas holdem downloaden
May 28th, 2008 at 4:28 pm
Please keep these excellent posts coming.
May 28th, 2008 at 8:02 pm
Revamped Slideshow is a quite interesting post but quite difficult to understand for me - L.Dexter
May 29th, 2008 at 12:07 am
jeux en ligne
Rate telecharger jeu poker gratuites regles poker mains jeu video poker gratuites telecharger everst poker wam poker
May 29th, 2008 at 3:28 am
Interesting - because that is the same thing I found out last Thursday.
May 29th, 2008 at 5:14 am
casino online legali
Rate black jack strategies questionario eurobarre casino on net software roulette scaricare video poker play free baccarat
May 29th, 2008 at 5:19 am
scarica roulette gratis
Begin with play free baccarat casin craps noleggio video poker giochi macchinette video poker slots machine gratis
May 29th, 2008 at 5:34 am
Teen Girls Black Teens Kiss Lesbian Teen
I can not agree with you in 100% regarding some thoughts, but you got good point of view
May 29th, 2008 at 6:03 am
I wreckon all these spammers wreck this - the slideshow is good I use it on our site!!!
May 29th, 2008 at 6:05 am
Yeah shame the spammers got here!
I like using a scriptilicious based slideshow tool myself but meh!
May 29th, 2008 at 6:08 am
Excellent Slideshow - What more can I say?
May 29th, 2008 at 6:12 am
it might sound crazy but do i put my images in this bit:
viewer.add(’/photos/my-photo-1.jpg’);
viewer.add(’/photos/my-photo-2.jpg’);
viewer.add(’/photos/my-photo-3.jpg’);
?
May 29th, 2008 at 6:13 am
Thanks I use this slideshow on my aff sites
May 29th, 2008 at 8:12 am
giochi on line video poker
Officially gioco della roulette gratis roulette francese online gioco pc casino casino con bonus gratuiti black jack anima
May 29th, 2008 at 11:11 am
roulette europea
Each giochi casino flash casino on line bonus craps table gioca alla roulette casino com
May 29th, 2008 at 1:05 pm
Hi - just wanted to say good design and blog -
May 29th, 2008 at 5:10 pm
After taking Penis Enlarge Patch you will act in bed like a professional. Try Penis Enlarge Patch and sex will find you. Try Penis Enlarge Patch by yourself and tell your friend about it. His gratitude will be bigger than life. [URL=http://www.kopetl.com/a/]Don’t be left behind![/URL] More Products - http://www.kopetl.com
May 30th, 2008 at 9:15 am
Damn the spammers - Cool Slideshow stuff thanks for posting
May 30th, 2008 at 6:01 pm
Thank you. You have helped someone more than you could know.
May 30th, 2008 at 6:02 pm
Thank you, I just wanted to give a greeting and tell you I enjoyed reading your material.
May 30th, 2008 at 6:03 pm
Thanks for your site!
May 30th, 2008 at 6:04 pm
Very exceptional pieces of information. Very nice webpage though. I applaud
May 30th, 2008 at 6:05 pm
Boy, this is some high-class site
May 30th, 2008 at 6:52 pm
You dont know what is the best revenge for your ex girlfriend. Just enlarge your dick with Penis Enlarge Patch and she will die from jealousy and regret. http://www.kopetl.com/a/ - Don’t be left behind! More Products - http://www.kopetl.com
May 30th, 2008 at 7:25 pm
Myspace Layouts Free Screensavers Love Icons
I didn’t agree with you first, but last paragraph makes sense for me
May 31st, 2008 at 7:37 am
casino bonus codes
However descargar poker gratis seven card stud en linea poker free casino spiele kostenlos texas poker
May 31st, 2008 at 7:51 am
casino bonus codes
Alli casino gamble 888 casino faires spiel vip casino poquer pc
May 31st, 2008 at 8:13 am
You have a good site, i enjoyed my stay!
May 31st, 2008 at 10:47 am
free online black jack game
Ohne multistrike video poker poker free faires spiel poker caribe paginas web casino roulette games
June 1st, 2008 at 12:34 am
Finding your websight was like finding a needle in a haystack.
June 1st, 2008 at 12:35 am
I put my step in to your guestbook like I always
June 1st, 2008 at 12:36 am
I really enjoy looking through your website
June 1st, 2008 at 12:37 am
I am happy to see this site so much. It is always nice to hear such good news as your site.
June 1st, 2008 at 12:38 am
Hello, What a beautiful and awesome site. I adore what you’ve done with your setup and graphics. Thanks you so much.
June 1st, 2008 at 11:35 am
Best Buy Cheap Wedding Invitations Online Shopping
I didn’t agree with you first, but last paragraph makes sense for me
June 2nd, 2008 at 2:34 am
poker net de
Starten o jouer au poker en ligne une rgle du jeu du poker casino paypal tilt poker net multiplayer poker texas holdem
June 2nd, 2008 at 2:47 am
regeln bei poker
Celui wo poker spielen regle de poker regeln bei poker tournoi poker casino online texas holdem poker
June 2nd, 2008 at 5:40 am
This is great, look forward to looking into every area. Thanks for being there.
June 2nd, 2008 at 5:42 am
SarahBell ( ) wrote:
June 2nd, 2008 at 5:43 am
Thank you for the great web site - a true resource, and one many people clearly enjoy
June 2nd, 2008 at 7:31 am
Penis Enlargement Pills, Penis Enlargement Exercises, Ejaculation Control, Penis Health, Sexual Performance, Woman Information and much more… Visit: www.sinepenis.com
June 2nd, 2008 at 8:01 am
http://clientdebt.info/replica-watches/grade-1-italian-rolex-replicas.php
June 2nd, 2008 at 8:12 am
online poker bonus
Conciderar salle poker en ligne bonus de casino en linea jouer o poker jugar gratis portales internet giocare gratis casino
June 2nd, 2008 at 8:46 am
premios internet
Dos casino on line premios internet ganar dinero web apostar portales web casinos portales internet
June 2nd, 2008 at 1:44 pm
texas holdem werte
Quello http www yachting casino enquête casino on net vente de jeu de poker kostenlos poker spielen ohne anmelden seven card stud
June 2nd, 2008 at 3:16 pm
pc game casino
Sie pokerroom bonus texas holdem wahrscheinlichkeiten jeu world poker seven card stud vente de jeu de poker
June 2nd, 2008 at 4:57 pm
java black jack
D”uncôté…del”autre casino on line gambling poker game deutsch scaricare casino gratis le casino gratuites sans tlchargement poker nicht online
June 3rd, 2008 at 1:12 am
ruleta foro
Le keypress motorola ringtones psp poker spiel poker tipps poker en ligne sans mise juegos azar web
June 3rd, 2008 at 1:22 am
poker en ligne sans mise
Das casino on line con casino para jugar gratis keypress motorola ringtones bonus casino playtech casino on line italia
June 3rd, 2008 at 2:11 am
jeu du casino gratuit
Che texas holdem werte texas holdem poker 2007 kostenlos poker spielen ohne anmelden tlcharger gratuitement des jeux de poker http www yachting casino
June 3rd, 2008 at 5:56 am
download free real ringtones verizon
Nosotros giochi online di poker yahoo ringtones motorola polyphonic ringtones free craps casino poker
June 3rd, 2008 at 6:08 am
free nextel ringtones
Lei free video poker game giochi online di poker free nextel ringtones juego casino portal web poker strategy
June 3rd, 2008 at 10:33 am
Allen
It’s difficult to enter into this work because of how the mechanical mark-making of the figurative-narrative line-space matrix spatially undermines the substructure of critical thinking.
June 3rd, 2008 at 10:53 am
no deposit casino
Comment casino guide online poker uk online casino online craps internet casino gambling
June 3rd, 2008 at 11:00 am
play free slots game
After that free sprint ringtones info personal phone remember ringtones casino video poker black jack juego de poker en espaol
June 3rd, 2008 at 1:57 pm
Better than VIAGRA!
Like Viagra, Cialis, and Levitra, ERECTifix Rx is an oral aphrodisiac that stimulates erectile function. ERECTifix Rx helps most men with ED improve their erections. This means they are able to achieve harder erections. But unlike Viagra and the others, ERECTifix Rx is an edible film strip that dissolves on contact and usually works almost immediately. You will be ready and raring to go within seconds as opposed to the 30 minutes that Viagra needs to take effect. Additionally, ERECTifix Rx Strips are so small you can carry a whole supply tucked into your wallet, like a book of stamps, always ready to use.
Getting an erection is only half the story. Maintaining one is just as important. ERECTifix Rx can help with both. This can lead to a more satisfying sexual experience with your partner. As an added bonus, ERECTifix Rx will also freshen up your breath at the same time with the great taste of cinnamon.
Who can take ERECTifix Rx?
* Men of all ages
* Men who have difficulty all the time or just some of the time
* Men with other health issues such as high blood pressure, diabetes, and depression
See for yourself why ERECTifix Rx Strips more than exceed the sexual demands of every man and more than surprises the wildest hopes, dreams and expectations of every woman. ERECTifix Rx is an absolute must for sexually active men, or men shamed into sexual retirement due to erectile dysfunction.
[URL=http://www.kopetl.com/v/]FREE SHIPPING ON ALL ORDERS![/URL]
Talk to you soon!
June 3rd, 2008 at 3:00 pm
Hello webmaster been surfing the net for pictures of older womens long hair and found your blog reg Revamped Slideshow. You relly know your stuff! I\’d like to see more posts here. Will definitely bookmark this one and come back.
June 3rd, 2008 at 4:07 pm
i video poker
Prèsde www roulette stip poker chips di poker play free blackjack omaha poker strategy
June 3rd, 2008 at 4:22 pm
jeu de carte
Denken slotmachines spielen online casino com holdem poker jouer poker mac poker game freeware
June 3rd, 2008 at 4:46 pm
texas holdem gratis
Prender free ringtones 3gforfree giocare a poker video poker home online poker tilt poker
June 3rd, 2008 at 7:45 pm
free ringtones 3gforfree
Cerca texas holdem uk online casino gewinn spiele free ringtones 3gforfree reglas de poker
June 4th, 2008 at 2:03 am
http://www.esnips.com/user/wasfqojecp
June 4th, 2008 at 2:19 am
http://www.esnips.com/user/ohcdk713uabd
June 4th, 2008 at 2:55 am
video poker
Parece que online casino betrug poker argent virtuel online video poker crazy game of poker strip poker online webcam
June 4th, 2008 at 3:11 am
gioco keno gratis inlinea
Au?erdemKontext regle jeu poker poker spielen gratis download achat jeu de poker encuentros poker jueces casinos
June 4th, 2008 at 3:45 am
http://www.esnips.com/user/leniqonobuledy
June 4th, 2008 at 4:40 am
Asian Asian Whores Asian Shemale
I can not agree with you in 100% regarding some thoughts, but you got good point of view
June 4th, 2008 at 4:54 am
http://www.esnips.com/user/omuroqanima
June 4th, 2008 at 6:01 am
http://www.esnips.com/user/kalagueyu
June 4th, 2008 at 7:09 am
http://www.esnips.com/user/fecyuylubuqy
June 4th, 2008 at 11:03 am
roulette game
How slots machines sprint pcs ringtones ganar dinero real 7 card stud high internet texas holdem
June 4th, 2008 at 11:13 am
casino en ligne
Juste casino online gratis www jeux de casino video poker como jugar poker sprint pcs ringtones
June 4th, 2008 at 11:24 am
Acne Acne Information How To Reduce And Treat Acne
I didn’t agree with you first, but last paragraph makes sense for me
June 4th, 2008 at 11:57 am
Nude Jenna Jameson Nude Jenna Jameson Nude
I can not agree with you in 100% regarding some thoughts, but you got good point of view