Bringing this thread back from the dead...
This doesn't seem to do the trick for me.
$("#banner").flashembed("tlea_banner4.swf",{
wmode: 'transparent'
});
The background is white, when I need it to me transparent. Any thoughts on what I am doing wrong?
EDIT: Solved by using:
flashembed.domReady(function(){
flashembed("banner", {src: "tlea_banner4.swf", wmode: 'transparent' });
});
I essentially gave up on using the jQuery support, as I did not find sufficient documentation. Fortunately, I didn't need to repeat embedding anywhere, so this wasn't really an issue.