quote:
Originally posted by 134jimbodude
kool thanks
wot do the case 187 and the case 222 do?
r they the "#" and the "="?
i want to know this so i can add more to the script
thanks
http://javascript.js-x.com/key_codes/ Almost All the KeyCodes Appear to be here
.
quote:
Originally posted by Eljay
code:
function OnEvent_ChatWndEditKeyDown(ChatWnd, KeyCode){
switch(KeyCode){
case 187:
ChatWnd.SendMessage("hi");
return true;
case 222:
ChatWnd.SendMessage("lol");
return true;
}
}
Thanks. It maybe helpful to me some day
.