Displaying bulleted list using display.newText

Hi there,

I would like to ask if its possible to display bulleted list using display.newText ? I have a multi line string that i want to format into bulleted list with a bullet(i.e a dot) at the front of each line . Thanks for looking into this post!

Regards,

Vincent

Yep.

local text = [[· Something · Something else · Another thing]] display.newText(text, 100, 100, native.systemFont, 16)

This is something you will have to do with your own code, especially if you want your text to be justified at the right of each bullet if it’s more than one line of text. I have code for this somewhere if you wants.

Yep.

local text = [[· Something · Something else · Another thing]] display.newText(text, 100, 100, native.systemFont, 16)

This is something you will have to do with your own code, especially if you want your text to be justified at the right of each bullet if it’s more than one line of text. I have code for this somewhere if you wants.