sound=ss ._load_local_sound('.wav') def button1(): sound.play() sound.set_volume(1) def button2(): sound.pause() def button3(): sound.rewind() frame=ss.create_frame('song',400,400) b1=frame.add_button('play',button1) b2=frame.add_button('play',button2) b3=frame.add_button('play',button3) frame.start()