Hi,
My advice for your case would be to build your own simpleChat UI with the simpleChatModel we provide and you can have the freedom for doing whatever UI you want. Our SimpleChat example in samepleApps folder builds a chat UI using the SimpleChatModel.
However, if you feel to go the quick fix route, you can simply override the createChildren or other functions in your CustomSimpleChat subclass of SimpleChat and use that to visible/hide any component. You can look at the source code for player 9 in SimpleChat for more details. Its helpful as a reference in many cases even if you are using player 10 swc.
For your specific case, you can do this in your subclass
Override protected function createChildren():void
{
super.createChildren();
if(_toCombo) {
_toCombo.visible = false ; // for making combobox invisible
}
}
Override protected function commitProperties():void
{
super.commitProperties();
if (_typingLabel) {
_typingLabel.visible = false; // for making typing label invisible
}
}
Thanks
Regards
Hironmay Basu