I'm wondering how to add more information to an event embed in a button.
For example:
okButton = ttk.Button( content, text = 'OK' )
okButton.bind( "<Button-1>", browseFile )
def browseFile( event ):
pass
When the button clicked, I want to pass the string parameter 'OK' to the function browseFile, what I need to do?
Thanks
myText = 'OK'insidebrowseFile? Why do you need to pass it as a parameter? – Kevin Jul 9 '12 at 13:53