Python Forum
I don't even know problem - 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: I don't even know problem (/thread-2139.html)



I don't even know problem - cptyozgat - Feb-21-2017

Hey guys;
I just want to click on on-screen board with mouse manupilation. I tried PyAutoGui and PyMouse couln't get any ruselt also Java too but it didn't worked too. I need to click on windows' on-screen keyboard with mouse its that easy or not I don't know Angry


RE: I don't even know problem - sparkz_alot - Feb-21-2017

Please take the time to read the Help documents on how to ask a proper question. Post any relevant code between the 'code' tags and any errors between the 'error' tags.


RE: I don't even know problem - nilamo - Mar-27-2017

What if there isn't an on screen keyboard?
What if I don't have a mouse plugged in?
What if there's a heavy book on top of my mouse, so you can't move it?


RE: I don't even know problem - wavic - Mar-27-2017

What have you tried?

I wrote a simple clicker for my brother who is playing some browser game and pyautogui works like a charm.

import pyautogui as ag

ag.moveTo(500, 500)
ag.click()

http://pyautogui.readthedocs.io/en/latest/mouse.html