lua - Animating labels in Corona SDK -


is possible create sort of animation label in corona sdk? want make text appear big then, position move after comes , shrinks? don't want use image because text on label changes. if possible, can please point me right direction? thank you.

is looking..?

local label = display.newtext("label_1",50,100,nil,20)  local function transition_3()    label.text = "label_3"    transition.to(label,{time=1000,xscale=1,yscale=1}) end local function transition_2()    label.text = "label_2"    transition.to(label,{time=1000,x=label.x+50,y=label.y+50,oncomplete=transition_3}) end transition.to(label,{time=1000,xscale=1.5,yscale=1.5,oncomplete=transition_2}) 

keep coding........ :)


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -