MikeTheWatchGuy

Results 244 comments of MikeTheWatchGuy

You can try straight tkinter code too to see what happens. ```python import tkinter as tk import tkinter.filedialog root = tk.Tk() tk.filedialog.asksaveasfile() ```

Try asking on StackOverflow. The work-around/fix is to get your system configuration set up with a working combination of OS, Python and Tk versions and settings. The bulleted list a...

You should be able to scroll when your mouse is located in the column, or perhaps it has to be over the scrollbar right now? I don't know, but I'm...

It scrolls with the mouse when you are over the scrollbar.

I spent over a week trying to fix the scroll wheel behavior and eventually had to say "that's the best I can do at the moment". I was lucky to...

Damn! It's getting closer.

How does the image name different between this use and when it's used in a `remi.gui.Image` widget? I am able to get the background image to **some** of the filenames...

Is there a way to pass in the "contents of a file" into an Image widget instead of a filename? One thing I use a lot in PySimpleGUI is Base64...

Wow! Thank you very much!!! I'll give it a try as soon as I can.... Thank you for all the quick help!

I made a little function that will take my base64 variables and turn them into things that are passed to you: ```python def base64_to_style_image(base64_image): return "url('data:image/png;base64,"+base64_image+"')" # using the func...