Mouse button differentiation: Right Button click : Mouse Action « Event « Python

Python
1. 2D
2. Application
3. Buildin Function
4. Class
5. Data Structure
6. Data Type
7. Development
8. Dictionary
9. Event
10. Exception
11. File
12. Function
13. GUI Pmw
14. GUI Tk
15. Language Basics
16. List
17. Math
18. Network
19. String
20. System
21. Thread
22. Tuple
23. Utility
24. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Python » Event » Mouse ActionScreenshots 
Mouse button differentiation: Right Button click
Mouse button differentiation: Right Button click

from Tkinter import *

class MouseDetailsFrame ):
   def __init__self ):
      Frame.__init__self )
      self.packexpand = YES, fill = BOTH )
      self.master.title"Mouse clicks and buttons" )
      self.master.geometry"350x150" )

      self.mousePosition = StringVar()
      positionLabel = Labelself,
         textvariable = self.mousePosition )
      self.mousePosition.set"Mouse not clicked" )
      positionLabel.packside = BOTTOM )

      self.bind"<Button-3>", self.rightClick )

   def rightClickself, event ):
      self.showPositionevent.x, event.y )
      self.master.title"Clicked with right mouse button" )

   def showPositionself, x, y ):
      self.mousePosition.set"Pressed at [ " + str", " +
         str" ]" )     

def main():
   MouseDetails().mainloop()

if __name__ == "__main__":
   main()

           
       
Related examples in the same category
1. Mouse action: single click, double clickMouse action: single click, double click
2. Button mouse action: mouse in, out and rolloverButton mouse action: mouse in, out and rollover
3. Image button mouse action: mouse in, out and rollover
4. Mouse events on a frame: Mouse clicked, positionMouse events on a frame: Mouse clicked, position
5. Mouse events on a frame: Mouse released, positionMouse events on a frame: Mouse released, position
6. Mouse events on a frame: Mouse entered
7. Mouse events on a frame: Mouse leftMouse events on a frame: Mouse left
8. Mouse events on a frame: MouseMouse events on a frame: Mouse
9. Mouse button differentiation: Mouse clickMouse button differentiation: Mouse click
10. Mouse button differentiation: center button clicMouse button differentiation: center button clic
11. Mouse Action: mouse cursor enterMouse Action: mouse cursor enter
12. Button single click and double clickButton single click and double click
13. Capturing clicks in a windowCapturing clicks in a window
14. Menu item mouse on (active) foreground colorMenu item mouse on (active) foreground color
15. Mouse Double click
16. Mouse action: left click
17. Mouse action: Right click
18. Mouse action: Middle Mouse key
19. Key and mouse Action infomationKey and mouse Action infomation
20. Mouse action: double click
21. Mouse action: drag
22. Bind mouse click action to the object on a canvasBind mouse click action to the object on a canvas
w_w___w__.jav__a__2s_._co___m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.