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();
}