mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
15 lines
273 B
Plaintext
15 lines
273 B
Plaintext
// by commy2
|
|
|
|
private ["_array", "_index"];
|
|
|
|
_array = [];
|
|
|
|
for "_index" from 0 to 10000 do {
|
|
if (str (findDisplay _this displayCtrl _index) != "No control") then {
|
|
diag_log text str (findDisplay _this displayCtrl _index);
|
|
_array pushBack _index;
|
|
};
|
|
};
|
|
|
|
_array;
|