I have found nothing in the API or in the forums that suggest that Corona supports the display of a text outline (or stroke).
Currently, if I want a 5 pixel outline, I am literally using a loop to create a text display object for every single pixel (5 pixel border means 5x5=25 text display objects) and then I’m using display.capture to convert it into a single object, while removing the 25 text objects that were made. This works, but it’s a little bit slow.
Is there anything I’m missing? Is there another way to create a nice text outline?