Purpose
Get current UTC date and time

Solution

// current UTC date and time
// in format dd.mm.yyyy HH:MM:SS
CallJS mytime = utctime

// display test message
Message "UTC time: &V[mytime]"


JavaScript function

function utctime() {
    var now = new Date();

    var dd = now.getUTCDate().pad(2);
    var mm = (now.getUTCMonth() + 1).pad(2);
    var yyyy = now.getUTCFullYear();

    var HH = now.getUTCHours().pad(2);
    var MM = now.getUTCMinutes().pad(2);
    var SS = now.getUTCSeconds().pad(2);


    return dd + "." + mm + "." + yyyy + 
              " " + HH + ":" + MM + ":" + SS;


}


Number.prototype.pad = function (size) {

    var s = String(this);

    while (s.length < (size || 2)) { s = "0" + s; }

    return s;

}

Components
InputAssistant + Controls