Hallo,
Ik heb een html pagina met daarin een div pop-up. In de html pagina staat een Iframe met daarin een flash movie. Nu is het zo dat de div pop-up onder het iframe komt te staan ipv erboven zoals bedoeld..
Ik heb de div pop-up al een z-index van 100 mee gegeven. en de flash movie in een div geplaatst met als z-index 1. toch blijft de flash movie over mijn div heen gaan..
Iemand enig idee??
Mijn flash movie wordt ge-embed op de volgende wijze:
<div style="position:absolute; z-index:0;">
<script language="javascript">
var urlString = document.location.href;
var paramIndex = urlString.indexOf("?")+1;
var paramString = urlString.substring(paramIndex,urlString.length);
document.write(" <OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'");
document.write(" CODEBASE='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'");
document.write(" WIDTH='790'");
document.write(" HEIGHT='400'");
document.write(" ID='theMovie'>");
document.write(" <PARAM NAME='src' VALUE='mapviewer.swf'>");
document.write(" <PARAM NAME='FlashVars' VALUE='" + paramString + "' >");
document.write(" <EMBED SRC='mapviewer.swf'");
document.write(" FlashVars='" + paramString + "'");
document.write(" PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'");
document.write(" WIDTH='790'");
document.write(" HEIGHT='400'");
document.write(" NAME='theMovie'>");
document.write(" </EMBED>");
document.write(" </OBJECT>");
</script>
</div>
Ik heb een html pagina met daarin een div pop-up. In de html pagina staat een Iframe met daarin een flash movie. Nu is het zo dat de div pop-up onder het iframe komt te staan ipv erboven zoals bedoeld..
Ik heb de div pop-up al een z-index van 100 mee gegeven. en de flash movie in een div geplaatst met als z-index 1. toch blijft de flash movie over mijn div heen gaan..
Iemand enig idee??
Mijn flash movie wordt ge-embed op de volgende wijze:
<div style="position:absolute; z-index:0;">
<script language="javascript">
var urlString = document.location.href;
var paramIndex = urlString.indexOf("?")+1;
var paramString = urlString.substring(paramIndex,urlString.length);
document.write(" <OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'");
document.write(" CODEBASE='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'");
document.write(" WIDTH='790'");
document.write(" HEIGHT='400'");
document.write(" ID='theMovie'>");
document.write(" <PARAM NAME='src' VALUE='mapviewer.swf'>");
document.write(" <PARAM NAME='FlashVars' VALUE='" + paramString + "' >");
document.write(" <EMBED SRC='mapviewer.swf'");
document.write(" FlashVars='" + paramString + "'");
document.write(" PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'");
document.write(" WIDTH='790'");
document.write(" HEIGHT='400'");
document.write(" NAME='theMovie'>");
document.write(" </EMBED>");
document.write(" </OBJECT>");
</script>
</div>