mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-02 18:59:24 +08:00
38 lines
818 B
Rust
38 lines
818 B
Rust
use enigo::{Enigo, MouseButton, MouseControllable};
|
|
use std::thread;
|
|
use std::time::Duration;
|
|
|
|
fn main() {
|
|
let wait_time = Duration::from_secs(2);
|
|
let mut enigo = Enigo::new();
|
|
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_move_to(500, 200);
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_down(MouseButton::Left).ok();
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_move_relative(100, 100);
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_up(MouseButton::Left);
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_click(MouseButton::Left);
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_scroll_x(2);
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_scroll_x(-2);
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_scroll_y(2);
|
|
thread::sleep(wait_time);
|
|
|
|
enigo.mouse_scroll_y(-2);
|
|
thread::sleep(wait_time);
|
|
}
|