Kodi Community Forum
Notify - iPhone Notification App for XBMC (send push notifications to XBMC) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116)
+--- Thread: Notify - iPhone Notification App for XBMC (send push notifications to XBMC) (/showthread.php?tid=64545)



- Cloaky - 2010-02-03

Mine worked fine, growl (windows) is also working just as it should, now i am trying to set EventGhost.


- johoja - 2010-02-03

Cloaky Wrote:Mine worked fine, growl (windows) is also working just as it should, now i am trying to set EventGhost.

For EG use the WebServer plugin, and create a file called "empty" in the WebServer folder you specify...and then you setup Notify Pro.


- Cloaky - 2010-02-03

What am I missing? Sorry it is my 1st time with EG

Quote: Traceback (most recent call last):
Python script "5", line 12, in <module>
if parts[1] == "CallAccept":
IndexError: list index out of range

http://img268.imageshack.us/img268/3900/untitle2d.png

Also you said, add a file named empty, what do u mean by file hahah there are so many things i can add : D


- johoja - 2010-02-03

Cloaky Wrote:What am I missing? Sorry it is my 1st time with EG



http://img268.imageshack.us/img268/3900/untitle2d.png

Also you said, add a file named empty, what do u mean by file hahah there are so many things i can add : D


Give me a few minutes...ill try and make a video on how to set it up properly. Either A LOT of people didnt actually buy the app or....there's a bug in my activation code.


- Cloaky - 2010-02-03

johoja Wrote:Give me a few minutes...ill try and make a video on how to set it up properly.

Just take your time, my bad.


- johoja - 2010-02-03

Cloaky Wrote:Just take you time, my bad.


Made one...uploading...pretty damn slow...lol..and its a sucky video too Sad But it should help.


- johoja - 2010-02-03

EventGhost Quick Setup :

http://www.screentoaster.com/watch/stWEpTS01IR19aQVtYX1teXlBc


- Cloaky - 2010-02-03

Here is a small bug, once u set a host( just tested with EG) if u try to edit it, it won't allow you, when u press done it will back to the previous settings.

EDIT: just a tricky part, make sure the Empty file has no extension or it won't work!

Edit2: Got it working! its awesome! Tomorrow i will see if i can manage to do a few scripts and i will certainly post them here.

Thanks once again.


- johoja - 2010-02-03

Cloaky Wrote:Just take you time, my bad.

Cloaky Wrote:Here is a small bug, once u set a host( just tested with EG) if u try to edit it, it won't allow you, when u press done it will back to the previous settings.

Hrmm, I've edited EG Hosts....you sure about that bug?

Quote:EDIT: just a tricky part, make sure the Empty file has no extension or it won't work!

No extension in my video Smile

Quote:Edit2: Got it working! its awesome! Tomorrow i will see if i can manage to do a few scripts and i will certainly post them here.

Cool that would be good! I'm gonna try and setup a site or something where I can start to store them, etc. So people can share....if I get time. Real life/Day job is catching up to me Smile

If you need help you can always drop by, my python isn't amazing, but I'm okay at it.

Glad your liking the update.


- Cloaky - 2010-02-03

johoja Wrote:Hrmm, I've edited EG Hosts....you sure about that bug?
Yea, i tried it again (1.3), try to edit the IP and see if you can


johoja Wrote:No extension in my video Smile
I know... i was just alerting ppl because it too me a min to realize that.


- johoja - 2010-02-03

Cloaky Wrote:Yea, i tried it again (1.3), try to edit the IP and see if you can

Yeah...works? Make sure you press done on the keyboard BEFORE pressing done in the top right hand corner..

I haven't quite figured out how to make it stick without having to press done on the keyboard.. Sad


- Cloaky - 2010-02-03

johoja Wrote:Yeah...works? Make sure you press done on the keyboard BEFORE pressing done in the top right hand corner..

I haven't quite figured out how to make it stick without having to press done on the keyboard.. Sad

That was the problem : D hahaha

EDIT:
Got a script working for iTunes

Quote:import win32com.client

iTunes = win32com.client.gencache.EnsureDispatch("iTunes.Application")
iTunes.LibrarySource.Playlists.ItemByName('Party Shuffle').PlayFirstTrack()
iTunes.Pause()
iTunes.Play()
iTunes.PreviousTrack()
iTunes.NextTrack()
iTunes.SoundVolume = 25
iTunes.Windows.Item(1).Minimized = True



Osx - kurnalbert - 2010-02-03

Hi, I am using XBMC on OSX.

Is there anyway that Notify Pro can pause the video on incoming call? I know that works for Event Ghost but that appears to be windows only.

Is there anything similar for OSX or someway it can be built into Notify Pro/

Thanks in advance!


- Cloaky - 2010-02-03

This is so damn cooooolll i am having so much fun hahah

Quote:import win32com.client
import time

iTunes = win32com.client.gencache.EnsureDispatch("iTunes.Application")
event = eg.event.suffix
parts = event.split(".")

if parts[1] == "CallIncoming":
while iTunes.SoundVolume > 50 :
iTunes.SoundVolume -= 5
time.sleep(0.25)

if parts[1] == "CallDeclined":
while iTunes.SoundVolume < 100 :
iTunes.SoundVolume += 5
time.sleep(0.25)



- johoja - 2010-02-03

kurnalbert Wrote:Hi, I am using XBMC on OSX.

Is there anyway that Notify Pro can pause the video on incoming call? I know that works for Event Ghost but that appears to be windows only.

Is there anything similar for OSX or someway it can be built into Notify Pro/

Thanks in advance!

Hrm, I'm not sure. If there is an APP for OSX that does something similar. I would be more than happy to support it Smile .

I could add BASIC support for Pausing XBMC on video , etc. I like the EG Approach cause..it leaves it open to the enduser, and you can share scripts etc.

Like Cloaky is doing with ITunes.