fuknbob / flash-videoio

Automatically exported from code.google.com/p/flash-videoio
0 stars 0 forks source link

Background color remains white for white-labelled swf #5

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
First reported by joshua.shaffner@gmail.com on Mar 9, 2011.

--
I tried setting bgcolor to go with the rest of the webpage but the
background of the VideoIO.swf kept showing white. :(

Joshua

Original issue reported on code.google.com by kundan10 on 10 Mar 2011 at 9:23

GoogleCodeExporter commented 8 years ago
You can use the wmode as transparent in your HTML's object and embed tags. I 
have changed http://myprojectguide.org/p/flash-videoio/11.html to show it as 
example by changing the background of the table as grey, and VideoIO as 
transparent.

<object ...>
    ...
    <param name="bgcolor" value="#ffffff" />
    <param name="wmode" value="transparent" />
    <embed ... 
        bgcolor="#ffffff" wmode="transparent">
    </embed>
</object>

Tested on Firefox and Chrome on Mac OS.

Original comment by kundan10 on 13 Mar 2011 at 8:51