slimdanny
April 29th, 2008, 02:19 PM
I have a TextField and on User pressing Ctrl+C I need to do something.
here's what I have but it doesn't work
public function handleKeys ( e:KeyboardEvent ) : void{
if ( e.keyCode == 67 && e.ctrlKey ){
trace("copying") ;
}
}
Ideas?
here's what I have but it doesn't work
public function handleKeys ( e:KeyboardEvent ) : void{
if ( e.keyCode == 67 && e.ctrlKey ){
trace("copying") ;
}
}
Ideas?