Would it be possible for an image element to use a base64 code as the “src” in the Properties window of the image element (currently we can only select files), for single use images? This would remove the need to manually call code to set the src
Current we have manually enter something like this,
var img1 = "base64code";
imageElement1.src = img1;