02-22-2016
09:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
02-22-2016
09:17 PM
Just wanted to come back and add this information in case someone finds this thread.
The following code allows the pass through to accept multiple lines.
function onPassThrough( text ) {
var lines = String( text ).split( ";" );
for ( var i in lines ) {
writeln( lines[ i ] );
}Dave
Fusion