InsertFlash.js
上传用户:z100004
上传日期:2020-03-27
资源大小:1084k
文件大小:4k
源码类别:

TAPI编程

开发平台:

Visual Basic

  1. var FlashDetected = 0;
  2. if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] &&
  3. navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) {
  4. if (navigator.plugins && navigator.plugins["Shockwave Flash"])
  5. FlashDetected  = 1;
  6. }
  7. else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 &&
  8. (navigator.userAgent.indexOf("Windows 95")>=0 || 
  9.  navigator.userAgent.indexOf("Windows 98")>=0 || 
  10.  navigator.userAgent.indexOf("Windows NT")>=0)) {
  11. document.write('<SCRIPT LANGUAGE=VBScript> n');
  12. document.write('on error resume next n');
  13. document.write('FlashDetected  = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3")))n');
  14. document.write('if ( FlashDetected  <= 0 ) then FlashDetected  = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.9")))n');
  15. document.write('if ( FlashDetected  <= 0 ) then FlashDetected  = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.8")))n');
  16. document.write('if ( FlashDetected  <= 0 ) then FlashDetected  = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.7")))n');
  17. document.write('if ( FlashDetected  <= 0 ) then FlashDetected  = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")))n');
  18. document.write('if ( FlashDetected  <= 0 ) then FlashDetected  = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))n');
  19. document.write('if ( FlashDetected  <= 0 ) then FlashDetected  = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4")))n');
  20. document.write('</SCRIPT> n');
  21. }
  22. function FlashAdText(FlashAdMovie, FlashAdRedirURL, FlashAdAltImage, FlashAdSizeX, FlashAdSizeY)
  23. {
  24. var FlashAdText = '';
  25. if (FlashDetected) {
  26. FlashAdText += '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
  27. FlashAdText += '  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" ';
  28. FlashAdText += '  WIDTH=' + FlashAdSizeX + ' HEIGHT=' + FlashAdSizeY + '>';
  29. FlashAdText += '<PARAM NAME=movie VALUE="' + FlashAdMovie + '?clickTAG=' + FlashAdRedirURL + '&target=_blank">';
  30. FlashAdText += '<PARAM NAME=quality VALUE=high>'; 
  31. FlashAdText += '<PARAM NAME=wmode value=opaque>';
  32. FlashAdText += '<EMBED src="' + FlashAdMovie + '?clickTAG=' + FlashAdRedirURL + '&target=_blank" quality=high';
  33. FlashAdText += ' wmode="opaque" WIDTH=' + FlashAdSizeX + ' HEIGHT=' + FlashAdSizeY;
  34. FlashAdText += ' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">';
  35. FlashAdText += '</EMBED>';
  36. FlashAdText += '</OBJECT>';
  37. } else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)){
  38. FlashAdText += '<a href="' + FlashAdRedirURL + '" target="_blank"><IMG SRC="' + FlashAdAltImage + '" WIDTH=' + FlashAdSizeX + ' HEIGHT=' + FlashAdSizeY + ' BORDER=0></a>';
  39. }
  40. return FlashAdText;
  41. }
  42. function RenderFlash(ID, FlashAdMovie, FlashAdRedirURL, FlashAdAltImage, FlashAdSizeX, FlashAdSizeY) {
  43. // Hack for IE6. Probably not needed. See http://blogs.msdn.com/ie/archive/2007/11/08/ie-automatic-component-activation-changes-to-ie-activex-update.aspx
  44. var agt = navigator.userAgent.toLowerCase();
  45. if ((agt.indexOf("msie") >= 0) && (agt.indexOf("opera") < 0) && (agt.indexOf("mac") < 0) &&
  46.     (parseInt(agt.charAt(agt.indexOf("msie")+5)) == 6)) {
  47. document.writeln('<div id="f_' + ID + '"></div>');
  48. ActivateFlash('f_' + ID,FlashAdText(FlashAdMovie, FlashAdRedirURL, FlashAdAltImage, FlashAdSizeX, FlashAdSizeY));
  49. }
  50. else
  51. document.writeln(FlashAdText(FlashAdMovie, FlashAdRedirURL,FlashAdAltImage, FlashAdSizeX, FlashAdSizeY));
  52. }