Oh ok. Thanks. Here's the problem I'm trying to solve:
There is this script:
http://www.dynamicdrive.com/dynamici...einmenukey.htm
and instead of it opening on just one key, I want it to open on several keys (one after another, like A then D then F), but how do I?
I think this is the part of that code:
PHP Code:
if (ns4)
document.captureEvents(Event.KEYPRESS)
function menuengine(e){
if (ns4||ns6){
if (e.which==120)
pull()
if (e.which==122)
draw()
}
else if (ie4){
if (event.keyCode==120)
pull()
if (event.keyCode==122)
draw()
}
}
Bookmarks