matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: Multiple Chat Windows, Unique Variables For Each
js code: var oChatWnds = {};
function OnEvent_ChatWndCreated(pChatWnd) {
oChatWnds[pChatWnd.Handle] = {};
oChatWnds[pChatWnd.Handle].pChatWnd = pChatWnd;
oChatWnds[pChatWnd.Handle].myVar = 'x';
}
function OnEvent_ChatWndDestroyed(pChatWnd) {
delete oChatWnds[pChatWnd.Handle];
}
This post was edited on 02-02-2009 at 11:42 PM by matty.
|
|