Page 2 of 2

Re: PitStop action lists via script

Posted: Fri Mar 08, 2019 3:35 pm
by bens
Use full paths, and newlines between them:

Code: Select all

"C:/ActionLists/1.eal\nC:/ActionLists/2.eal"
The Array.join() function can be used to easily create such strings:

Code: Select all

var theArray = new Array();
theArray.push( ... );
return theArray.join( '\n' );

Re: PitStop action lists via script

Posted: Fri Mar 08, 2019 4:15 pm
by flussidicaio
YES
this works
I had tried join(',') And join(';') and it did not work. So I became discouraged

thanks to you and to all those who are interested in my problem ...