Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if (Intensity=25) then TempGetColour:=RGB(160,160,160);
procedure TMainForm.xALL;
begin
repeat
xManagerALL;
until (CallPack[0..9].active = false);
end;
procedure TMainForm.xALL;
begin
repeat
xManagerALL;
until (CallPack[0].active = false) and
(CallPack[1].active = false) and
(CallPack[2].active = false) and
(CallPack[3].active = false) and
(CallPack[4].active = false) and
(CallPack[5].active = false) and
(CallPack[6].active = false) and
(CallPack[7].active = false) and
(CallPack[8].active = false) and
(CallPack[9].active = false);
end;
procedure TMainForm.xALL;
begin
repeat
xManagerALL;
until (CallPack[0..9].active = false);
end;
function AreElementsActive(ALow, AHigh: Integer): Boolean;
var
c : Integer;
begin
Result := False;
for c := ALow to AHigh do
Result := Result or CallPack[c].Active;
end;
procedure TMainForm.xALL;
begin
repeat
xManagerALL;
until not AreElementsActive(0, 9);
end;
Result := Result or CallPack[c].Active;