Re: lossing focus from the chatting and trasfer it on main window of contact

  •  02-13-2007, 10:39 PM

    Re: lossing focus from the chatting and trasfer it on main window of contact

    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.
     
    Before modification you find function like,
    function ChatUI_FocusWindow()
    {
       if( GetWindowIsFocus() ) return;
       if( ! ChatUI_GetAutoFocus() ) return;
       //alert(GetStackTrace());
       FocusWindow();
    }
     
    For fixing problem use following code,
    function ChatUI_FocusWindow()
    {
       //if( GetWindowIsFocus() ) return;
       //if( ! ChatUI_GetAutoFocus() ) return;
       //alert(GetStackTrace());
       //FocusWindow();
    }
     
View Complete Thread