View Single Post
  #10  
Old 12-01-2009, 10:36 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Instead of having all those keydown2 calls, you can use if else or a switch statement instead.

PHP Code:
function onKeyPressed(code,key) {
  if( 
key == "f") {
    
// setani or do whatever
  
}
  else if (
key == "g") {
    
// setani or do whatever
  
}
  else if (
key == "h") {
    
// setani or do whatever
  
}
} 
__________________
Quote:
Reply With Quote