ممكن عن طريق الجافا سكريبت هذا ملف للتاكد من ان ادوف مثبت
http://utils.beninzambia.com/linker.....txt&track=TCA
موقع للغستفادة
http://thecodeabode.blogspot.com/201...er-plugin.html
رابط اخر
http://stackoverflow.com/questions/5...ugin-installed
كود PHP:
function isAcrobatReaderInstalled() {
var isInstalled = false;
if (window.ActiveXObject) {
var control = null;
try {
// AcroPDF.PDF is used by version 7 and later
control = new ActiveXObject('AcroPDF.PDF');
} catch (e) { }
if (!control) {
try {
// PDF.PdfCtrl is used by version 6 and earlier
control = new ActiveXObject('PDF.PdfCtrl');
} catch (e) { }
}
if (control)
isInstalled = true;
} else {
// Check navigator.plugins for "Adobe Acrobat" or "Adobe PDF Plug-in"*
for (var i = 0; i<navigator.plugins.length; i++)
{
var n = navigator.plugins[i].name;
if (n.indexOf('Adobe Acrobat') > -1 || n.indexOf('Adobe PDF') > -1)
{
isInstalled = true;
break;
}
}
}
return isInstalled;
}