Skip to content
/ moostoo Public

Moostoo for automating mouse and keyboard inputs with recording and scripts

License

Notifications You must be signed in to change notification settings

d3ep4k/moostoo

Repository files navigation

moostoo

You can create a script with jquery like syntax.

Key Events

$.type("Foo");
$.type($.DOWN);

Mouse Clicks

$.click(100,100);

Use Java loop to repeat an action.

for (int i = 0; i < 9; i++) {
            $.type($.DOWN);
}

Loop strings from a text file

$.loop((String line)->{
    $.type(line);
},getClass().getResourceAsStream("loop.txt"))

About

Moostoo for automating mouse and keyboard inputs with recording and scripts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages