Show list of rooms/lobby's in embedded cute chat

Last post 05-15-2007, 4:33 AM by FishTherapy. 2 replies.
Sort Posts: Previous Next
  •  05-08-2007, 7:21 AM 29339

    Show list of rooms/lobby's in embedded cute chat

    Hi,
    I have searched and found examples of how to show a list of rooms in a standalone version but cant find for an embedded version. I am using the latest CuteChat with DNN 4.4
     
    Is it possible to show a list of rooms just like in standlone in a drop downlist?
     
    Thanks
  •  05-10-2007, 4:11 PM 29520 in reply to 29339

    Re: Show list of rooms/lobby's in embedded cute chat

    FishTherapy,
     
    >>Is it possible to show a list of rooms just like in standlone in a drop downlist?
     
    Yes. This feature is disabled in the embed mode. Please follow the steps below to enable it:
     
    Open CuteSoft_Client\CuteChat\ChatUI.xml
     
    and find the following code:
     

        <![CDATA[
        if(typeof(IsEmbed)!="undefined"&&IsEmbed)
        {
         this.SetVisible(false);
         
        }
        else
        {
         AttachChatEvent("CHANNEL",this.OnChatEvent);
         AttachChatEvent("LOBBYLISTRETURN",this.OnListReturn);
        }
        ]]>
     
     
    And change it to:
     

        <![CDATA[     
          AttachChatEvent("CHANNEL",this.OnChatEvent);
          AttachChatEvent("LOBBYLISTRETURN",this.OnListReturn);
        ]]>
     
    This should resolve the problem.
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  05-15-2007, 4:33 AM 29671 in reply to 29520

    Re: Show list of rooms/lobby's in embedded cute chat

    Excellent, Thanks
View as RSS news feed in XML