How can I set the background of my Flash movie as transparent in Dreamweaver or in any HTML page?
look in the HTML. you see where it has the embed tags for your SWF? you have to set the wmode property to transparent. you’ll have to add it yourself though. for example, my footer has a transparent background. my embed tag looks like this:
<embed src=http://filebox.vt.edu/users/mdimatul/swf/footer.swf width=300 height=60 wmode=transparent>
I’d recommend editing the HTML file itself instead of doing it in Dreamweaver, you may never know if DW will change anything.
Thanks so much!