Hi there.
Iim wanting a button pressed to do TWO commands .. one after another.
EG.
instead of my current code
musicbu = Button(root, text = 'Backup Music', width = 17, command = musicback1)
and musicback1 is a def (): with a complete and working script, i wondered if i could within that def make it link to a second command after the first had finished directly without having to "press" another button?
eg .. the last line might be
goto musicback2
and then i "def musicback2():" with whatever i like. So it is really just a single line if something like that is possible, i would like to know, i can't find too much in the example codes doing something like this
Thanks for your time