Removing Loading Loop Image in Web Object

Problem:
Hi, I would remove the “loading loop” image when I’m showing a Web object, because I’m using a local web server, so it is not so useful but, above all, during the “loading” I can’t use the others object in the slide (p.e. I can’t click any button)
Could you help me? Thanks

ActivePresenter Version: the latest

OS: WIN 10

Notes:

Hi,

Unfortunately, there is no official way to do it. However, you can hack the player by adding following code into ACTIVEPRESENTER > Project Properties > Event:

if (window.apInitExtCode)
    return;
window.apInitExtCode = true;

var fOldOnAttached = WebObjectUI.prototype.OnAttached;
WebObjectUI.prototype.OnAttached = function() {
     this.loadFrameTimeOut = 1;
     fOldOnAttached.call(this);
}

Regards,

Thanks,
it works very well.