Click here to Skip to main content
15,881,455 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Respected Sir,
i use flash file in my asp.net page and a image control.And also use ajax modalpopup extender control but one problem occur when i open it in Internet Explorer and click on that image the modalpopup extender open but it display behind flash and i required front of the page.Please give me some suggetion.

Thanks in Advaned
Posted
Updated 19-Nov-12 0:41am
v2
Comments
[no name] 19-Nov-12 6:04am    
pls provide some codes..

1 solution

Looks like you bump into a common window mode problem. This can be fixed by adding wmode parameter with value "opaque" or "transparent" to flash object:
HTML
<param name="wmode" value="opaque">

Or, if you insert flash using iframe (this is a common case when you embed YouTube video), add wmode=opaque or wmode=transparent to URL in src parameter.

You can read more here[^] and here[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900