Change Username Style Userlist - Visichat

Hello Guys

In this tutorial i will teach you how you can change user typing , drawing in userlist as well as how to bold / Italic username



If you have visichat with Flash source codes . just open visichat.fla and go to library and find Ulistrender and double click to select it and press F9 button to show action script window and go to line 108  to 116 and copy paste this code
   if (data["typing"] == "yes") {
            
label.htmlText '<b><font color="#'+_parent._parent._textColor.toString(16)+'">'+labelStr+" ...</b></font>";
}
else {
            if (
data["typing"] == "draw") {
                
label.htmlText '<b><font color="#'+_parent._parent._textColor.toString(16)+'">'+labelStr+"^_^</b></font>";
            } else {
                
label.htmlText '<b><font color="#'+_parent._parent._textColor.toString(16)+'">'+labelStr+"</b></font>";
            }
        }  
Before pasting above code replace typingTextHere with your text for user typing and drwaingTexthere with drawing text for user

And  i use <b> tag to bold username in user list . If you want to use Italic font in user list user <i> tag after the <b> in above code and end tag </i> before the ending of </b> tag in each line


I Hop it will work for you

Please share this tutorial with your friends ! Thanks

2 comments:

  1. Thanks For sharing :) it helped me alot to get rid of this problem

    ReplyDelete
  2. Yeah thanks so much for this!!!!!

    ReplyDelete

Have a question?Use comment form !