Jump to content

can robotux adjust with each iteration?


MonDie

Recommended Posts

I want robotux to adjust the keys pressed with each iteration. For example, the Macro Editor might have something like PRESS 1 @ 3789 if I told it to press the 1-key. I might want it to adjust with each iteration as follows...

PRESS 2 @ 3789

PRESS 3 @ 3789

PRESS 4 @ 3789

and so on.

 

I could do something like that with OnBoard (the on-screen keyboard) by having it drag to the left with each iteration, but functionality would be extremely limited. What if I want it to do 00-99? I would have to stop it before the 0-key, edit the macro, drag OnBoard back exactly, then start it again.

Edited by MonDie
Link to comment
Share on other sites

You would need to add a counter and possibly a loop.

 

pseudocode:

 

for (i = 1; i < 100; i++) {
PRESS i @ 3789;
}

 

Otherwise you can instead create one script with each change hard coded.

 

ie.

PRESS 1 @ 3789

WAIT(or equivalent only if necessary)

PRESS 2 @ 3789

WAIT

...

 

May be an idea to look at different scripting programs.

Edited by Endy0816
Link to comment
Share on other sites

Or rather than enter a WAIT command, I could have it stop after only 1 iteration, right before the numbers are entered. Then I'll just enter the numbers and hit ctrl + shift + F8 to start it again. Thanks!

Link to comment
Share on other sites

I've never made animated gifs. If you can move it with the arrow keys, then yes, definitely.

The orientation of the mouse won't change with each iteration, so for example, leaving the mouse leftward at the end of the recording won't cause the mouse to left-shift with each iteration. Doing what you want with the mouse might require that scroll or move the window with each iteration.

Edited by MonDie
Link to comment
Share on other sites

I've never made animated gifs.

 

It's easy. You have a series of images in BMP file format. Then you get JavaScript to run through each of the images. The JavaScript is built into browsers already for GIFs it wasn't always.

Edited by fiveworlds
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.