Re: Buddy list refresh - causing problem

  •  02-13-2007, 10:41 PM

    Re: Buddy list refresh - causing problem

    Hello,
     
    Here I am using CuteChat Application version 3.0.
     
    I have fixed the problem of loosing focus from message window to buddy list.
     
    For fixing it use following code in CuteSoft_Client\CuteChat\ChatUI.js.aspx
    find the function ChatUI_FocusWindow() in above file. 
     
    For fixing problem use following code,
    function ChatUI_FocusWindow()
    {
       //if( GetWindowIsFocus() ) return;
       //if( ! ChatUI_GetAutoFocus() ) return;
       //alert(GetStackTrace());
       //FocusWindow();
    }
     
    Before modification you find function like,
    function ChatUI_FocusWindow()
    {
       if( GetWindowIsFocus() ) return;
       if( ! ChatUI_GetAutoFocus() ) return;
       //alert(GetStackTrace());
       FocusWindow();
View Complete Thread