08-11-2017 08:17 AM
Hi guys!
I am trying to control a worker's actions using SimTalk without using the Broker or writing services in machines nor destinations on the parts being moved.
I have some kind of issue when trying to move a part on a worker without it having a destination set. The worker seems to be asking for a destination and raises an error if there is none.
To skip this, I checked the Debugger > Ignore Errors button. The error keeps occuring but it doesn't interrupt the simulation, the error is still written on the console.
I was wondering if there is a way to deactivate this error somewere (maybe by code?).
Have a great day!
08-11-2017 08:31 AM
if you / your method is using a wrong target,
the operator will probably not move.
Therefore these kind message make sense and should not be ignored !
Why don't you look for the reason for this error
e.g. check for the valid target name ?
08-11-2017 09:02 AM
Thanks for your reply.
Actually, I don't want to specify a target. The destination is void.
I make the worker take the part and move to the destination with a goTo method.
This works just as I want it to. It's just that an error is raised even if this is exactly what I want to do.
Regards.