Re: Simple System Tray Icon

2006-03-02 Thread 3c273
quoted This is untested, 'cos I'm on a Mac these days, but what you want should look something like: from SysTrayIcon import SysTrayIcon icon = SysTrayIcon('parh/to/icon.ico', "Hover text", {}) How simple do you want? /quoted I guess I still don't get it. The code you supplied c

Re: Simple System Tray Icon

2006-03-02 Thread 3c273
"Simon Brunning" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] This is untested, 'cos I'm on a Mac these days, but what you want should look something like: from SysTrayIcon import SysTrayIcon icon = SysTrayIcon('parh/to/icon.ico', "Hover text", {}) How simple do you want? That'

Re: Simple System Tray Icon

2006-03-02 Thread Simon Brunning
On 3/2/06, 3c273 <[EMAIL PROTECTED]> wrote: > I guess I should have capitalized the word 'simple' in my request :-) Thanks > for your reply. I had already found this and it made the wx example look > like a one-liner. I didn't realize that this was such a chore. Thanks again, > I will keep trying.

Re: Simple System Tray Icon

2006-03-02 Thread 3c273
"Thomas Heller" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > 3c273 wrote: > > Can someone point me to a simple example that just shows an icon? I don't > > need it to anything but show up. Any help is appreciated. > > Louis > > > > > Simon Bruning has made something that should yo

Re: Simple System Tray Icon

2006-03-02 Thread 3c273
"Michele Petrazzo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > wxTaskBarIcon is very, very simple! > Into the demo, inside 80 line, you can find all the taskbar work, the > menu connected with the rclick and its image change... > Where do you find this complex? I guess since it

Re: Simple System Tray Icon

2006-03-02 Thread Thomas Heller
3c273 wrote: > Hello, > I have a short looping script that runs in the background (Windows 2000) and > I want to have a tray icon so I know that it is running. I have looked at > wxTaskBarIcon and the examples on the web and in the demo, but it seems > pretty complex and I haven't had any success e

Re: Simple System Tray Icon

2006-03-02 Thread Michele Petrazzo
3c273 wrote: > Hello, I have a short looping script that runs in the background > (Windows 2000) and I want to have a tray icon so I know that it is > running. I have looked at wxTaskBarIcon and the examples on the web > and in the demo, but it seems pretty complex and I haven't had any > success e

Simple System Tray Icon

2006-03-02 Thread 3c273
Hello, I have a short looping script that runs in the background (Windows 2000) and I want to have a tray icon so I know that it is running. I have looked at wxTaskBarIcon and the examples on the web and in the demo, but it seems pretty complex and I haven't had any success even getting one to show