visualize motion if I keep moving the mouse

Hi there,

I’m working on optimizing a path. When the robot moves along some robTaregt points using “jumpto”, I only can visualize the robot’s motion if I keep moving the mouse pointer on the robotstudio “view” window. Is there a way to fix this or do it automatically, so I can my motion behavior?

Can you give us a codesnippet of what you are running?

But if I would guess then what you need is probably to add this when necessary:
Station.UpdateGraphics();

Thanks John! You solved my problem by just adding “Station.UpdateGraphics();” after the “JumTo” line. :+1:

Best!