Link to home
Start Free TrialLog in
Avatar of Petr Laškevič
Petr Laškevič

asked on

Control Shift S tkinter

With Python I can bind events and functions. This following piece of code calls a  function save everytime I press Ctrl and s key:
 root.bind('<Control-s>',save)

Open in new window

How can I bind pressing Ctrl + Shift + S with a function using  tkinter?
this doesn't work:
root.bind('<Control-Shift-s>',save)

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Petr Laškevič
Petr Laškevič

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial