Go to documentation repository
The Base64Decode method is used to decode strings that are encoded by the Base64 scheme.
Syntax for method invocation:
function Base64Decode(data_in: String, WideChar: Boolean)
Method arguments:
Example. On macro 1, decode the string specified in Base64. Output the decoding result in the debug window of the Editor-Debugger utility (the result is the "Axxon PSIM JScript" string).
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN") { var str = Base64Decode("SW50ZWxsZWN0IEpTY3JpcHQ= ", 0); DebugLogString(str); }