[FONT=Times New Roman][SIZE=3]There seems to be a time delay problem when the slideshow is playing. It will start playing, but as soon as I click on the next or previous button to view another clip it will mess up the delay time and screw up when the pictures will play. Is there a way on how I can fix this … I attached a link to see what is happening. The following script is what I have playing for the images. What should i do …
[/SIZE][/FONT][FONT=Times New Roman][SIZE=3][COLOR=#800080]Slideshow[/COLOR][/SIZE][/FONT]
I am having the same issue. Basically… if you hit the next or back buttons a few times the slideshow freaks out and jumps around. It’s like it throws the timing off or something.
Thanks for helping! I still seem to have a problem though… When I start the movie it pauses on the second image. I think it is clearing the interval but then not restarting it maybe???
EDIT
I think it’s what I did that is making it not work now. I modified the next & previous functions so that my slideshow would loop and I think that’s what is causing it to hang up. Here’s my code for that:
function nextImage() {
if (p<(total-1)) {
p++;
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}else{
p = 0;
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}
}
function prevImage() {
if (p>0) {
p--;
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}else{
p = total - 1;
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}