Support: Conflicts with other Flash files
If Bubble Guru renders under other Adobe Flash files on your webpage,
You may need to make a small modification as outlined below.

(1) If you placed a Bubble Guru on your webpage and have noticed that some Flash files on your webpage seem to conflict with your Bubble Guru video message, as seen below, please refer to steps 2 and 3.


(2) If you are using the basic Flash Object/Embed tag to embedding Adobe Flash content into your webpage, you will need to add a transparency parameter to your tag.

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="550" HEIGHT="400" id="myMovieName">
<PARAM NAME=movie VALUE="myFlashMovie.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=wmode VALUE=transparent>

<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="myFlashMovie.swf"
wmode="transparent"
quality=high bgcolor=#FFFFFF WIDTH="550" HEIGHT="400" NAME="myMovieName" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>


(3) If you are using a SWFObject Javascript type of file to embed Adobe Flash content into your webpage, you will need to add a transparency parameter to your script.

<script type="text/javascript">
var so = new SWFObject("movie.swf", "mymovie", "400", "100%", "8", "#336699");
so.addParam("quality", "low");
so.addParam("wmode", "transparent");

so.addParam("bgcolor", "#ffffff");
so.write("flashcontent");
</script>