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?
Hope it helps. Let me know if you have any further questions.