| Home | Tutorials | Forums | Articles | Blogs | Movies | Library | Employment | Press | Buy templates |
|
|
#1 |
|
Intermediate Developer
Join Date: Oct 2004
Location: The Keystone State
Posts: 284
|
I don't know what or where to put in any HTML code to make my flash movie's background to be transparent, It's not a movie, it's a navbar, and it's background is bigger then the image itself. If you need to look at it, see http://www.piratefish.com/flash.html Please offer any advice.
|
|
|
|
|
|
#2 |
|
Super Moderator
Join Date: Jan 2002
Location: Centreville, VA
Posts: 24,881
|
Howdy and Welcome...
![]() You probably need to put wmode="transparent" somewhere in your HTML code to do that... ![]()
__________________
CyanBlue / Jason Je / Macromedia Certified Flash Developer & Designer http://CyanBlue.FlashVacuum.com http://www.FlashVacuum.com http://tutorials.FlashVacuum.com Do NOT PM, Email or Call me... Your question belongs right in this forum...
|
|
|
|
|
|
|
|
|
#3 |
|
Intermediate Developer
Join Date: Oct 2004
Location: The Keystone State
Posts: 284
|
Well would I put it as PARAM NAME=WMODE VALUE=TRANSPARENT if so, then is it on my webpage, or is it in the published html code from flash? Also if you could give me an exact spot in either codes, the published code from Flash has a bunch of PARAM parts, and I'm not sure which to put.
|
|
|
|
|
|
#4 |
|
ruby on rails fan :)
|
In your html...
In order for it to be compatible with internet explorer you need to use : <param name="wmode" value="transparent" /> for compatibility with other browsers (mozilla and opera7) you need to use wmode="transparent" inside your embed tag. Here is an example: Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="640" height="480" id="Untitled-1" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="Untitled-1.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <param name="bgcolor" value="#ffffff" /> <embed src="Untitled-1.swf" quality="high" wmode="transparent" bgcolor="#ffffff" width="640" height="480" name="Untitled-1" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> like I did for this example |
|
|
|
|
|
#5 |
|
Intermediate Developer
Join Date: Oct 2004
Location: The Keystone State
Posts: 284
|
thank you all so much. I need to look before I start asking for help. Thanks again.
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|