Get ctrl+enter to work in chrome on mac, as3

Ctrl+enter does the job in all browsers on windows and mac except chrome on mac.

This is a flash as3 app.

Here is my code:

/////

stage.addEventListener(KeyboardEvent.KEY_UP, upListener);

private function upListener(e:KeyboardEvent):void {
if(e.ctrlKey && e.charCode == 13) {
//do stuff
}
}

/////

One thing I notice is that the mouse cursor vanishes when ctrl+enter is attempted in chrome mac for flash. This also doesn’t happen in the other browsers. Could this be because there’s a default action in chrome mac for ctrl+enter…that is blocking the ability to respond in flash?