VOOZH about

URL: https://www.geeksforgeeks.org/python/pyglet-on-text-event/

⇱ PYGLET – On Text Event - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PYGLET – On Text Event

Last Updated : 26 Jul, 2021

In this article we will see how we can trigger on text event in PYGLET module in python. Pyglet is easy to use but powerful library for developing visually rich GUI applications like games, multimedia etc. A window is a "heavyweight" object occupying operating system resources. Windows may appear as floating regions or can be set to fill an entire screen (fullscreen).Typically this is called after on_key_press() and before on_key_release(), but may also be called multiple times if the key is held down (key repeating); or called without key presses if another input method was used (e.g., a pen input). We should always use this method for interpreting text, as the key symbols often have complex mappings to their unicode representation which this event takes care of.
We can create a window with the help of command given below 
 

pyglet.window.Window(width, height, title)


Below is the syntax of the on text event, this method get called when this event is triggered 
 

@window.event 
def on_text(text):
 print("On text event")


Below is the implementation 
 

Output : 
 

👁 Image


 

You are entering : g
You are entering : e
You are entering : e
You are entering : k


 

Comment
Article Tags: