Re: PitStop action lists via script
Posted: Fri Mar 08, 2019 3:35 pm
Use full paths, and newlines between them:
The Array.join() function can be used to easily create such strings:
Code: Select all
"C:/ActionLists/1.eal\nC:/ActionLists/2.eal"
Code: Select all
var theArray = new Array();
theArray.push( ... );
return theArray.join( '\n' );