You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Transparancy with Flashembed Created Jun 24, 2009

This thread is solved

Views: 1959     Replies: 2     Last reply Oct 30, 2009  
You must login first before you can use this feature

libeco

Posts: 2

Registered:
Jun 24, 2009

Transparancy with Flashembed

Posted: Jun 24, 2009

wmode: 'opaque'

I'm using Flashembed to display a Flash file, with on top of it a menu with the above code. This works as expected. However, is it possible to make the background of the page show through the transparant parts of the Flash file?

Thanks in advance!

libeco

Posts: 2

Registered:
Jun 24, 2009

» Transparancy with Flashembed

Posted: Jun 24, 2009

Reply to: Transparancy with Flashembed, from libeco
This did the trick, I was confused with the Dutch word transparant.
wmode: 'transparent'

Tylo

Posts: 22

Registered:
Jul 10, 2009

» Transparancy with Flashembed

Posted: Oct 30, 2009

Reply to: Transparancy with Flashembed, from libeco
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.