Is there a way to update the location of an image?
I'm currently calling my image dynamically using:
itemImage = display.newImage(inventory[t.ID][1])
t. being my target ID.
But in order for Storyboard to properly work, I need to change its location in my code to above my function, rendering its dynamic properties useless. Is there a way to update it like you can do with .text?
something along the lines of:
itemImage.image(inventory[t.ID][1])
itemImage.imageUpdate(inventory[t.ID][1])
etc...