Results 1 to 4 of 4

Thread: Line around Flash

  1. #1
    Join Date
    Sep 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Wink Line around Flash

    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

  2. #2
    Join Date
    Aug 2007
    Location
    Somewhere in the vicinity of Betelgeuse
    Posts
    23
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    First, you should consider testing your site in something other than IE. Second, you should consider using something like SWFObject to embed your flash.

  3. #3
    Join Date
    Oct 2005
    Posts
    255
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    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....
    Hey new design new look, goto xudas for personal webdsign help.. (:

  4. #4
    Join Date
    Sep 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •