I'm new to ReactFX and I'm trying to capture the CTRL and C keys being pressed for a typical copy operation.
How do I capture this effectively into a stream? This is all I could get so far but it is not even compiling...
final EventStream<KeyEvent> keysTyped = EventStreams.eventsOf(myTbl, KeyEvent.KEY_TYPED)
.reduceSuccessions((a,b) -> new KeyCodeCombination(a.getCode(),b.getCode()), 500);