|
Tailslide -> RE: free screensaver program - .exe output? (3/29/2008 3:25:20)
|
Whoa you've got a load of errors there - you've got the slideshow script in a document head... but it's the second one - there should only be one. Move the script up to the first document head - remove the second one and ensure that you only have one of each: <html> <head> </head> <body> </body> </html> Obviously the above leaves out all the stuff in each of the sections! Now once you've sorted that out, bearing in mind that you're not using the more "modern" coding techniques I can't explain my normal methods so you're probably stuck with doing the following: <div align="center">
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause0, optionalRandomOrder)
new fadeshow(fadeimages, 275, 275, 1, 3000, 1, "R")
new fadeshow(fadeimages2, 140, 225, 0, 5000, 0)
</div>
</script> It's been a while since I've had to use "align" in a tag but I think it should work.
|
|
|
|