Author Topic: a question  (Read 1514 times)

0 Members and 1 Guest are viewing this topic.

Teo.B

  • Зашел в гости
  • *
  • Posts: 15
    • View Profile
a question
« on: May 22, 2017, 02:10:22 PM »
Hello, Which order can I move from one list of 1 to another?

Teo.B

  • Зашел в гости
  • *
  • Posts: 15
    • View Profile
Re: a question
« Reply #1 on: May 22, 2017, 05:54:09 PM »
I mean that I need the left click of my mouse to be pressed down so that i can move anything i want,what commands do I need to use for this function ?

МистерX

  • Зашел в гости
  • *
  • Posts: 8
    • View Profile
Re: a question
« Reply #2 on: May 22, 2017, 07:13:58 PM »
Hello
Code: (clickermann) [Select]
LDOWN (559,237) // press the left button
WAITMS (500) // pause in milliseconds
MOVE (773,335) // move to the right place
WAITMS (50)
LUP (773,335) // release button
HALT // stop execution

Teo.B

  • Зашел в гости
  • *
  • Posts: 15
    • View Profile
Re: a question
« Reply #3 on: May 22, 2017, 10:00:29 PM »
thank you :)