Hi,

Just noticed this in Focus Manager?
        browserMode = Capabilities.playerType == "ActiveX" && !popup;
        desktopMode = Capabilities.playerType == "Desktop" && !popup;

Shouldn't that be:
        browserMode = (Capabilities.playerType == "ActiveX" || 
Capabilities.playerType == "plugin") && !popup;
        desktopMode = Capabilities.playerType == "Desktop" && !popup;

Thanks,
Justin

Reply via email to