开发者

How to get the error code of WMP plugin in IE when it fails to play some resource?

开发者 https://www.devze.com 2023-02-17 13:15 出处:网络
Recently I\'m trying to make a web page for WMP troubeshooting.And what I want to do is, if the vistors cannot pl开发者_JAVA百科ay the resource on my page because of some problems such as missing WMP

Recently I'm trying to make a web page for WMP troubeshooting.And what I want to do is, if the vistors cannot pl开发者_JAVA百科ay the resource on my page because of some problems such as missing WMP codec,failing to pass DRM...etc, then I'll show them some information about how to fix it.I've googled an example and the problem is the property ErrorCode of the WMP object wmpocx always comes up as undefined while it do exist there.So how can I get the WMP error code in JSCript?

Regards


Find the solution by reading the source code of the Security component upgrade page on Microsoft's website.

Main code:

var error = wmpocx.error;
var errorItem;
var index;    //index into the error queue.
var message;

//The error is an error object that can have multiple errors in a queue
//error.errorCount is the count of errors in the error queue
for(index=0; index<error.errorCount; index++)
{
    errorItem = wmpocx.error.item(index);
    //you can get information on the error with the following properties
    //errorItem.errorCode
    ecode = errorItem.errorCode;
    message = errorItem.errorDescription;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号