Thread: KeysRealeased
View Single Post
  #2  
Old 11-25-2012, 05:33 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
There's no global event for when keys are being released. However, all GUI controls (including GraalControl) have an onKeyDown and an onKeyUp event, to be used like this:
PHP Code:
function GraalControl.onKeyDown(keycode,keystring,scancode) {
  
// stuff
}

function 
GraalControl.onKeyUp(keycode,keystring,scancode) {
  
// stuff

Reply With Quote