(I'm Dutch, sorry for my bad English.)
Hello everybody,
I have a problem with my script. Maybe it's WLM 9, because I have the problems since I installed 9.
The problem:
I have made this script (as a test script):
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind){
Debug.Trace(typeof ChatWnd);
for (i in ChatWnd) {
Debug.Trace(ChatWnd[i]);
}
}
When I send a message to somebody or somebody sends a message to me, i get in the debug window:
object
That's all. It means that ChatWnd contains no properties or methods, what I don't understand. Does anyone have a solution or a cause?
Thanks!