Your question has been submitted and is awaiting moderation.
Thank you for reporting this content, moderators have been notified of your submission.
I have a DNN 7 website with a flash file in Splash Page. when i test my site in local, the flash file runs in firefox, chrome, and IE 9. but when i upload my site on host and run it in IE, there is no flash!
i use the below code to check if the flash player is installed in browser:
if ((!FlashDetect.installed))
{
document.getElementById("downloadtext").style.visibility = "visible";
document.getElementById("downloadimg").style.visibility = "visible";
}
else
{
document.getElementById("downloadtext").style.visibility = "hidden";
document.getElementById("downloadimg").style.visibility = "hidden";
}
FlashDetect.installed function returns true, but i see just a blank page without any flash.
Any Idea?