Re: System Independent Wallpaper Changer

2005-07-06 Thread Terrance N. Phillip
Toby Dickenson wrote: > On Wednesday 06 July 2005 01:12, Terrance N. Phillip wrote: > > >>I've done some searching, and can't seem to find a programatic way of >>getting *** that to happen. > > > http://www.google.com/search?q=setwallpaper+dcop > > I hope this helps > That helps very much,

Re: System Independent Wallpaper Changer

2005-07-06 Thread Toby Dickenson
On Wednesday 06 July 2005 01:12, Terrance N. Phillip wrote: > I've done some searching, and can't seem to find a programatic way of > getting *** that to happen. http://www.google.com/search?q=setwallpaper+dcop I hope this helps -- Toby Dickenson -- http://mail.python.org/mailman/listinfo/py

Re: System Independent Wallpaper Changer

2005-07-05 Thread Chris Lambacher
you probably want if sys.platform == 'win32': instead of if os.name in ['nt', 'win98', 'me']: -Chris On 7/5/05, Terrance N. Phillip <[EMAIL PROTECTED]> wrote: > This is what I've got... the code should work on a typical Windows > system, I think... > >

Re: System Independent Wallpaper Changer

2005-07-05 Thread Peter Hansen
Terrance N. Phillip wrote: > This is what I've got... the code should work on a typical Windows > system, I think... > if os.name in ['nt', 'win98', 'me']: > osWindows = True > else: > osWindows = False [snip] > if os_type = 'W': I think you might have a problem with the above, where

System Independent Wallpaper Changer

2005-07-05 Thread Terrance N. Phillip
This is what I've got... the code should work on a typical Windows system, I think... import os import random import time # I'm not sure what to expect for Win98, WinME, etc. I've # only tried it with xp... if os.name in ['nt', 'win98', 'me']: osW