I still don't understand where is the problem with running multiple Flash files on the same page. First day I've got this code from deconcept I started to use it like this, and it works perfectly (pay attention to the FLASHCONTENT numbers marked in red) :
For example... first flash animation on your page:
...second flash animation on your page:Code:<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent1">
Either you don't have Flash plugin installed or you have Javascript turned off.
Both are required for browsing this page...
</div>
<script type="text/javascript">
var fo = new FlashObject("3D_Anim_Room.swf", "3D_Anim_Room", "213", "185", "7", "#000000");
fo.addParam("align", "t");
fo.write("flashcontent1");
</script>
...third flash animation on your page:Code:<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent2">
Either you don't have Flash plugin installed or you have Javascript turned off.
Both are required for browsing this page...
</div>
<script type="text/javascript">
var fo = new FlashObject("MainAnim.swf", "MainAnim", "422", "450", "7", "#000000");
fo.addParam("align", "t");
fo.write("flashcontent2");
</script>
Last ione contains this line also:Code:<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent3">
Either you don't have Flash plugin installed or you have Javascript turned off.
Both are required for browsing this page...
</div>
<script type="text/javascript">
var fo = new FlashObject("LittleIntro.swf", "LittleIntro", "111", "111", "7", "#000000");
fo.addParam("align", "t");
fo.addParam("wmode", "transparent");
fo.write("flashcontent3");
</script>
Just because I wanted it to be transparent, otherwise you can exclude it...Code:fo.addParam("wmode", "transparent");
And so on, and so on... again, just pay attention to those FLASHCONTENT numbers... it's just like layering kind -of thing.
Hope this helps someone...
Cheers !
Sasha
P.S. Take a look at my PORTFOLIO link in my signature... on the splash page, you can see three different Flash animations playing in the same time without any difficulties. And also, the top one is actually even nested inside the floating layer (just try to resize your browser's window, horizontal axis)
