[Help] How to press on one position for 30 minutes then swipe to another position?

7emper

New member
I want to press on one position for 30 minutes then swipe to another position.

I can use the shell command "input swipe 532 1816 532 1816 1800000" to press on screen for 30 minutes, but after that I can't continue it to swipe to another positon then release the finger but without release the first press before the swipe.

Please help me. Thanks.
 

Catcher

New member
I want to press on one position for 30 minutes then swipe to another position.

I can use the shell command "input swipe 532 1816 532 1816 1800000" to press on screen for 30 minutes, but after that I can't continue it to swipe to another positon then release the finger but without release the first press before the swipe.

Please help me. Thanks.
Yeah I see what you are saying. It's like karate doing those forms, kata.
 

FrameXX

Well-known member
That sounds really sophisticated. I have doubts MacroDroid can do that. There is an option for sequence of gestures but it allows for only 99999ms which is around 1min30sec, so that will propably not work for you. I just have a feeling that MacroDroid wasn't built with a thought that someone might want to press on position for half an hour.
 

7emper

New member
That sounds really sophisticated. I have doubts MacroDroid can do that. There is an option for sequence of gestures but it allows for only 99999ms which is around 1min30sec, so that will propably not work for you. I just have a feeling that MacroDroid wasn't built with a thought that someone might want to press on position for half an hour.
I solved it with an app called 'QuickMacro' - "com.cyjh.mobileanjian", which can write script like this:
Delay 5000- TickCount()
TouchDownEvent 532,1816,0
Delay 1800000- TickCount()
TouchMoveEvent 850,1400,0,9
Delay 500- TickCount()
TouchUpEvent 0

Hope Macrodroid can have these 'TouchDown' 'TouchUp' actions.
 
Top