Here's my code:
I've got a flash slideshow on my page. I've used thickbox for login but when someone clicks on the login, the flash overlays thickbox.
I've managed to solve the problem on Firefox, but nothing seems to work on Internet Explorer.
|
feedback
|
|
You need to use one of the following attributes in order to get Flash to sit "within" the DOM rather than over it. wmode=transparent -or- wmode=opaque Comes with the disadvantage of breaking a number of features. | |||
feedback
|
|
spender is correct, but he didn't explain it much. wmode is an attribute that gets set in the html when you embed the swf, and it needs to be set to transparent. So if you were using AC_RunActiveContent you'd add | |||
|
feedback
|
|
I had the same problem with the following flash object:
Note the line Hope it helps you. Bye | |||
|
feedback
|
|
in the thickbox.js file you can use this: seach for the tb_show function and add this at the end of the "try" before the "catch":
and
search for the tb_remove function, and add this before the return:
| ||||
|
feedback
|
|
The answer of Trey works pretty well for all flash items on page. The code for the tb_remove function
should be placed inside
This way it only appears after the fadeout and not instantly... | |||
|
feedback
|
|
ok, after 2 days of searching the web for the answer i've found a pure JS function that fix it in all browsers! there you go:
now you can just run in when the page loads with jQuery:
| |||
|
feedback
|
|
SIMPLE WAY TO DO IT. Tested only on IE9 and FIREFOX.
The CSS
The XHTML
And, in Mani's words... That's It! | |||
|
feedback
|