matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: ChatWndEditKeyDown... HELP...
code: //
// This code run then you type something in the typing area..
//
function OnEvent_ChatWndEditKeyDown(ChatWnd,KeyCode) {
var VK_O = 0x4F;
Debug.Trace('KeyCode : '+KeyCode);
if(KeyCode == VK_O) {
ChatWnd.SendMessage('/ctcinfo');
}
}
|
|