Image Help

L

Linda

I am using Frontpage 2002 and want to rotate (swap)
images on my home page. I found the script I need to do
this; however, instead of rotating in order, it randomly
rotates. Please tell me what I need to change to stop it
from randomly rotating. Thanks for your help.

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var interval = 2.5; // delay between rotating images (in
seconds)
var random_display = 1; // 0 = no, 1 = yes
interval *= 1000;

var image_index = 0;
image_list = new Array();
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/blmtn.jpg");
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/fall.jpg");
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/mtn_creek.jpg");
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/Fog_trees.jpg");
var number_of_image = image_list.length;
function imageItem(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
}
function get_ImageItemLocation(imageObj) {
return(imageObj.image_item.src)
}
function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}
function getNextImage() {
if (random_display) {
image_index = generate(0, number_of_image-1);
}
else {
image_index = (image_index+1) % number_of_image;
}
var new_image = get_ImageItemLocation(image_list
[image_index]);
return(new_image);
}
function rotateImage(place) {
var new_image = getNextImage();
document[place].src = new_image;
var recur_call = "rotateImage('"+place+"')";
setTimeout(recur_call, interval);
}
// End -->
</script>
 
S

Steve Easton

The answer is in the commented portion of the 3rd line of the script:
//0=no 1=yes

so, change this.
var random_display = 1; // 0 = no, 1 = yes

to this:
var random_display = 0; // 0 = no, 1 = yes

Save the page
--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
L

Linda

Thank you so much!
-----Original Message-----
The answer is in the commented portion of the 3rd line of the script:
//0=no 1=yes

so, change this.
var random_display = 1; // 0 = no, 1 = yes

to this:
var random_display = 0; // 0 = no, 1 = yes

Save the page
--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

I am using Frontpage 2002 and want to rotate (swap)
images on my home page. I found the script I need to do
this; however, instead of rotating in order, it randomly
rotates. Please tell me what I need to change to stop it
from randomly rotating. Thanks for your help.

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var interval = 2.5; // delay between rotating images (in
seconds)
var random_display = 1; // 0 = no, 1 = yes
interval *= 1000;

var image_index = 0;
image_list = new Array();
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/blmtn.jpg");
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/fall.jpg");
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/mtn_creek.jpg");
image_list[image_index++] = new imageItem
("http://blueridge-georgia.com/images/Fog_trees.jpg");
var number_of_image = image_list.length;
function imageItem(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
}
function get_ImageItemLocation(imageObj) {
return(imageObj.image_item.src)
}
function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}
function getNextImage() {
if (random_display) {
image_index = generate(0, number_of_image-1);
}
else {
image_index = (image_index+1) % number_of_image;
}
var new_image = get_ImageItemLocation(image_list
[image_index]);
return(new_image);
}
function rotateImage(place) {
var new_image = getNextImage();
document[place].src = new_image;
var recur_call = "rotateImage('"+place+"')";
setTimeout(recur_call, interval);
}
// End -->
</script>


.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Image Help! 1
rotating pictures in FP2003 2

Top