shortcut-keys-reactive
Reactive icon

Shortcut Keys Reactive

Stable version 1.0.5 (Compatible with OutSystems 11)
Uploaded
 on 19 Feb
 by 
5.0
 (4 ratings)
shortcut-keys-reactive

Shortcut Keys Reactive

Documentation
1.0.5
  1. To add a shortcut, add the AddShortcutKey block to the screen.
  2. Set the Key input parameter (E.g: "Alt+A", "Ctrl+1").
  3. Set the handler for the KeyPressed event to handle the client logic for the shortcut.

Documentation for the original library: https://www.openjs.com/scripts/events/keyboard_shortcuts/


1.0.0

Supported Keys


The shortcut keys should be specified in this format ...

Modifier[+Modifier..]+Key

Example...

Ctrl+A

The valid modifiers are

  • Ctrl
  • Alt
  • Shift
  • Meta

You can specify a sequence without a modifier as well

The valid keys are...


  • All alpha/numeric keys - abc...xyz,01..89
  • Special Characters - Every special character on a standard keyboard can be accessed.
  • Special Keys...
    • Tab
    • Space
    • Return
    • Enter
    • Backspace
    • Scroll_lock
    • Caps_lock
    • Num_lock
    • Pause
    • Insert
    • Home
    • Delete
    • End
    • Page_up
    • Page_down
    • Left
    • Up
    • Right
    • Down
    • F1
    • F2
    • F3
    • F4
    • F5
    • F6
    • F7
    • F8
    • F9
    • F10
    • F11
    • F12

These keys are case insensitive - so don't worry about using the correct case.