InterviewSolution
Saved Bookmarks
| 1. |
How to add menushortcut to menu item? |
|
Answer» If there is a button instance called b1, you may add menu short cut by calling b1.setMnemonic('F'), so the user may be able to use Alt+F to click the button. |
|