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,
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
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...
>
>
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
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