Text Candy: End Movie style scrolling credits....

Hi,
I’ve been playing with Text Candy for the past couple of days trying to code end of movie style credits. Text begins at the bottom of the screen and slowly move all the way the top.

Any hints or tips on how to achieve this?
Thanks [import]uid: 119459 topic_id: 26591 reply_id: 326591[/import]

Here is a way to make an End Credits Scroller. Just change “EndCredits” to the name of your text object to get it to work. Change scrollSpeed for faster/slower scrolling. And set originY = “TOP” for the text to start below the screen.

[code]
local scrollSpeed = 2
local counter=0
local function scrollText()
counter = counter + scrollSpeed
nextY = (display.contentHeight) - counter
EndCredits:setProperty(“y”,nextY)
end

Runtime:addEventListener( “enterFrame”, scrollText )
[/code] [import]uid: 129287 topic_id: 26591 reply_id: 108779[/import]

Thanks,
That worked great. [import]uid: 119459 topic_id: 26591 reply_id: 109099[/import]