Hi there,
the rs.MessageBox
function in R8 does not add automatic line breaks when long texts are inserted for the message. Please try below script example:
import rhinoscriptsyntax as rs
msg = "This is a long text to test default msg box width. " * 4
rs.MessageBox(msg, 0, "Test")
it displays as this in R8:
while it looked like below in R7:
Would it be possible to get the same behaviour in R8 as it was in R7 ? Since users can change their font size freely, i do not want to add linebreaks on my own but let the OS decide.
If my message text has no linebreaks it can possibly happen that the buttons of the message box are out of sight for the user eg. try setting above number 4 to 10 or higher…
thanks,
c.