Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Decode the line that is set in Base64 by starting macro №1. Output the decoding result into the debug windows of the Editor-Debugger utility. (Result is « Intellect Axxon PSIM JAVA SCRIPT» line).

Code Block
languagejavascript
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN")
{
                var str = Base64Decode("SW50ZWxsZWN0IEpTY3JpcHQ= ", 0);
                DebugLogString(str);
}