[WINDOWS] XBMCMessage
#1
I know it probably already exists but i made my own small app that'll show you a notification message on your xbmc. I use it to tell me that a download is finished in Sabnzbd. you can download it here.

Here are some screens:
Image
Image
Image
Reply
#2
XBMCMessage.exe "HEY!" Switch the TV off and go do your homework!!! -d 10000

yup, definite possibilities Big Grin
Reply
#3
can you share the source code?

nice app.

thanks =)
Reply
#4
Wow that s great now i can try to forward growl messages to XBMC!
Thanks
Reply
#5
Could you share the script you used to get this working with sabnzbd? I'm assuming you're passing the title of the download, etc. to show in the popup?

Thanks.
Reply
#6
I've been using the following in my post processing scripts:

/usr/bin/wget -O - -q -t 5 "http://htpc:80/xbmcCmds/xbmcHttp?command=ExecBuiltIn&parameter=XBMC.updatelibrary(video)" > /dev/null 2>&1
sleep 60
/usr/bin/wget -O - -q -t 5 "http://htpc:80/xbmcCmds/xbmcHttp?command=ExecBuiltIn&parameter=XBMC.RunScript('special://skin/scripts/latest/latest.py')" > /dev/null 2>&1
/usr/bin/wget -O - -q -t 5 "http://htpc:80/xbmcCmds/xbmcHttp?command=ExecBuiltIn&parameter=XBMC.Notification(Television Show: $ShowName,$3,10000)" > /dev/null 2>&1
Reply
#7
deepblue Wrote:Could you share the script you used to get this working with sabnzbd? I'm assuming you're passing the title of the download, etc. to show in the popup?

Thanks.

i just use a simple command in a .bat file:

Code:
c:\myapps\XBMCMessage.exe "Download Finished" %3 -h htpc
Where ofcourse the first parameter is the title, the second is the job and the last is my target.
Reply

Logout Mark Read Team Forum Stats Members Help
[WINDOWS] XBMCMessage0