DropDown hinter Flash
Problem: Ein Dropdown befindet sich nach aufklappen hinter dem unten positionierten Flash.
Lösung: Fasst alle Browser positionieren das DropDown vor dem Flash, jedoch nicht alle wie z.b.: bestimmte Versionen von IE 6. Um nun dieses Problem zu lösen müsst ihr einfach den wmode eures flashes auf transparent setzen:
<script type="text/javascript">
var so = new SWFObject("flashfile.swf", "name", "width", "height",
"version", "#hex");
so.addVariable("flashVarText", "this is passed in via FlashVars for
example only"); // this line is optional, but this example uses the
variable and displays this text inside the flash movie
so.addParam("wmode", "transparent");
so.write("div id");
</script>
