Desktop graphics - or "skinned" windows
Asked Answered
S

1

3

I'm looking for a way to draw animations right on the desktop. No window frames and with transparent background.

I'm using Python in windows XP for it, but it doesn't have to be cross platform, although it'd be a nice bonus.

Does anyone know about a python library that can do this?

Sunroom answered 28/12, 2008 at 22:41 Comment(1)
#550501Berliner
D
2

If you want a frameless window, there are several options. For example, pygame can be initialized with the following flag:

pygame.init()
screen = pygame.display.set_mode(size=(640,480), pygame.NOFRAME)

Your question doesn't make it clear if you're looking for a transparent surface, though.

Digiovanni answered 29/12, 2008 at 0:25 Comment(1)
I guess I was a bit presumptuous there. Yes, I'm looking for a transparent window without borders.Sunroom

© 2022 - 2024 — McMap. All rights reserved.