Thanks for the information, guys!

Regarding the shadow window (and its disablement), that does require
importing pyglet first, which doesn't make the app-launch icon appear
in OS X, which is good, but which does appear to break the background-
thread stuff, which is... odd.

Can anyone else confirm that with 1.1a2, the following works:

import threading
def event_loop():
  import pyglet
  w = pyglet.window.Window(resizable=True)
  pyglet.app.run()
t = threading.Thread(target=event_loop)
t.start()

but this does not:

import threading, pyglet
def event_loop():
  w = pyglet.window.Window(resizable=True)
  pyglet.app.run()
t = threading.Thread(target=event_loop)
t.start()


On my Mac (OS X 10.5, core2 duo), and on a virtualized XP SP2 on the
same machine, the former works, but the latter does not. (Using a new
install of pyglet 1.1a2, after wiping out any traces of previous
versions in site-packages, just to be sure.) This strikes me as very
odd, since 'import pyglet' does very little that I can tell, other
than setting up the proper lazy-import stuff. Hopefully it's just
something messed up with my local config...

Zach
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to