PitStop action lists via script

bens
Advanced member
Posts: 253
Joined: Thu Mar 03, 2011 10:13 am

Re: PitStop action lists via script

Post 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' );
flussidicaio
Member
Posts: 21
Joined: Thu May 03, 2018 6:07 pm

Re: PitStop action lists via script

Post 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 ...
Post Reply