How to ease transition?

I’m having trouble figuring out how to change the default transition.to easing from linear to any other (ie. outQuad).

I see it listed in the Reference but not how to implement this.

Can you give me an example please?

Thanks,
Kyle [import]uid: 4609 topic_id: 444 reply_id: 300444[/import]

Kyle,

Something like this:

local tween = transition.to(myDisplayObject, { time=1000, alpha=0, transition = easing.outQuad } )  

Jon [import]uid: 3544 topic_id: 444 reply_id: 855[/import]

Thanks! I was trying to include the parameters with it before… makes more sense now! [import]uid: 4609 topic_id: 444 reply_id: 857[/import]