Change Scene Effect Help

Hello. What is there a good advice for adding a scene-changing effect?

[lua]function new()

local introGroup = display.newGroup()

local background = display.newImage (“fake_large.jpg”)

local begin = display.newImage (“button_begin.png”)
begin.x = 160
begin.y = 400
begin.scene = “menu”

introGroup:insert(background)
introGroup:insert(begin)

begin:addEventListener(“touch”, changeScene)

return introGroup

end[/lua] [import]uid: 162639 topic_id: 33170 reply_id: 333170[/import]

Use storyboard with it’s transitions if you want it to be easy or transition.to( read the documentation for params ) [import]uid: 13560 topic_id: 33170 reply_id: 131710[/import]

Use storyboard with it’s transitions if you want it to be easy or transition.to( read the documentation for params ) [import]uid: 13560 topic_id: 33170 reply_id: 131710[/import]

If using Director there’s a list of transitions in comments here; http://corona.techority.com/2010/11/19/how-to-use-scenesscreens-in-corona/ [import]uid: 52491 topic_id: 33170 reply_id: 131854[/import]

If using Director there’s a list of transitions in comments here; http://corona.techority.com/2010/11/19/how-to-use-scenesscreens-in-corona/ [import]uid: 52491 topic_id: 33170 reply_id: 131854[/import]