touch 示例代码
示例
touch.on(306, 300):step_len(2):step_delay(0):move(350, 800):msleep(1000):off()
touch.on(306, 300)
:step_len(2)
:step_delay(0)
:move(350, 800)
:msleep(1000)
:off()
local te = touch.on(306,300)
te:step_len(2)
te:step_delay(0)
te:move(350, 800)
te:msleep(1000)
te:off()
touch.on(306, 300)
:move(350, 800)
:msleep(1000)
:off()
touch.on(306, 300):move(350, 800):msleep(1000):off()
touch.on(306, 300):msleep(30):off()
快速精确滑动技巧
touch.on(125, 2000)
:step_len(10)
:move(125, 555)
:step_len(1)
:move(125, 505)
:delay(100)
:off()