Actions that are not in the above table, such as Move tabs, Move/Resize or Scroll,
don't have a direct equivalent in the scripting API, but can be triggered indirectly using the ACtl.execAction function.
Let's see an example:
Suppose we wanted to perform the "scroll down" action from a script. Since there's no ACtl function for that action, we can create it in the GUI
and then call it programmatically, as follows:
And now we can trigger that action from a script, like this:
//Scroll down the current window one notch
await ACtl.execAction('Scroll down', '#currentTab') ;