Extexp has been updated and a new version (1.1) has been released. The NBM is available for download from GitHub.

This release includes a new control command "ForList", a loop construct which runs a command once for each element in a list. The actual element value is presented via a special parameter "__ELEMENT__". The element list is a string using the '|' character as the element delimiter.

Examples of syntax:

    {
        "ForList": "${pageorder}",
        "do": {
            "Use": "PAGEBUILDERWITHCONTENTSSIDEBAR",
            "page": "${__ELEMENT__}"
        }
    }
    {
        "ForList": "apple|lemon|pear",
        "do": {
            "Do": "message",
            "text": "the fruit is ${__ELEMENT__}"
        }
    }
Product: Extexp
15 November 2021