hallo nochmal!
ich habe geradebemerkt, dass meine erkennung für shockwave nicht zu funktionieren scheint.
gibt es andere abfragevarianten wie beim acrobat-plugin für meine?
hier meine aktuelle routine:
function detectDirector(redirectURL, redirectIfFound) {
pluginFound = detectPlugin('Shockwave','Director');
// if not found, try to detect with VisualBasic
if(!pluginFound && detectableWithVB) {
pluginFound = (detectActiveXControl('SWCtl.SWCtl.1') ||
detectActiveXControl('SWCtl.SWCtl.7') ||
detectActiveXControl('SWCtl.SWCtl.8') ||
detectActiveXControl('SWCtl.SWCtl.9') ||
detectActiveXControl('SWCtl.SWCtl.10'));
}
// check for redirection
return redirectCheck(pluginFound, redirectURL, redirectIfFound);
}
danke,
der-daniel