Being a new user at flash, web pages and Java I'm a bit stuck . . . . .I want to load a sequence of flash movies one after the other into my web page and then have the sequence go back to the beginning of the sequence and start again
How do I do this. Please note that I dont want the slide shows to be merged into one huge SWF file.
At the moment the it loads the first and second file but it wont go on to load the third the code as it stands is as follows
Here is the code as it stands:
var slideshowNum = 1;
function linkslideshow() {
window.alert("Current display is slideshow image " + slideshowNum + ".");
}
function rotateslideshow() {
if (++slideshowNum > 12)
slideshowNum = 1;
onLoad=window.setTimeout('rotateslideshow();', 1000);
document.write("<param name=\"BGColor\" value=\"ccff33\">");
document.write(' <PARAM NAME=movie VALUE="images/slideshow2.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=menu VALUE=false>');
document.write(' <EMBED src="images/slideshow2.swf" quality=high" ');
document.write(' "images/slideshow" + slideshowNum + ".swf"');
document.write(' " ');
document.write(' type="application/x-shockwave-flash"');
document.write(' pluginspage=" width=\"200\" height=\"300\"></embed></OBJECT>');
How do I do this. Please note that I dont want the slide shows to be merged into one huge SWF file.
At the moment the it loads the first and second file but it wont go on to load the third the code as it stands is as follows
Here is the code as it stands:
var slideshowNum = 1;
function linkslideshow() {
window.alert("Current display is slideshow image " + slideshowNum + ".");
}
function rotateslideshow() {
if (++slideshowNum > 12)
slideshowNum = 1;
onLoad=window.setTimeout('rotateslideshow();', 1000);
document.write("<param name=\"BGColor\" value=\"ccff33\">");
document.write(' <PARAM NAME=movie VALUE="images/slideshow2.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=menu VALUE=false>');
document.write(' <EMBED src="images/slideshow2.swf" quality=high" ');
document.write(' "images/slideshow" + slideshowNum + ".swf"');
document.write(' " ');
document.write(' type="application/x-shockwave-flash"');
document.write(' pluginspage=" width=\"200\" height=\"300\"></embed></OBJECT>');