How would I display multiple images as separate objects that can be manipulated individually.
I thought I should be able to define an array of images as objects, give them properties and then display and manipulate them based on their array key.
local page = {“Page01s.jpg”, “Page02s.jpg”, “Page03s.jpg”, “Page04s.jpg”, “Page05s.jpg”, “Page06s.jpg”, “Page07s.jpg”}
pageCount = 7
for i=1,pageCount do
local image[i] = display.newImage(page[i])
image[i].rotation = 90
end
display.image[1]
transition.to( image[1], { xScale=0, time=1500 } ) [import]uid: 6397 topic_id: 1044 reply_id: 301044[/import]
