bgnagle
09-25-2007, 11:49 PM
Hello
I am baffled. on the website www.sunquestpromotions.com when you hover over the flash at the top of the page, you see a line around the entire flash "box" How do I get rid of it. It is similiar to the image box around large graphics on MSN but the "no imagemenu" code does not take care of it
Thank you
Bobbi
Mr Moo
09-26-2007, 12:32 AM
First, you should consider testing your site in something other than IE. Second, you should consider using something like SWFObject (http://blog.deconcept.com/swfobject/) to embed your flash.
insanemonkey
09-26-2007, 12:33 AM
theres some way in flash that someone told me, that you have to insert a code or make it and it will stop the line from doing that, look around cuz there is a way to do this in flash....
jetho
09-26-2007, 10:48 AM
Try this:
Insert this script inside the <head> tag:
<script src="AC_OETags.js" language="javascript"></script>
If you don't have the file AC_OETags.js, you can find it and copy it from the internet.
Replace your flash object coding with this code:
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0',
'width', '1004',
'height', '285',
'src', 'flash/banner.swf',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'opaque',
'devicefont', 'false',
'id', 'flash/banner.swf',
'bgcolor', '#000000',
'name', 'flash/banner.swf',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'flash/banner.swf',
'salign', ''
); //end AC code
}
</script>
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.