pass wmode="opaque" parameter?
emdalton - June 4, 2007 - 14:09
| Project: | SWFObject API |
| Version: | 5.x-1.1 |
| Component: | Documentation |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
Hi,
I need to make sure menus can drop down in front of flash objects. I know I need to pass the wmode="opaque" parameter to the flash object. How can I do this within SWFObject API?
Thanks
Elizabeth

#1
you can add $params['wmode'] = 'opaque'; in the $params array.
#2
Yep, I figured that out this morning. Like this:
$params = array('width' => 600, 'height' => 400, 'wmode' => "opaque" );Thanks.