Opening more than one web messenger window

Last post 08-26-2011, 7:43 AM by Kenneth. 5 replies.
Sort Posts: Previous Next
  •  08-23-2011, 9:44 PM 69778

    Opening more than one web messenger window

    I use chat_opencontact() to start a web messenger conversation in a popup window.  However, if I try to start another conversation with a different user, Web messenger will not open a new popup window until it closes the first one.  Is there a way to configure the messenger to open more than one popup window to allow simultaneous conversations with multiple users?
    Filed under:
  •  08-24-2011, 8:29 AM 69801 in reply to 69778

    Re: Opening more than one web messenger window

    Hi Hachim,
     
    Please login on different browsers.
     
    Regards,
     
    ken
  •  08-24-2011, 8:22 PM 69804 in reply to 69801

    Re: Opening more than one web messenger window

    I'm using web messenger in a social networking site where members need to be able to engage in conversations with more than one person at a time.  This used to be possible in previous versions of messenger where each conversation opened in a separate tab.
     
    Is there a solution other than requiring members to login using a different browser for each conversation?
     
     
    Filed under:
  •  08-25-2011, 7:26 AM 69818 in reply to 69804

    Re: Opening more than one web messenger window

    Hi Hachim,
     
    In the new version, you can talk with multiple users at the same time, do not need to login at the different browsers.
     
    Just need to double click on the friend's name, messenger will open a new chat window for you.
     
    Regards,
     
    Ken
  •  08-25-2011, 7:08 PM 69824 in reply to 69818

    Re: Opening more than one web messenger window

    It's possible to chat with multiple users if they're all included in the contacts list.  However, I want users to be able to open multiple popup  windows even if the people they want to chat with are not in the contacts list. Using 
    chat_opencontact('username') does not work because it allows only a single pop up window to be open
    Filed under:
  •  08-26-2011, 7:43 AM 69835 in reply to 69824

    Re: Opening more than one web messenger window

    Hi Hachim,
     
    Try this way
     
    1. I use the code below on my test site for the user to click on the link to open the chat window direclty
     
     <a href="#" onclick="Chat_OpenContact('test')">test</a>
    <a href="#" onclick="Chat_OpenContact('test2')">test2</a>
     
    2.  Open file "CuteSoft_Client\CuteChat\IntegrationUtility.js.aspx"
     
    3. Find method below
     
    function Chat_OpenContact(targetuserloginname) 
     
    4. In the method above should has a line
     
    Chat_OpenMessengerDialog();
     
    5. Change this line to
     
     if(!GetCookie("CuteChatIMMainForm"))Chat_OpenMessengerDialog();
     
    Regards,
     
    Ken
View as RSS news feed in XML