Req Trigger on Notification (GUI)
#1
I would like trigger my add-on on Kodi gui notification. Is it possible?

When other add-on or Kodi call: Notification() or GUI.ShowNotification()...

I see there is xbmc.Monitor.onNotification, but it catch "only" this:
Code:
7 Notifications
7.1 Application
7.1.1 Application.OnVolumeChanged
7.2 AudioLibrary
7.2.1 AudioLibrary.OnCleanFinished
7.2.2 AudioLibrary.OnCleanStarted
7.2.3 AudioLibrary.OnRemove
7.2.4 AudioLibrary.OnScanFinished
7.2.5 AudioLibrary.OnScanStarted
7.2.6 AudioLibrary.OnUpdate
7.3 Input
7.3.1 Input.OnInputFinished
7.3.2 Input.OnInputRequested
7.4 Player
7.4.1 Player.OnPause
7.4.2 Player.OnPlay
7.4.3 Player.OnPropertyChanged
7.4.4 Player.OnSeek
7.4.5 Player.OnSpeedChanged
7.4.6 Player.OnStop
7.5 Playlist
7.5.1 Playlist.OnAdd
7.5.2 Playlist.OnClear
7.5.3 Playlist.OnRemove
7.6 System
7.6.1 System.OnLowBattery
7.6.2 System.OnQuit
7.6.3 System.OnRestart
7.6.4 System.OnSleep
7.6.5 System.OnWake
7.7 VideoLibrary
7.7.1 VideoLibrary.OnCleanFinished
7.7.2 VideoLibrary.OnCleanStarted
7.7.3 VideoLibrary.OnRemove
7.7.4 VideoLibrary.OnScanFinished
7.7.5 VideoLibrary.OnScanStarted
7.7.6 VideoLibrary.OnUpdate

if I have well understood... Huh

I would use it in my add-on: http://forum.xbmc.org/showthread.php?tid=204567

Thanks!
Reply
#2
That is currently not possible. xbmc.Monitor.onNotification is called whenever one of the JSON-RPC notifications that you listed above is sent out. It's sent to all JSON-RPC clients and any addons implementing the xbmc.Monitor class.
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not e-mail Team Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#3
Thank Montellese, for your answer.

Do you think can be added in a future release of Kodi?

In xbmc.Monitor.onNotification or adding a new class method like: xbmc.Monitor.onShowNotification or xbmc.Monitor.onGuiNotification
Reply

Logout Mark Read Team Forum Stats Members Help
Trigger on Notification (GUI)0