Re: [python-win32] Play MP3s from Windows, Just Works

2008-08-12 Thread Brian Parma
If you don't need to control the playback with your program but just launch it (in WMP), try os.startfile instead of os.system. On Tue, Aug 12, 2008 at 7:45 AM, Vernon Cole [EMAIL PROTECTED] wrote: As always, remember that mp3 is proprietary, and the owner has shown willingness to be nasty

Re: [python-win32] SetCursor

2008-07-26 Thread Brian Parma
On Sat, Jul 26, 2008 at 6:19 PM, Michiel Overtoom [EMAIL PROTECTED] wrote: Brian wrote... The way it works is, when you click on the 'target' the mouse cursor changes, and it is kept that way as long as you keep the mouse button down, even when you drag the mouse out of the window (that's

[python-win32] SetCursor

2008-07-25 Thread Brian Parma
Is this function working? When I try it using a default cursor (IDC_WAIT), the cursor changes only if the mouse is over the window, and even then if I move the mouse at all it reverts back immediately. I googled this problem a bit and only found one mailing list post on this problem, but there

Re: [python-win32] SetCursor

2008-07-25 Thread Brian Parma
On Fri, Jul 25, 2008 at 4:13 PM, Tim Roberts [EMAIL PROTECTED] wrote: Brian Parma wrote: Is this function working? When I try it using a default cursor (IDC_WAIT), the cursor changes only if the mouse is over the window, and even then if I move the mouse at all it reverts back immediately

Re: [python-win32] SetCursor

2008-07-25 Thread Brian Parma
On Fri, Jul 25, 2008 at 6:13 PM, Tim Roberts [EMAIL PROTECTED] wrote: Brian Parma wrote: I was under the impression that SetCursor sets the mouse cursor 'system-wide', not just for your window. At least that's how it seems to work in this C++ example: No. It did in Win16