В блоке старт объявить переменную win. В блоке кода найти окна.
CODE:win w[10];
int count = window (#w[0], -1, "Antares Game Client Window Class", -1);
messagebox("Найдено окон: "+format(count));
for (int i=0; i<count; i++)
{
messagebox(w.name[i]);
} |