Rank: Member Groups: Member
Joined: 8/15/2007 Posts: 11 Points: 12 Location: Ogden, Utah
|
I need to test this on several machines. How do I uninstall the ActiveX control? Here is my code: Code:
<script src="js/downloadTree/iuembed.js" type="text/javascript"></script>
Blah…blah…blah..
<script language="javascript" type="text/javascript">
function FileDownloader_DownloadComplete(Result)
{
if (Result == 0)
{
clearDownloadList();
}
}
function FileDownloader_DownloadItemComplete(Result, ErrorPage, Url, FileName, ContentType, FileSize)
{
alert("URL ->" + Result);
}
function FileDownloader_DownloadStep(Step)
{
if (Step == 2)
{
getFileDownloader("FileDownloader").setFileList("GetFileList.aspx?PassID=" + PassID);
}
}
var fd = new FileDownloaderWriter("FileDownloader", 59, 18);
fd.activeXControlCodeBase = "bin/FileDownloader.cab";
fd.activeXControlVersion = "1,0,100,0";
fd.addParam("ButtonDownloadImageFormat", "width=59;height=18;" +
"backgroundColor=white;urlNormal=imgs/deleteButton.png;urlNormalFocused=imgs/deleteButton.png;" +
"urlHover=imgs/deleteButton.png;urlHoverFocused=imgs/deleteButton.png;urlPressed=imgs/deleteButton.png" +
"urlDisabled=imgs/deleteButton.png");
fd.addEventListener("DownloadComplete", "FileDownloader_DownloadComplete");
fd.addEventListener("DownloadStep", "FileDownloader_DownloadStep");
fd.writeHtml();
</script>
It NEVER asks the user to install the activeX control no matter how many times I refresh the page. It gives them the warning message but no matter how many times they refresh it does not help. Do I need a license key before users can use the control? I have paid for a license but am waiting patiently for the activation key. Thanks,
Linda Rawson http://www.sensorytech.net
|
Rank: Advanced Member Groups: Member
Joined: 9/19/2006 Posts: 344 Points: 153
|
Hello Linda,
Sorry for a long delay. It looks like a wrong codebase problem. activeXControlCodeBase contains the path relatively to control’s page. Check it carefully once again. If the problem will remain, please give us the direct link to your site.
In IE 7.0 you can uninstall ActiveX control from Tools->Internet Options ->Programs->Manage add-ons.
Best regards, Eugene Kosmin.
Aurigma Development Team
|