Re: Chat window gets back to front on any activity

  •  05-16-2006, 3:35 PM

    Re: Chat window gets back to front on any activity

    I'm no coder but found this in the file ChatUI.js file
     
            function ChatUI_SetAutoFocus(enable)
    {
     enable=_SL_ToBoolean(enable);
     if(enable)
     {
      SetCookie("CCNoFocus","false",-1);
     }
     else
     {
      SetCookie("CCNoFocus","true",3600*24*365);
     }
    }
     
     
    maybe it is related as that is the only function I can find related in some way to autofocus, thanks!
View Complete Thread