DoF - a Robotiq Community
Warning sign
The Dof Community was shut down in June 2023. This is a read-only archive.
If you have questions about Robotiq products please reach our support team.
fihcnc

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.
Multiple spaces in script command is ignored, even when within quotation-marks. So both:
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

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.
Doesn't work. Multiple spaces only gets printed as a single space.
Trying to force it by using "StringPart1 " + " " + " " + " " + " String part 2" doesn't work either