New to PySimpleGUI.
I have a multiline input box :
layout1 = [[sg.Multiline(size=(45,5),key='-IN-')],...
window1 = sg.Window('Source',layout1,finalize=True)
event1,values1 = window1.read()
I type in some text and then using the mouse, I highlight a portion of the text. How do I get that selected (highlighted) text?
In Tkinter, I simply used :
self.title = self.e.selection_get()
but I like what I've seen of PySimpleGUI and would to try to stick with it.
I have searched here, github and google and haven't found anything about this. Hoping it is something simple and that someone is able to point me in the right direction.
Thanks,
Randy