![]() |
|
#1
|
|||
|
|||
|
Hi,
I am trying to build an application with radio buttons activated by keyboard instead of mouse. I am using these lines def onKeyDown(key): if key == 'A': aRadio.visible(1) aans = aRadio.get() print aans But, say there is another OK button if key == 'D': OKbutton.visible(0) dans = OKbutton.get() print dans Now, I am trying, if an user presses the A and D button in succession, then I want some response. if key == 'A': aRadio.visible(1) aans = aRadio.get() print aans if key == 'D': OKbutton.visible(0) dans = OKbutton.get() print 'abcd' But, it is not printing out 'abcd'. Can anyone suggest where I am going wrong or is there is any better way? Thanks in advance for the sugestion Uttama |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Custom Menu Options | south_bank | Vizard | 5 | 07-07-2008 11:52 AM |
| What are the options for making a movie of a Vizard world? | Karla | Vizard | 1 | 05-13-2008 11:56 AM |
| On Screen Keyboard | betancourtb82 | Vizard | 14 | 10-03-2006 01:38 PM |
| Multiple Viewports in Vizard, Utilizing keyboard callback | shivanangel | Vizard | 2 | 02-21-2006 05:56 PM |
| Timer vs. Keyboard input | Wenamun | Vizard | 1 | 01-23-2006 10:04 PM |