examples/events/allEventsExample/README.md
This Example demonstrates the keyboard and mouse event of openFrameworks.
After studying this example, you'll understand how to trigger events and retrieve information from events such as mouse behavior, cursor position, which mouse button is pressed or what key is pressed.
In the code, pay attention to:
ofGetTimestampString() and ofGetElapsedTimeMillis()keyReleased(int key) ```keyPressed(int key)```
mouseMoved(int x, int y ) ```mouseDragged(int x, int y, int button)```
```mousePressed(int x, int y, int button)```
```mouseReleased(int x, int y, int button)```
windowResized(int w, int h)When launching this app, you should see a screen with
Instructions for use:
This Example uses no other classes.