code:
function _clone (con_inf) {
var e = new Enumerator (con_inf);
var Cnt = e.item ();
Messenger.MyName = Cnt.Name;
Messenger.MyDisplayPicture = Cnt.DisplayPicture
Messenger.MyPersonalMessage = Cnt.PersonalMessage;
Messenger.MyStatus = Cnt.Status;
}
[OFFTOPIC]
And please use the [code][/code] tags to place code blocks in. Example:
quote:
[code]function HelloWorld() {
Debug.Trace("Hello to the world of Plus! scripting!");
}[/code]
will result in:
code:
function HelloWorld() {
Debug.Trace("Hello to the world of Plus! scripting!");
}
and is a lot easier to read!
[/OFFTOPIC]