Is there a way to change the size of a MessageBox using the mes command? If I have a list of long strings in a message, it always wraps them around at odd intervals. Is there a way to make it so that is I have a list of strings it will resize the message box to the length of the longest string? I really hate having to create a whole separate dialog box just to display a few lines of changing info. Thanks!
Here's a sample code:
Here's a sample code:
str msg
msg = "This is a line of text"
msg = F"{msg}[]This is another line of text that is even longer than the first one"
msg = F"{msg}[]This is another line of text that is even longer than the second line of text that shouldn't wrap around."
msg = F"{msg}[]This is shorter line than the last one"
mes msg