serg2049,
> I used the param name="wmode" value="opaque" fof the
> first problem
By using SWFObject -- which is a great choice, by the way --
you're
overriding whatever attributes you added to your OBJECT and
EMBED tags by
hand. My guess is that your "mainflash" DIV contains the
OBJECT/EMBED combo
that specifies wmode.
SWFObject *replaces* whatever is inside your "mainflash"
DIV. With
SWFObject (or another solution like it), you don't need any
OBJECT/EMBED
tags at all. If you want, you can simply put text or an image
inside the
DIV whose id attribute is set to "mainflash".
You'll want to use SWFObject's addParam() method to specify
wmode there:
<script type="text/javascript" language="javascript">
var fo = new FlashObject("ivrccanim.swf", "main", "444",
"354", "7",
"#FFFFFF");
fo.addParam("wmode", "opaque");
fo.write("mainflash");
</script>
The SWFObject website shows this very example, and others,
in its
Examples heading here:
http://blog.deconcept.com/swfobject/
David Stiller
Co-author, Foundation Flash CS3 for Designers
http://tinyurl.com/2k29mj
"Luck is the residue of good design."