Can I update a picture's location?

Hi,

I’m currently working on a pretty simple shop system, and I’m using a single function to parse all my information.

I’m using this function to dynamically call up the correct image to display:

[code]local displayItem = function( event )
local t = event.target

itemImage = display.newImage(inventory[t.ID][1])
end[/code]

And this works fine, but I want to add my shop to Storyboard, and I want to place this picture in the enterScene part of the Storyboard template. But that will obviously remove all the dynamic properties from my picture.

Is there any way to update the picture, like text can with .text? Something like .image (doesnt work as far as I know)? [import]uid: 200198 topic_id: 34990 reply_id: 334990[/import]