Shortcuts
Namespaces
Shortcuts in WebDigAIRange are valid for specific areas of the application only (i.e. namespaces).
For example: It is not possible to define a Calendar shortcut like "openDayView" in the area of Global shortcuts. "openDayView" works in the Calendar area only. You can find an example configuration at the bottom of this page.
Name | Description |
---|---|
Global | Global shortcuts, available throughout the entire application. |
Calendar | Calendar shortcuts, available on the overview calendar. |
Scheduling | Scheduling shortcuts, available on all configured scheduling pages. |
Global Shortcuts
Name | Description | Recommended Keys |
---|---|---|
openCurrentShow | Load current show into default scheduling page. | o |
Calendar Shortcuts
Name | Description | Recommended Keys |
---|---|---|
openDayView | Switch view to single day. | 1 |
openWeekView | Switch view to full week. | 2 |
previousWeek | Go to previous week. | x |
currentWeek | Go to current week. | c |
nextWeek | Go to next week. | v |
previousDay | Go to previous day. | x |
currentDay | Go to today. | c |
nextDay | Go to next day. | v |
Scheduling Shortcuts
Name | Description | Recommended Keys* |
---|---|---|
selectFirst | Select the first entry. | Home |
selectLast | Select the last entry. | End |
selectUp | Select the entry above the currently selected entry. | u |
selectDown | Select the entry below the currently selected entry. | j |
selectAll | Select all entries. | a |
editEntry | Select the first field in the metadata mask of the selected entry. | e |
deleteEntry | Delete the selected entries. | Delete |
printShow | Print the selected show. | Ctrl + p |
scheduleEntryLast | Schedule the selected entries at the end of the current track. | Ctrl + End |
*US Windows QWERTY keyboard layout
Toolbar Shortcuts
Toolbar shortcuts are configured per toolbar button in the toolbar section of the settings.json, see Toolbar.
Configuration
Shortcut definition syntax
A shortcut is defined as an array. In its easiest form this contains a single character ["a"] which makes this key the trigger. For more advanced key combinations add more values.
To look up non-alphabetical key identifiers it is advised to use an online tool (e.g. https://keycode.info/).
Note: System shortcuts, like Alt + Tab, cannot be suppressed by WebDigAIRange. It is possible to define and use them, but the original action will still be triggered additionally.
Modifier Keys
Among the values in the definition array can be a single modifier key. Valid values are:
alt
ctrl
meta
shift
Example: "currentWeek": ["alt", "c"]
Example
Example
{
"title": "DAVID Radio - WebDigAIRange",
"program": "Best Channel Ever",
...
"Shortcuts": {
"Global": {
"openCurrentShow": ["o"]
},
"Calendar": {
"openDayView": ["1"],
"openWeekView": ["2"],
"previousWeek": ["x"],
"currentWeek": ["alt", "c"],
"nextWeek": ["v"]
},
"Scheduling": {
"selectFirst": ["home"],
"selectLast": ["end"],
"selectUp": ["u"],
"selectDown": ["j"],
"selectAll": ["a"],
"editEntry": ["e"],
"deleteEntry": ["delete"],
"printShow": ["ctrl", "p"]
}
}}