Automation and bots

 Помощь      Поиск      Пользователи


 Страниц (1): [1]   

> Без описания
Sticls
Отправлено: 03 Декабря, 2017 - 15:41:45
Post Id



Пользователь
Newbie


Покинул форум
Сообщений всего: 4
Дата рег-ции: Дек. 2017  
Репутация: 0
Карма 0




How to make the image wait? As in a visual editor?
I do so. Tell me how to make the program wait for the image mi.

int Image_0[46][52];
int PosX_0[512];int PosY_0[512];


loadimage (#Image_0[0][0], "C:\scr\mi.bmp");


if (findimage(1, #Image_0[0][0], 0, #PosX_0[0], #PosY_0[0], 200, 355, 300, 450, -1)==1)
{
messagebox ("mi");
}
 
 Top
Kibor
Отправлено: 04 Декабря, 2017 - 05:45:58
Post Id



Администратор
Full Member


Покинул форум
Сообщений всего: 160
Дата рег-ции: Дек. 2017  
Репутация: 0
Карма 0




Waits for 60,000 msec (1 second)

CODE:
int Image_0[46][52];
int PosX_0[512];int PosY_0[512];


loadimage (#Image_0[0][0], "C:\scr\mi.bmp");

for (int t=gettime(); gettime()-t<60000; sleep(100))
{
if (findimage(1, #Image_0[0][0], 0, #PosX_0[0], #PosY_0[0], 200, 355, 300, 450, -1)==1)
{
messagebox ("mi");
}
}


-----
The Visual Code Editor is Kibor. Creating bots without knowledge of programming.

Learning function for recognizing text.
-----
 
 Top
Sticls
Отправлено: 05 Декабря, 2017 - 00:33:12
Post Id



Пользователь
Newbie


Покинул форум
Сообщений всего: 4
Дата рег-ции: Дек. 2017  
Репутация: 0
Карма 0




Tell me, how do I enter text in the field after pressing Ctrl A?
Draw blocks of the keyboard for a long time.

 
 Top
Kibor
Отправлено: 05 Декабря, 2017 - 05:21:08
Post Id



Администратор
Full Member


Покинул форум
Сообщений всего: 160
Дата рег-ции: Дек. 2017  
Репутация: 0
Карма 0




After the block
keyup 17
you need to insert a block of code:

CODE:
sleep (500);
writeclipboard ("Text to be written");
sleep (200);
keydown (17); key (86); keyup (17);


This code works like this:
Copies the text to the clipboard and inserts it from the clipboard using Ctrl V

-----
The Visual Code Editor is Kibor. Creating bots without knowledge of programming.

Learning function for recognizing text.
-----
 
 Top
Sticls
Отправлено: 05 Декабря, 2017 - 09:28:22
Post Id



Пользователь
Newbie


Покинул форум
Сообщений всего: 4
Дата рег-ции: Дек. 2017  
Репутация: 0
Карма 0




Can I make it so that the text can be changed when the program is compiled into exe?
I need to fill out the form. What would be possible to enter different data.
 
 Top
Kibor
Отправлено: 05 Декабря, 2017 - 11:26:44
Post Id



Администратор
Full Member


Покинул форум
Сообщений всего: 160
Дата рег-ции: Дек. 2017  
Репутация: 0
Карма 0




In this case, you can read from a file..

CODE:
string t[100];
int k=0;
int X[100], Y[100];//Here the coordinates of the fields for text input

if (fopen ("c:\file.txt", "r")!=0)//open the file for reading "r"
{
while (freadline(t[k])!=0)//We read on the whole line until the end of the file
{
k++;
}
fclose();//close the file
}




for (int n=0; n<k; n++)
{
mouse(LEFT, X[n], Y[n]);//Click on the field to enter text
sleep (200);
keydown (17); key (65); keyup (17);//Ctrl A (select the text that was)

sleep (500);

writeclipboard (t[n]);//we put into the clipboard the text to be entered
sleep (200);
keydown (17); key (86); keyup (17);//Ctrl V we (paste the text)
}


-----
The Visual Code Editor is Kibor. Creating bots without knowledge of programming.

Learning function for recognizing text.
-----
 
 Top
Страниц (1): [1]
Сейчас эту тему просматривают: 1 (гостей: 1, зарегистрированных: 0)
« Issues and problem solving »


Все гости форума могут просматривать этот раздел.
Только зарегистрированные пользователи могут создавать новые темы в этом разделе.
Только зарегистрированные пользователи могут отвечать на сообщения в этом разделе.
 




Powered by