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

Last post 02-13-2007, 10:39 PM by nimit. 1 replies.
Sort Posts: Previous Next
  •  02-06-2007, 10:44 PM 26477

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

    Hello,

    I face one of big problem in cutesoft chat application is that loosing focus from the chatting window during the chatting time onevery second or moment. Focus will transfer on the main window of contact list of user.

    So how this problem is solved or over come. One thing I have remark is that same problem is not found me in firefox 2.0 but i found it in IE 6.0 and 7.0

    Currently I am using version 3.0 of Cutesoft chat application.

    waitting for your reply.


  •  02-13-2007, 10:39 PM 26685 in reply to 26477

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