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

There’s currently not a way to do this but you could create a function [...]
Create a script file with the following code:
def my_popup(msg, title="Popup"):
  popupShowing = True
  popup(msg,title, False,False, True)
  popupShowing=False
end
[...]
my_popup("This will use the default title")
my_popup("This uses a custom title", "Custom Title")
You can learn more about scripts with UR by downloading the script manual from the help site.
Thank you.
How could I do this for operator prompts requiring either bool or int input?

fihcnc

Thank you!