Hi ccc, The code below creates an image with text and adds it to the root_layer, but the text image always comes with the text wrapped to the width of the width of the screen in landscape orientation. I'm using TextLayer for convenience, but could use render_text() if necessary. What I'd like to be able to do is set the width of the text wrap and make it more narrow so it fits in a section of the display. Does that make sense?

longText = "This is an example of a long text string that needs to be word wrapped and displayed as a multiline body of text. This is an example of a long text string that needs to be word wrapped and displayed as a multiline body of text." self.root_layer = Layer(self.bounds) self.layer = TextLayer(longText,'Helvetica', 40) self.root_layer.add_layer(self.layer)