How do i make my text look like the star wars intro

Ho i make my text look like in the start wars intro

I tried something named perspectiv but its says it doesnt  support text

Any ways to make it possible?

You can’t do 2.5D quadrilateral distortions on display.newText(). The render cost is too high and it would not be very performant. But what you can do, is use display.newSnapShot() to convert a display.newText() into a regular rectangle and then apply the distortion on the snapshot to give you the effect. See:

http://docs.coronalabs.com/guide/graphics/3D.html

http://docs.coronalabs.com/api/library/display/newSnapshot.html

Rob