본문 바로가기

스크립트/윈도우창관련

사용자 PC 에 설치되어 있는 다양한 플러그인 확인

사용자 PC 에 설치되어 있는 다양한 플러그인(Flash, Windows Media Player, Java, Shockwave, RealPlayer, QuickTime, Acrobat Reader, SVG Viewer)을 체크하여 원하는 명령을 수행시킬 수 있습니다

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=euc-kr">
<TITLE> Jasko Sample Script </TITLE>
</HEAD>

<BODY>

<script language="JavaScript">
<!--
var agt=navigator.userAgent.toLowerCase();
var ie  = (agt.indexOf("msie") != -1);
var ns  = (navigator.appName.indexOf("Netscape") != -1);
var win = ((agt.indexOf("win")!=-1) || (agt.indexOf("32bit")!=-1));
var mac = (agt.indexOf("mac")!=-1);

if (ie && win) {        pluginlist = detectIE("Adobe.SVGCtl","SVG Viewer") + detectIE("SWCtl.SWCtl.1","Shockwave Director") + detectIE("ShockwaveFlash.ShockwaveFlash.1","Shockwave Flash") + detectIE("rmocx.RealPlayer G2 Control.1","RealPlayer") + detectIE("QuickTimeCheckObject.QuickTimeCheck.1","QuickTime") + detectIE("MediaPlayer.MediaPlayer.1","Windows Media Player") + detectIE("PDF.PdfCtrl.5","Acrobat Reader"); }
if (ns || !win) {
                nse = ""; for (var i=0;i<navigator.mimeTypes.length;i++) nse += navigator.mimeTypes[i].type.toLowerCase();
                pluginlist = detectNS("image/svg-xml","SVG Viewer") + detectNS("application/x-director","Shockwave Director") + detectNS("application/x-shockwave-flash","Shockwave Flash") + detectNS("audio/x-pn-realaudio-plugin","RealPlayer") + detectNS("video/quicktime","QuickTime") + detectNS("application/x-mplayer2","Windows Media Player") + detectNS("application/pdf","Acrobat Reader");
}

function detectIE(ClassID,name) { result = false; document.write('<SCRIPT LANGUAGE=VBScript>n on error resume next n result = IsObject(CreateObject("' + ClassID + '"))</SCRIPT>n'); if (result) return name+','; else return ''; }

function detectNS(ClassID,name) { n = ""; if (nse.indexOf(ClassID) != -1) if (navigator.mimeTypes[ClassID].enabledPlugin != null) n = name+","; return n; }

pluginlist += navigator.javaEnabled() ? "Java," : "";
if (pluginlist.length > 0) pluginlist = pluginlist.substring(0,pluginlist.length-1);

/////////////////////////////////////// 사용법 //////////////////////////////////////
//
// 플래쉬가 있는지 체크하려면
// if (pluginlist.indexOf("Flash")!=-1)
// document.write("플래쉬가 설치되어 있습니다")
// 처럼 합니다
// Flash, Windows Media Player, Java, Shockwave, RealPlayer, QuickTime, Acrobat Reader, SVG Viewer,
// 등도 위의 방법으로 체크할 수 있습니다
//
////////////////////////////////////////////////////////////////////////////////////

if (pluginlist.indexOf("Flash")!=-1)
document.write("당신의 PC 에는 플래쉬가 설치되어 있습니다<br>")
else
document.write("당신의 PC 에는 플래쉬가 설치되어 있지 않습니다<br>");

if (pluginlist.indexOf("Java")!=-1)
document.write("당신의 PC 에는 Java가 설치되어 있습니다<br>")
else
document.write("당신의 PC 에는 Java가 설치되어 있지 않습니다<br>");

if (pluginlist.indexOf("Acrobat Reader")!=-1)
document.write("당신의 PC 에는 Acrobat Reader가 설치되어 있습니다<br>")
else
document.write("당신의 PC 에는 Acrobat Reader가 설치되어 있지 않습니다<br>");

if (pluginlist.indexOf("Windows Media Player")!=-1)
document.write("당신의 PC 에는 Windows Media Player가 설치되어 있습니다<br>")
else
document.write("당신의 PC 에는 Windows Media Player가 설치되어 있지 않습니다<br>");

if (pluginlist.indexOf("Shockwave")!=-1)
document.write("당신의 PC 에는 Shockwave가 설치되어 있습니다<br>")
else
document.write("당신의 PC 에는 Shockwave가 설치되어 있지 않습니다<br>");

if (pluginlist.indexOf("SVG Viewer")!=-1)
document.write("당신의 PC 에는 SVG Viewer가 설치되어 있습니다<br>")
else
document.write("당신의 PC 에는 SVG Viewer가 설치되어 있지 않습니다<br>");

//-->
</script>

</BODY>
</HTML>