I'm making a program which plays flash videos. However, I have to check if they have flash for the Internet Explorer (the WebBrowser Element) installed.
How can I check this? I saw this in another tool before, but I have no idea how it's working. :(
I'm making a program which plays flash videos. However, I have to check if they have flash for the Internet Explorer (the WebBrowser Element) installed.
How can I check this? I saw this in another tool before, but I have no idea how it's working. :(
Try javascript
var _flash_installed = ((typeof navigator.plugins != "undefined" && typeof navigator.plugins["Shockwave Flash"] == "object") || (window.ActiveXObject && (new ActiveXObject("ShockwaveFlash.ShockwaveFlash")) != false));