Flash and active x ... O.o

Discussion in 'HTML & Website Design' started by Morphiex, Aug 2, 2006.

  1. #1
    so ive googled many things about this but nthing has rerally helped me... I want to get rid of the whole clik to activate flash thing in explorer and now the newer version of opera... any suggestions will be greatly appriciated =)
     
    Morphiex, Aug 2, 2006 IP
  2. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #2
    kk5st, Aug 2, 2006 IP
  3. Morphiex

    Morphiex Peon

    Messages:
    9
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    yeah found out it was spybots and , i needed to upgrade the forum and add visual confirmation..... but since i had some problems with upgrading the admin board , and i use a custom theme i had to resort to just instant bannign the spybots.....
     
    Morphiex, Aug 7, 2006 IP
  4. pcoptimized

    pcoptimized Peon

    Messages:
    193
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Make a file called ieupdate.js and paste this code into it:


    theObjects = document.getElementsByTagName("object"); for (var i = 0; i < theObjects.length; i++) { theObjects[i].outerHTML = theObjects[i].outerHTML; }
    
    Code (markup):
    Then, right after your .swf file (I put mine right after the OBJECT tag) on your page, paste this code:

    <script type="text/javascript" src="ieupdate.js"></script>
    Code (markup):
    This is a simple fix that works for the sites I've built. There are many approaches to making it to where your users won't have to "activate" the .swf file when viewing your site, but the one I listed was simple and done in less than 5 mins for me.

    This site explains it: http://www.amarasoftware.com/flash-problem.htm
     
    pcoptimized, Aug 7, 2006 IP