Advertisement
alestane

Alignment illustration

Apr 24th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local test = display.newText{
  2.     text="Now is the\ntime for all\ngood men\nto come to the aid\nof their party.",
  3.     font = native.systemFont, fontSize = 16, align = 'center';
  4.     x = display.contentCenterX, y = display.contentCenterY; width = 120, height = 0;
  5. }
  6.  
  7. timer.performWithDelay(3000, function() test.text = "Center\nalignment\nis more appealing\n than readable" end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement