home *** CD-ROM | disk | FTP | other *** search
/ Nintendo GameCube Preview CD-ROM / NINTENDOGAMECUBE.iso / site / js / flash_detect.js < prev    next >
Text File  |  2001-08-29  |  2KB  |  37 lines

  1. // Flash Detection / Redirect (non-redirect variant)  v1.0
  2. // http://www.dithered.com/javascript/flash_detect/index.html
  3. // code by Chris Nott (chris@dithered.com)
  4.  
  5. var dontKnow = false;
  6. var flashVersion = 0;
  7.  
  8. var agent = navigator.userAgent.toLowerCase(); 
  9.  
  10. // IE4+ on Win32:  attempt to create an ActiveX object using VBScript
  11. if (agent.indexOf("msie") != -1 && parseInt(navigator.appVersion) >= 4 && agent.indexOf("win")!=-1 && agent.indexOf("16bit")==-1) {
  12.     document.write('<scr' + 'ipt language="VBScript"\> \n');
  13.     document.write('on error resume next \n');
  14.     document.write('if IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")) then flashVersion = 6 \n');
  15.     document.write('if flashVersionn < 6 and IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")) then flashVersion = 5 \n');
  16.     document.write('if flashVersion < 5 and IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")) then flashVersion = 4 \n');
  17.     document.write('if flashVersion < 4 and IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3")) then flashVersion = 3 \n');    
  18.     document.write('</scr' + 'ipt\> \n'); 
  19. }
  20.  
  21. // NS3+ and Opera3+ (support plugin array):  check for Flash plugin in plugin array
  22. else if (navigator.plugins != null && navigator.plugins.length > 0) {
  23.     var flashPlugin = navigator.plugins['Shockwave Flash'];
  24.     if (typeof flashPlugin == 'object') { 
  25.         if (flashPlugin.description.indexOf('6.') != -1) flashVersion = 6;
  26.         else if (flashPlugin.description.indexOf('5.') != -1) flashVersion = 5;
  27.         else if (flashPlugin.description.indexOf('4.') != -1) flashVersion = 4;
  28.         else if (flashPlugin.description.indexOf('3.') != -1) flashVersion = 3;
  29.     }
  30. }
  31.  
  32. // WebTV 2.5 supports flash 3
  33. else if (agent.indexOf("webtv/2.5") != -1) flashVersion = 3;
  34.  
  35. // Can't detect in all other cases
  36. else dontKnow = true;
  37.