Commands : I saw them but where ?

Hi all,

I’m currenly searching the command list available in mAirlist (v2). I know I saw them few days ago, into a topic in this forum. But, I did not manage to find them at the moment.

Can somebody help me ? I’m searching the whole list of commands available like “PLAYLIST x MOVE…” etc etc…

Sorry for that, I know they are somewhere into a topic, but… ???

Simon maintains a list in the German Wiki: http://wiki.mairlist.de/index.php/Fernsteuerungs-Befehle.

Oh, and in v3, you can easily create your own list:

var
  ts: TStringList;
  s: IStrings;
  i: integer;

begin
  s := Instance.GetCommandList;
  ts := TStringList.Create;
  for i := 0 to s.GetCount - 1 do
    ts.Add(s.GetItem(i));
  ts.SaveToFile('c:\commands.txt');
  ts.Free;
end.

(untested)

It would be much easier if I had passed the SaveToFile method through the IStrings interface (which is actually a wrapper for TStringList to make it reference-counted).

Great Torben. It’s wonderful. Thanks :wink:

Oh, and please understand that this list might be incomplete - it’s the one from the drop-down list in the config and it’s not related to the way commands are actually processed inside the software.