MikeTheWatchGuy

Results 244 comments of MikeTheWatchGuy

I seemed to have hit a bug in the resizeable_panes.py file. When I overlapped them like this: ![image](https://user-images.githubusercontent.com/13696193/54321053-cfe0c980-45c5-11e9-93d8-363bdff3833b.png) I am unable to move them anymore and the console repeats these...

I don't know if this is at all of help to the Multiple Page App.... In PySimpleGUI you can run multiple windows. Some high level calls that create a window...

I've determined now that I need to also get the column number. Can you tell me how I would go about adding that? I assume it's another loop added in...

Oh, I just noticed this code that I did not see last night! This seems to be in the right direction! ```python def open_fileselection_dialog(self, widget): self.fileselectionDialog = gui.FileSelectionDialog('File Selection Dialog',...

Ooooo ooo oooo... I'm getting closer. I was able to get a popup dialog by including this widget in my layout: `remi.gui.FileUploader('./', width=200, height=30, margin='10px')` Clearly a lot to learn,...

All I want this button to do is show one of the 4 Windows File/Folder dialog boxes that I showed at the start of the Issue. I don't want to...

Hey! I managed to get this Super Mario Brothers game to run in my PySimpleGUI (tkinter) window! It would be amazing to get it piped out to a Remi window......

WOW you're quick! That's amazing. Is there a way of not showing the PyGame window. I managed to do it using tkinter in a way that embeds the window and...

I managed to not display the PyGame window! I added 2 os.environ calls and after that, only the Remi window shows the game!!! THIS IS EPIC!! Here is where I...

Hmmmm.... unlike when I integrated with tkinter, key presses are not being returned to the application. With tkinter, I was able to do another level of integration. This statement: `os.environ['SDL_WINDOWID']...