Jan
12
Make HTML Elements Appear on Top of Flash Movie
January 12, 2008 |
When I was making a website for client that has a DHTML popup menu that pops up above the page body which’s a flash movie, I found the easiest way to do so was to set the wmode as transparent within the object tags in HTML that embed the swf (Flash Movie).
When you embed Flash movie in HTML, You will normally see the following two tags:
<object><embed></embed></object>
Now all you need to do is to insert the following tags and attributes to the existing code within the object and embed tags :
<object> <PARAM NAME="wmode" value="transparent"> <embed wmode="transparent"></embed> </object>
Similar Posts
- JavaScript Control Flash Replay
- No Flash Replace with Image
- Flash Upload Mac Problem Fix
- HTML Code
- Get ctp File Recognized in Dreamweaver
- IE6 HTML CSS div height Extra Space
- Flash ActionScript Detect Mouse Press and Hold
Comments
1 Comment so far



































Thanks for sharing this nice tip!