Tutorial: globalhotkey.unregisterAll

globalhotkey.unregisterAll

Unregisters all global hotkeys for the current application.

Raises the unregistered event for each hotkey unregistered.

Example

fin.desktop.GlobalHotkey.unregisterAll(() => {
    console.log('Success');
}, (r, err) => {
    console.log('Error unregistering all hotkeys for this application', err);
});