
Function introduction
1. There is no limit to the number of Android phones that can be controlled in batches. I personally tested it and it was very easy to control more than 20 phones. Unfortunately, I don’t have more phones.
2. Support writing your own scripts
Basic introduction
Login account: test
Login password: 123456
Instructions for use
Basic script commands: click, slide, long press, input, key press, delay
Script constants: screen width, screen height
Example of basic script commands:
Click 100 200
Long press 100 200
Click [Screen Width-100] 100
Click [screen width-100] [screen height-100]
Slide 100 200 100 500
Enter abc hello123
Button 26
Delay 2000
Examples of basic script commands:
Click command - enter the x y coordinates to be clicked afterwards
Long press the command - then enter the x y coordinates to be clicked
Sliding command - enter the starting x y coordinate and the ending x y coordinate to slide.
Enter the command - enter the text to be entered after
Key command - enter the key to press later
Delay command - enter the time to be delayed. Unit: milliseconds
Script to get the color of a certain point on the screen: getPixel(x,y)
Script logic command: if else return
Script command example:
if(getPixel(100,200) = 16777215){
Click 100 200
}else {
return
}
Script example description:
If the color value at 100 and 200 on the screen is 16777215, execute; click the 100 200 operation,
Otherwise end the script (return)
Script advanced commands:
Read the file (loadFile), split the text (splitStr)
Loop command (for), break out of the loop (break), end this loop (continue);
Get array length command (#), define variable command (var), get array member operation ([])
Script command example:
var str = loadFile(account.txt;)
var str_arr = splitStr(str,;rn)
for(i=1;#str_arr;1){
var tmp_arr = splitStr(str_arr[i],=|=;)
var name = tmp_arr[1]
var pass = tmp_arr[2]
Enter name
Click 100 200
Delay 2000
Enter pass
Click 1000 300
Delay 2000
if(getPixel(100,200) = 16777215){
Click 100 200
}else {
break
}
}
Button 26
Script example description:
1. Read the contents of account.txt in the software directory
2. Split the read content by line (rn)
3. Start the loop operation, looping from 1 to all accounts
4. Press "|" to split the content of each line
5. Assign value to variable name
6. Assign value to variable pass
break ends the loop and continues to execute the "key 26" command after for




















Useful
Useful
Useful