Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hello to all i am newbie in this field and don't know how to check whether a flash player is installed on my machine or not on button click. so please if anyone have any solution or suggestion then please help me out from this problem.
Thanks in advance.

Harminder Singh
Posted

JavaScript
//JavaScript code:
if (navigator.mimeTypes ["application/x-shockwave-flash"] == undefined)
{
     // Flash player not detected
}
else
{
     // Flash player available
     // Do your work
}
 
Share this answer
 
v2
Comments
joginder-banger 20-Mar-14 8:12am    
vote 5+
try this link it's may be bit of help you. check this [^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900