a webmaster learning community
     Home    Register     Search      Help      Login    
FrontPage Alternative
Sponsors

Hosting from $3.99 per month!

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions. dd

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

Slide show with thumbnails

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Microsoft FrontPage Help >> Slide show with thumbnails
Page: [1]
 
dmorton

 

Posts: 2
Joined: 9/12/2006
Status: offline

 
Slide show with thumbnails - 9/14/2006 16:02:03   
I have never done a slide show before, but what I need is several 4" pictures to fade in and out on my index page. Does Front PAGE 2003 have this ability? If not what do I need to learn to do this?
Thanks

Donna
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: Slide show with thumbnails - 9/14/2006 17:19:04   
I don't think FP is anywhere near that sophisticated.

You could trundle off and learn Flash, see you in 6 months.

Or you could go look for one that's already been done and is either free or a reasonable price. You're more likely to find a javascript one that does it for free. Flash tends to be pricey.

So go look in

Dynamic Drive to see what they have
Failing that try www.hotscripts.com

or you could just go and grab this which I found while googling just now.

_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to dmorton)
womble

 

Posts: 5721
Joined: 3/14/2005
From: Living on the edge
Status: offline

 
RE: Slide show with thumbnails - 9/14/2006 18:37:27   
Nice find Jaybee! Looks interesting...

*must go and read chapter in new book on making Flash accessible*

_____________________________

~~ "A cruel god ain't no god at all" ~~
~~ Erase hate. Practice love. ~~
:)

(in reply to jaybee)
Tailslide

 

Posts: 6366
Joined: 5/10/2005
From: Out here on the raggedy edge
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 2:34:17   
I can recommend this script that I've used several times - the bonus of it is that it works cross browser when a lot of these Javascripts don't:

http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm

_____________________________

Little Blue Plane Web Design | Land Rover project

:)

(in reply to womble)
Larry M.

 

Posts: 2906
Joined: 2/20/2003
From: Greenville, South Carolina, USA
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 9:16:26   
Helena,

Do you know if this script can be modified to display descriptive text?

Thanks as usual :)

_____________________________

Larry M.

If hope and forgiveness don't work, buy a gun

(in reply to dmorton)
womble

 

Posts: 5721
Joined: 3/14/2005
From: Living on the edge
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 9:40:16   
My javascript's a little rusty, but it should be possible to add in an array containing captions/text, or you could check out this one from the same site. There's also a good one I've used from I think it was Alistapart but I can't find the bookmark right now...brb...

<edit>
I'm back! :) This one doesn't have an automatic transition, but it's useful if you've got a small list of images you want to display - and it's cross browser friendly and valid and stuff.
</edit>

_____________________________

~~ "A cruel god ain't no god at all" ~~
~~ Erase hate. Practice love. ~~
:)

(in reply to Larry M.)
Tailslide

 

Posts: 6366
Joined: 5/10/2005
From: Out here on the raggedy edge
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 9:48:35   
Here's hopefully the answer to having text descriptions for the fade-in slideshow from DD's forum

http://www.dynamicdrive.com/forums/showthread.php?t=11669&highlight=Ultimate+Fade-in

_____________________________

Little Blue Plane Web Design | Land Rover project

:)

(in reply to womble)
Larry M.

 

Posts: 2906
Joined: 2/20/2003
From: Greenville, South Carolina, USA
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 14:09:53   
Helena,

Very helpful as always, BUT enough over my head so I won't be able to follow-through in the time I have to meet a self-imposed business deadline (damn thing keeps moving:)).

I'll be happy to pay for workable code which: (1) accommodates a 4 image row with each image about 120 pixels in width, (2) each image to have the transition effect (my idea is to have 4-5 images "under" each main image and (3) each image as it displays to have a brief text description.

I may want to have this script on more than one page, so I will need an understanding of how each page script is controlled (.js file with a unique name in the root directory?) I have a little working knowledge if the transition script operates like a .js banner file.



_____________________________

Larry M.

If hope and forgiveness don't work, buy a gun

(in reply to dmorton)
womble

 

Posts: 5721
Joined: 3/14/2005
From: Living on the edge
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 15:18:21   
Larry, all you need to do is to add in the code changes detailed in that thread to the original code supplied on the main site - the large javascript file either in the <head> of the page or as an external js file, and the other in the <body> wherever you want the slideshow to appear.

The only thing you have to do in that main script that goes in the <head> is give it the list of files you want in the slideshow (right near the top of the script):
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["../photo1.jpg", "", "", "I'm George"] //plain image syntax
fadeimages[1]=["../photo2.jpg", "http://www.cssdrive.com", "", "I'm Sarah"] //image with link syntax
fadeimages[2]=["../photo3.jpg", "http://www.javascriptkit.com", "_new", "Who are you?"] //image with link and target syntax


so for example for their demo of the two images/slideshows, they have:
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["photo1.jpg", "", ""] //plain image syntax
fadeimages[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax

var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["../dynamicindex4/bs00825a.gif", "http://www.wired.com", ""]
fadeimages2[1]=["../dynamicindex4/bs00847a.gif", "http://www.theregister.com", ""]
fadeimages2[2]=["../dynamicindex4/hh01478a.gif", "http://www.news.com", "_new"]


To have four images in a row, you'd just add in two more code blocks like that. There examples show the different methods of using links etc. as well though, so you'd just need the plain image syntax type, with the extra bit shown in that thread, so you'd have, for your first image in the row:

var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["../photo1.jpg", "", "", "Your text here"] //plain image syntax
fadeimages[1]=["../photo2.jpg", "", "", "Your text here"]
fadeimages[2]=["../photo3.jpg", "", "", "Your text here"]

You can add more images to the slideshow by just giving it the next number up - i.e. to add in three more images you'd use fadeimages[3], fadeimages[4], and fadeimages[5], ie.:
fadeimages[3]=["../photo4.jpg", "", "", "Your text here"] 
fadeimages[4]=["../photo5.jpg", "", "", "Your text here"]
fadeimages[5]=["../photo6.jpg", "", "", "Your text here"]


For each photo in the row you want, you'd just have another array like that, but rather than calling the next one 'fadeimages' you'd call it fadeimages2 or whatever - but I've attached the full script with the changes as a text file - all you need to do is change the image paths and add in whatever text you want for each image.

If you look at the source code for that page on Dynamic Drive, that's what they've done there and they've just set up a table to hold those two slideshow images - add another couple of cells to your table and you've got your holder for your slideshows.

In each table cell you just add the following, one in each table cell, as in Step 2 - for the first image in the row:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 120, 225, 0, 3000, 1, "R")
</script>

For the second:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages2, 120, 225, 0, 3000, 1, "R")
</script>

Third:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages3, 120, 225, 0, 3000, 1, "R")
</script>

Fourth:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages4, 120, 225, 0, 3000, 1, "R")
</script>

The second parameter for each slideshow is your image width "120". The next one, currently 225 you'll need to alter to a height that allows enough room for both the image and the text. The next one's "0", currently set at no border - alter that for each to suit, and you can change the delay between the changes in milliseconds - it's currently at 3000 = 3 seconds. Penultimate value is whether you want it to pause when the mouse is over it - it's currently set to ("1") - it should be "0" if you don't want it to pause. The final one's optional and tells it to randomise the order the pics are displayed in. If you don't want it to be random, just remove that last parameter.

That's all there is to it. :)

Full script file here.

_____________________________

~~ "A cruel god ain't no god at all" ~~
~~ Erase hate. Practice love. ~~
:)

(in reply to Larry M.)
Seventh

 

Posts: 1235
Joined: 8/4/2002
From: The Motor City
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 15:32:36   
(Speaking as Womble's Financial Advisor)

And that'll be $6,000.:)

_____________________________

"go forth and create."

(in reply to womble)
Larry M.

 

Posts: 2906
Joined: 2/20/2003
From: Greenville, South Carolina, USA
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 20:35:50   
quote:

That's all there is to it


Helena,

WOW! Choke! Gasp! I'll try to get my weak mind around this somehow. .... But, first a dram or two (say liter) of Liebfraumilch to condition (further numb) the senses.

Hope you will allow me to contact you off-Forum in the (very likely) event of failure :)

Thanks!

_____________________________

Larry M.

If hope and forgiveness don't work, buy a gun

(in reply to dmorton)
womble

 

Posts: 5721
Joined: 3/14/2005
From: Living on the edge
Status: offline

 
RE: Slide show with thumbnails - 9/15/2006 20:40:48   
It's Womble, not Helena. :)

_____________________________

~~ "A cruel god ain't no god at all" ~~
~~ Erase hate. Practice love. ~~
:)

(in reply to Larry M.)
Page:   [1]
OutFront Discoveries

All Forums >> Web Development >> Microsoft FrontPage Help >> Slide show with thumbnails
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts