When I create an image using the image() block, I don’t seem to be able to access its “properties” using the getProperty() block.
The following would output null, instead of the height of the image:
image(“logo”, “http://code.org/images/logo.png”);
console.log(getProperty(“logo”, “height”));
Is there a way to get it to do what I want it to do?
Thanks in advance,
Bill