I cannot find information in UR script manual about this.
As a work around you could add some spaces until you reach the maximum width of the window ?
It is a big heavy but it should works.
fihcnc
Multiple spaces in script command is ignored, even when within quotation-marks. So both:bcastets said:I cannot find information in UR script manual about this.
As a work around you could add some spaces until you reach the maximum width of the window ?
It is a big heavy but it should works.
popup("Test newline", "Title", False, False)
popup("Test
" + " " + " " + " newline", "Title", False, False)
Outputs:Test newline
(The " " + " " + " " + " "... was in an attempt to force it to print multiple spaces
fihcnc
Doesn't work. Multiple spaces only gets printed as a single space.bcastets said:I cannot find information in UR script manual about this.
As a work around you could add some spaces until you reach the maximum width of the window ?
It is a big heavy but it should works.
Trying to force it by using "StringPart1 " + " " + " " + " " + " String part 2" doesn't work either
Like the title says, how can i line-break a popup or input-prompt? For most languages I know, adding \n to the text would break the line.
Lets say i want to print the following:
of what im trying to do