Hi There,
I am getting an error when i try to build a simple app in Text Mate
using the run script command. The source runs fine if I build through
the Terminal but when built through Text Mate the following error is
thrown:
OSError: dlopen(/System/Library/Frameworks/AGL.framework/AGL, 6):
Symbol not found: _CGLClearDrawable Referenced from: /System/Library/
Frameworks/CoreVideo.framework/Versions/A/CoreVideo Expected in: flat
namespace
Here is the code I am attempting to run:
import sys
import os
from pyglet.window import Window
from pyglet.text import Label
import pyglet
window = Window()
label = Label()
def main():
pyglet.app.run()
pass
@window.event
def on_draw():
window.clear()
pass
if __name__ == '__main__':
main()
Any thoughts?
Thank you
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---