So I have a script that can produce this as a result
When I run a separate script and set the variable as the hard value, it successfully opens all the tabs and links
let newTabIds = await ACtl.openURL(new_s, {leftOf: '#currentTab'}) ;
But what I want is to be able for that new_s variable to be produced dynamically and open the urls in one go.
What do I have to change in this for it to work:
It saves the value of new_s to a file in filePath so I know the values are absolutely identical. Works when I paste that as a hard value as new_s in a separate script but not in this formula that dynamically produces it. What am I doing wrong? Help appreciated, thanks!