Python Forum
Looking for help on making a script [no idea where to start] - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Looking for help on making a script [no idea where to start] (/thread-27892.html)



Looking for help on making a script [no idea where to start] - Chietnemese - Jun-26-2020

Was looking to make a script for a game i play to click on buttons as they appear on screen because its just too hard for me to do lol the buttons appear randomly and they need to be clicked at a precise time and order but i have no clue how to code


RE: Looking for help on making a script [no idea where to start] - Larz60+ - Jun-26-2020

you can use any text editor, so long as file suffix is .py
A better solution is to use an IDE (there are many: google 'python IDE')
I would recommend VSCode, (see tutorial on this forum: https://python-forum.io/Thread-VS-Code-from-start?highlight=VSCode )
but it's a personal choice PyCharm is also well liked.
using an IDE will allow you to easily use debuggers, keep code organized, and quickly execute within a terminal window while developing tour code in another frame (same IDE).