1========================================
2(audio track)
3========================================
4
5``(midi-track-new idx name)``
6   Returns a new track with name ``name`` to be placed at position
7   ``idx`` in the tracklist.
8
9
10``(track-get-name track)``
11   Returns the name of ``track``.
12
13
14``(track-get-processor track)``
15   Returns the processor of ``track``.
16
17
18``(track-get-channel track)``
19   Returns the channel of ``track``.
20
21
22``(track-set-soloed track solo)``
23   Sets whether ``track`` is soloed or not. This creates an undoable
24   action and performs it.
25
26
27``(track-set-muted track muted)``
28   Sets whether ``track`` is muted or not. This creates an undoable
29   action and performs it.
30
31
32``(track-add-lane-region track region lane_pos)``
33   Adds ``region`` to track ``track``. To be used for regions with lanes
34   (midi/audio)
35
36
37