Method: Make( … )

This may become one of your most used methods. It is sort of a templating method that returns a new value based on a mix of static content and references to values from the current Input-row or values from variables. This will save you from a lot of scripting-code to add content together, and it will look more readable.

Syntax

string Make( string content )

Example

Below shows how to create a complete path based on some data that is looked up from in the Input-row (e.g. DirectoryName, Name and Extension) as well as a value from a global variable named $root.

// parts contained in brackets {} will be looked up in Input-row or from variable Value = Make( "{=$root}/{DirectoryName}/Processed/{Name}.{Extension}" );