flash plug-in check

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Zester
    Confirmed User
    • Jul 2003
    • 5344

    #1

    flash plug-in check

    is there a 100% bullet proof flash plug-in check?
    something that can absolutely assure that the surfer can see flash without a problem?

    the more I google for it the more I find that a cross browser check like this is near impossible.
    * Mainstream ? $65 per sale
    * new male contraception
  • Zester
    Confirmed User
    • Jul 2003
    • 5344

    #2
    hmm ? noone?
    * Mainstream ? $65 per sale
    * new male contraception

    Comment

    • pornpf69
      Too lazy to set a custom title
      • Jun 2004
      • 15782

      #3
      I dont think so...

      Comment

      • sfera
        Confirmed User
        • Aug 2005
        • 8597

        #4
        negative on that one

        Comment

        • Zester
          Confirmed User
          • Jul 2003
          • 5344

          #5
          hmm.....ok
          Last edited by Zester; 12-18-2005, 01:29 PM.
          * Mainstream ? $65 per sale
          * new male contraception

          Comment

          • aiken
            Confirmed User
            • Jun 2003
            • 204

            #6
            www.browserhawk.com

            It's been flawless for us.

            Cheers
            -b
            ICQ: 12005327

            Comment

            • Zester
              Confirmed User
              • Jul 2003
              • 5344

              #7
              Originally posted by aiken
              www.browserhawk.com

              It's been flawless for us.

              Cheers
              -b
              I need something that is either PHP of javascript based.

              this seems to work with the few browsers (IE 6 and firefox) I tried:
              Code:
              <SCRIPT LANGUAGE=JavaScript1.1>
              <!--
              var MM_contentVersion = 6;
              var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
              if ( plugin ) {
              		var words = navigator.plugins["Shockwave Flash"].description.split(" ");
              	    for (var i = 0; i < words.length; ++i)
              	    {
              		if (isNaN(parseInt(words[i])))
              		continue;
              		var MM_PluginVersion = words[i]; 
              	    }
              	var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
              }
              
              if ( MM_FlashCanPlay ) {
              	alert("flash detected");
              } else{
              	alert("no flash detected");
              }
              //-->
              </SCRIPT>
              Last edited by Zester; 12-18-2005, 11:57 PM.
              * Mainstream ? $65 per sale
              * new male contraception

              Comment

              Working...