If you are talking about javascript, I found some tips, thanks to a tool created by me and called "Javascript Self Explorer"* that you can download at software dot sitesbr dot net in the Web programming menu.
Opening this javascript Program using IE, I saw that navigator object doesn't show the plugins, but, IE lists the plugins present in a document.
Useful snippets of code:
if( document.plugins.length > 0){ ... }
if( document.plugins[n].src.match(/\.swf/i){ ... }
if( document.plugins[n].readyState == 'complete' ) { ... }
A cross-browser function to check if a browser has the Flash plugin, made with information from JSE*:
function hasFlashPlugin(){ /* Cross-browser, including IE */
/* Sergio Abreu
* sites dot sitesbr dot net
* 2013-05-01
*/
if( navigator.plugins.length > 0){
for (var i = 0; i < navigator.plugins.length; i++) {
pl = navigator.plugins[i];
if( pl.description && pl.description.match(/flash/i) ||
pl.name && pl.name.match(/flash/i)) return true;
}
} else if( document.plugins.length > 0) { // IE
for (var i = 0; i < document.plugins.length; i++) {
pl = document.plugins[i];
if( pl.src && pl.src.match(/\.swf/i) &&
pl.readyState && pl.readyState == 'complete' ) return true;
}
}
return false;
}