Go to documentation repository
The Base64EncodeFile method encodes a file to Base64. The method returns a string.
See also The Base64Decode method and The SaveToFile method.
Method call syntax:
function Base64EncodeFile (data_in: String): String
Method arguments:
Example. At running Macro 1, encode 1.bmp to Base64 and save it to 2.bmp.
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN") { var s = Base64EncodeFile("d:\\1.bmp"); SaveToFile("d:\\2.bmp",s, true); }