Re: Some chat questions...

  •  03-25-2007, 4:34 PM

    Re: Some chat questions...

    shaieden,
     
    Welcome to Cute Chat.
     
    >>1. How long is the trial period? What happens after it ends?
     
    A: 30 days. You will get a license expired error.
     
    >>2. After this period, is it possible to stay with the same install, or do we need to have a new install?
     
    A: Yes. All you need to do is copying your officical license file to the project bin folder.
     
    >>3. How do you make it possible to have private messages sent to a user, by only clicking on his nickname, without also cheking the 'wisper' checkbox?
     
    A: We have two options of private communications. One is private chat window, the other is private message. For the message, you have two choices. Make the message public or private. That's why we have a Whisper check box.
     
    >>4. How do you make the 'disable auto focus' a default for all users?
     
    A: Please open CuteSoft_Client\CuteChat\ChatUI.js.aspx file and modify the following code:
     
    function ChatUI_GetAutoFocus()
    {
     var v=GetCookie("CCNoFocus");
     if(v=="true")
      return false;
     return true;  //default allow sound..
    }
     
     
    to
     
    function ChatUI_GetAutoFocus()
    {
        var v=GetCookie("CCNoFocus");
        if(v=="false")
         return true;
       return false;  
    }
    >>5. How do I add emoticons?
     
    Just add/delete the images under CuteSoft_Client/CuteChat/images/emotions folder. Cute Chat will get emotions from there automatically.
     
    >> How do I add more colors for the text?
     
    Open CuteSoft_Client\CuteChat\ChatUI.js.aspx and modify the following array:
     
    var colors = new Array("#000000","#993300","#333300","#003300","#003366","#000080","#333399","#333333",
      "#800000","#FF6600","#808000","#008000","#008080","#0000FF","#666699","#808080",
      "#FF0000","#FF9900","#99CC00","#339966","#33CCCC","#3366FF","#800080","#999999",
      "#FF00FF","#FFCC00","#FFFF00","#00FF00","#00FFFF","#00CCFF","#993366","#C0C0C0",
      "#FF99CC","#FFCC99","#FFFF99","#CCFFCC","#CCFFFF","#99CCFF","#CC99FF","#FFFFFF");   
     
     
    >>can't find the term 'Users Online' in the translation files, where is it?
     
    Open CuteSoft_Client\CuteChat\ChatUI.xml and modify the following code:
     
     
    <Method Modifiers="public" Name="OnChatEvent" Arguments="name,type,info1,info2">
        <![CDATA[
        if(name=="USER")
        {
         var element=this.GetElement();
         var span=Html_FindChildById(element,"number_online");
         span.innerHTML=GetUsers().length+" Users Online";
        }
        ]]>
       </Method>
     
    Hope it helps. Let me know if you have any further questions.
     
     
     

    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

View Complete Thread