(boolean pressed)
| 311 | |
| 312 | public static boolean isClosedApplePressed = false; |
| 313 | @InvokableAction(name = "Closed Apple Key", alternatives = "CA", category = "Keyboard", notifyOnRelease = true, defaultKeyMapping = {"Shortcut","Meta","Command"}, consumeKeyEvent = false) |
| 314 | public void solidApple(boolean pressed) { |
| 315 | isClosedApplePressed = pressed; |
| 316 | SoftSwitches.PB1.getSwitch().setState(pressed); |
| 317 | } |
| 318 | |
| 319 | public static void pasteFromString(String text) { |
| 320 | text = text.replaceAll("\\r?\\n|\\r", (char) 0x0d + ""); |
no test coverage detected