Text Alignment in String

I’m currently working on aligning a string such that each row has multiple fields.

Example/

Row 1: Cats 35 23
Row 2: dogs 0 4
Row 3: Mouse 20 3

I was able to align them perfectly in the simulator using multiple “\t” (tabs). However, when I built it for my device and tested it, the indenting was totally off. I was wondering if I was doing something wrong.

Here is my code:

local inputString = "Cats\t\t35\t23\ndogs\t\t0\t4\nMouse\t20\t3\n"  
scrollBox:replaceLine(inputString, 85, 70)  

What scrollBox does is it takes the input and creates a wrapped version of the text. That is stored inside a group which is added to the scrollview. [import]uid: 11917 topic_id: 10523 reply_id: 310523[/import]