Buddy list refresh - causing problem

Last post 02-13-2007, 10:41 PM by nimit. 1 replies.
Sort Posts: Previous Next
  •  02-06-2007, 9:38 AM 26448

    Buddy list refresh - causing problem

    Hi,
     
    We are running into an annoying problem with Web Messenger.
     
    We have integrated it with our custom Learner Management System with it (which uses a MS SQL database).
     
    The problem we have is that when a user starts a chat with someone on his buddy list, the buddy list keeps refreshing. This causes the user not to be able to type as the buddy list refreshes all the time.
     
    Is there a work around to this.
     
    Thanks
     
    Dave
  •  02-13-2007, 10:41 PM 26686 in reply to 26448

    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 as RSS news feed in XML