Hello,
I have a key press pb…
onClipEvent (load) {
my_hear = new Object();
Key.addListener(my_hear);
}
onClipEvent (enterFrame) {
my_hear.onKeyUp = function() {
trace("up");
};
my_hear.onKeyDown = function() {
trace("down");
};
}
This simply doesn’t work… If i press down, it traces “down” but if i press “up”, most of the time it traces “down” as well… Sometimes “up” but not that often… like randomly What’s wrong??