How to slide pages in Corona SDK
问题 I'm using CORONA SDK. I have a set of pages and I would like to slide between them using swipe left -right. The page contains a set of controls (mostly text) What is the best way to do this slide/swipe in Corona? 回答1: Using touch events. When the phase of event is "began" (The user just touched the screen), allow the three pages to move (the actual, the forwards and the backwards). if event.phase == "began" then page1.canMove = true page2.canMove = true page3.canMove = true initial = {}