Dmitry L.

Results 11 comments of Dmitry L.

> ```py > import locale > locale.setlocale(locale.LC_ALL, "C") > ``` Running this at the start of my App helped me fixing "???" characters instead of months (It was probably trying...

Same here. Possible workaround - just using **Text** widget instead and attach scrollbar to it. ```py textbox = ttk.Text(master=frame) textbox.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) yscrollbar = Scrollbar(frame, orient="vertical", bootstyle="info", command=textbox.yview) yscrollbar.pack(expand=False, fill=Y,...

https://github.com/carykh/jes/issues/47#issuecomment-3101055010

Font size is defined in ``jes_ui.py`` Lines 18-20 ``` self.bigFont = pygame.font.SysFont('Arial', 60) self.smallFont = pygame.font.SysFont('Arial', 30) self.tinyFont = pygame.font.SysFont('Arial', 21) ``` You can try making values here even smaller

> NameError: name 'pygame' is not defined" ``pip install -r requirements.txt`` If does not work, try ``pip install pygame`` and ``pip install numpy``

Also might be the font issue for the original question https://github.com/carykh/jes/issues/47#issuecomment-3101055010

> uhhh did i do something wrong It can't find the background image file, there can be many reasons for that. Make sure that you have all the files downloaded...

https://github.com/carykh/jes/issues/49#issuecomment-3314880802

The more information you provide, the easier it would be for someone to help you. 0) Install latest version of [python](https://www.python.org/downloads/), make sure pip is installed as well, don't forget...

Just use ``python jes.py`` Don't forget to run ``pip install -r requirements.txt`` before that Also you would have to edit the ``jes_ui.py`` file to fix the font issue Lines 18-20...