MiSs_Ge
06-08-2008, 11:23 PM
Hi! I need help!
I had a code for add 2 .swf in my html. Now I want 3 .swf but my code doesn't work!! Someone wants help me please? :D
___________________________________
// Generate a Random Number
var randomnumber = Math.round(Math.random()*3);
// Select a movie and execute the corresponding function
if (randomnumber == 0)
{movie1();
}
else
{movie2();
}
else
{movie3();
}
//Functions to write out the correct flash movie resource.
function movie1(){
document.write("<object classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\' codebase=\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width=\'855\' height=\'500\'><param name=movie value='index.swf'><param name=quality value=high><embed src='index.swf' quality=high pluginspage=\'http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\' type=\'application/x-shockwave-flash\' width=\'855\' height=\'500\'></embed></object>")
}
function movie2(){
document.write("<object classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\' codebase=\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\' width=\'855\' height=\'500\'><param name=movie value='index2.swf'><param name=quality value=high><embed src='index2.swf' quality=high pluginspage=\'http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\' type=\'application/x-shockwave-flash\' width=\'855\' height=\'500\'></embed></object>")
}
function movie3(){
document.write("<object classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\' codebase=\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\' width=\'855\' height=\'500\'><param name=movie value='index3.swf'><param name=quality value=high><embed src='index3.swf' quality=high pluginspage=\'http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\' type=\'application/x-shockwave-flash\' width=\'855\' height=\'500\'></embed></object>")
}
___________________________________
I can't find my error... Thx!
I had a code for add 2 .swf in my html. Now I want 3 .swf but my code doesn't work!! Someone wants help me please? :D
___________________________________
// Generate a Random Number
var randomnumber = Math.round(Math.random()*3);
// Select a movie and execute the corresponding function
if (randomnumber == 0)
{movie1();
}
else
{movie2();
}
else
{movie3();
}
//Functions to write out the correct flash movie resource.
function movie1(){
document.write("<object classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\' codebase=\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width=\'855\' height=\'500\'><param name=movie value='index.swf'><param name=quality value=high><embed src='index.swf' quality=high pluginspage=\'http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\' type=\'application/x-shockwave-flash\' width=\'855\' height=\'500\'></embed></object>")
}
function movie2(){
document.write("<object classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\' codebase=\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\' width=\'855\' height=\'500\'><param name=movie value='index2.swf'><param name=quality value=high><embed src='index2.swf' quality=high pluginspage=\'http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\' type=\'application/x-shockwave-flash\' width=\'855\' height=\'500\'></embed></object>")
}
function movie3(){
document.write("<object classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\' codebase=\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\' width=\'855\' height=\'500\'><param name=movie value='index3.swf'><param name=quality value=high><embed src='index3.swf' quality=high pluginspage=\'http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\' type=\'application/x-shockwave-flash\' width=\'855\' height=\'500\'></embed></object>")
}
___________________________________
I can't find my error... Thx!