Newline character for popup windows

Is there a newline character for the following fpmi.gui popup windows.
confirm()
errorBox()
messageBox()
warningBox()

The dialog boxes do get wider to accomodate more text, but don’t break the lines. They don’t seem to respect HTML like most FactoryPMI component properties.

fpmi.gui.messageBox('first line<html><br></html>second line')

Clark,
The builtin label on the popup windows should be no different from using a label component. I’m not sure if there’s a newline character, but you can use a
HTML tag. The trick is to make sure to begin your label with - You can’t put that tag in the middle of your text.

fpmi.gui.errorBox('broken<html>Test<br>Message') fpmi.gui.messageBox('<html>Working<br>Test<br>Message')