Hi Lemi,
FIrst of all thanks a lot for purchasing and we’re glad you like it 
In regards to your question, if you have the five step buttons along the top with an associated ID for each, you could do something like the following to display an image related to that button over everything else.
--Shows your one of your drawing steps images.
local function showStep( event )
if event.phase == "ended" then
--Get the id of the button. You have to set this when you create the button
local id = event.target.id
local image, close
--Function for closing this step popup.
local function closeStep(event)
display.remove(image); image=nil
display.remove(close); close=nil
return true
end
--Open an image that is related to the button you pressed
image = display.newImageRect("stepbystep"..id..".png", 480, 320)
image.x = \_W\*0.5; image.y = \_H\*0.5;
overlayGroup:insert(image) --Insert it ontop of everything else.
--Then show a close button ontop of that.
close = display.newImageRect("closeBtn.png", 40, 40)
close.x = \_W-30; close.y = 30;
close:addEventListener("tap", closeStep)
overlayGroup:insert(close)
end
return true
end
button:addEventListener("touch", showstep)
Obviously i have just made up the images and groups, but you get the general gist
You could also do it a different way by creating a whole new group inside that function and just transitioning that up onto the screen as a popup. Either way is good! [import]uid: 69826 topic_id: 34395 reply_id: 138257[/import]