@orange said in Very newb question: how do I load an image file?:
@VirtualVirgin Copy the image file to the project's Images folder. After that, you can change all of the properties with setPropertiesFromJSON easily. I also added Width and Height for example.
const var VVLogo = Content.getComponent("VVLogo"); Content.setPropertiesFromJSON("VVLogo", { "width": 150, "height": 150, "fileName": "{PROJECT_FOLDER}VV_logo.jpg" });
Thank you :)
Yes, this solved it!