- Apr 26, 2001
- 31,046
- 321
- 136
Originally posted by: rh71
Originally posted by: CorporateRecreation
Ok it loads but now it's small as hell and the backround is white, anyway to change it to grey in the XML code and to make it larger?
Use this...
<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="640" HEIGHT="480" id="menu" ALIGN="">
<PARAM NAME=movie VALUE="menu.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="menu.swf" quality=high bgcolor=#FFFFFF WIDTH="640" HEIGHT="480" NAME="menu" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
If the size is too large/small... play around with the WIDTH/HEIGHT. About the menu being white and the rest of your page being gray, if you make your menu gray, the menu items will disappear because they're gray too. My advice to you is to change the rest of your page white instead of gray.
If you must make your menu gray, the code is:
<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="640" HEIGHT="480" id="menu" ALIGN="">
<PARAM NAME=movie VALUE="menu.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#999999> <EMBED src="menu.swf" quality=high bgcolor=#999999 WIDTH="640" HEIGHT="480" NAME="menu" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
BUT, you must then edit your XML file for colors to make the menu items show up as another color. (see the hassle?).
i change it to what your code is and now it's a white box again with a scroll bar and it's white?