Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
in reply to: vilts

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