
When you embed a Flash object on a web page, FlashPlayer takes over. It thinks it should be on top and will hide anything you attempt to show over it. Here's how you change that.
The Flash Player needs to be made transparent. You can do this by adding the wmode parameter to the embedding code and setting it to transparent.
The following example uses the exported index.html. You will need to modify these directions if you are using a WYSIWYG editor (like Dreamweaver) or you are not using swfobject.js to embed your slideshow.
Open index.html in a plain-text editor (like Notepad for Windows).
Find the following code:
var params = {
bgcolor: "#000000",
allowfullscreen: "true"
}
Modify that code to:
var params = {
wmode: "transparent",
bgcolor: "#000000",
allowfullscreen: "true"
}