mouse.move 命令中的鼠标位置参数表示什么?
What does mouse position argument signify in mouse.move command?
在这个特定的代码中,如果对于 mouse.move 命令,我给出参数 1100/500 它向右移动,如果我给出参数 100/500 它向左移动并不重要目标位置是。连500/500都在向右移动,什么意思?
keyboard ⋘WIN+D⋙
mouse.click 336⫽49 relative false type down
mouse.move 1100⫽500 wait 1000 relative false
mouse.click 1819⫽870 relative false type up
在这个例子中mouse.move
不会对整个自动化产生很大的影响,因为你已经命令机器人在336⫽49
位置按下鼠标左键,然后随机移动到某个地方(到 1100⫽500
位置)最后移动到 1819⫽870
位置并松开鼠标左键。
在这个特定的代码中,如果对于 mouse.move 命令,我给出参数 1100/500 它向右移动,如果我给出参数 100/500 它向左移动并不重要目标位置是。连500/500都在向右移动,什么意思?
keyboard ⋘WIN+D⋙
mouse.click 336⫽49 relative false type down
mouse.move 1100⫽500 wait 1000 relative false
mouse.click 1819⫽870 relative false type up
在这个例子中mouse.move
不会对整个自动化产生很大的影响,因为你已经命令机器人在336⫽49
位置按下鼠标左键,然后随机移动到某个地方(到 1100⫽500
位置)最后移动到 1819⫽870
位置并松开鼠标左键。