Editing 2nd Page of List

I made a scrollable list through the tutorial/blog post on this the blog but now I am stumped as to how to edit the second page (the clickthrough) from the list. Any help would be awesome! Thanks. [import]uid: 38692 topic_id: 6773 reply_id: 306773[/import]

It may help to post the location so other members can have a point of reference as to what you’re talking about :smiley:

[import]uid: 8045 topic_id: 6773 reply_id: 23644[/import]

http://blog.anscamobile.com/2010/09/create-scrolling-list-views-with-text-and-graphics-in-coronasdk-ios-android-tutorial/
My bad. Here you guys go.
That’s the tut I used. [import]uid: 38692 topic_id: 6773 reply_id: 23648[/import]

This is how you add stuff to the 2nd page:

[lua]–code above

local detailBg = display.newRect(0,0,display.contentWidth,display.contentHeight-display.screenOriginY)
detailBg:setFillColor(255,255,255)
detailScreen:insert(detailBg)

detailScreenText = display.newText(“You tapped item”, 0, 0, native.systemFontBold, 24)
detailScreenText:setTextColor(0, 0, 0)
detailScreen:insert(detailScreenText)
detailScreenText.x = math.floor(display.contentWidth/2)
detailScreenText.y = math.floor(display.contentHeight/2)
detailScreen.x = display.contentWidth

–add this code—START—
–Look at this part as a sample - it’s a group display - will add a coffee cup
detailScreenImage = display.newImage(“coffee1.png”)
detailScreen:insert(detailScreenImage)
detailScreenImage.x = display.contentWidth/2
detailScreenImage.y = display.contentHeight/2
–add this code —END—
–code below[/lua] [import]uid: 8045 topic_id: 6773 reply_id: 23660[/import]