I have been developing a small app to do various different things such as for me opening Steam, Skype and games for steam. Shut down restart and sleep. I am now developing a small volume slider to go with my application at the bottom. But I cannot seem to find anywhere or anything to do to get this to work. For the volume slider I am currently using these lines of code:
w = Scale(win, from_=0, to=100, length = 200, tickinterval = 10, orient=HORIZONTAL)
w.set(23)
Then:
w.grid(row = 5, column = 1, padx = 10, pady = 10)
But cannot seem to find a way for this to control my windows volume. Any help will be greatly appreciated. Thanks.