RoboDK Forum
Move Linear button missing——革命制度党ntable Version

+- RoboDK Forum (//m.sinclairbody.com/forum)
+-- Forum: RoboDK (EN) (//m.sinclairbody.com/forum/Forum-RoboDK-EN)
+ - - -论坛:通用RoboDK问题(//m.sinclairbody.com/forum/Forum-General-questions-about-RoboDK)
+--- Thread: Move Linear button missing (/Thread-Move-Linear-button-missing)



Move Linear button missing-Nox-11-27-2019

Hello everyone,
I would like to know what happened with the "Move Linear" button in the connection window?

[Image: 12IQ9gx.png]

This button is quite useful in the testing stage and now is missing, is there a way to put it back in? or is it gone for good?
Thanks!


RE: Move Linear button missing-Albert-12-02-2019

Hi Nox,

This button was removed as it was causing issues if your tool in RoboDK was not the same as the robot.
Instead, you can use a small script to do so:

Code:
robot.Connect() # Connect to the robot
robot.setPoseTool(robot.PoseTool()) # Update the tool pose on the real robot
robot.MoveL(robot.Pose()) # Move the real robot (MoveL) to match the simulator pose

Albert