I have a list box that works fine. However, I want to trap the Delete key and process the removeSelectedItem method. My problem is that if I put the code:

on(keyPress "<Delete>"){
trace('Do delete code here');
}


In my .as then the click functionality quits working, i.e. when you click on an item it does not get selected.

Does anyone know how to accomplish what I'm trying to do?

Thanks for any help,

CFDaddy