Hello everyone,
We started exploring new scripting environment and currently trying to use Script Event Handlers instead of Set Point Event Handlers (Set To Scripted Value). We are be able to use the evt variable in global scripts with the code in below
function myHandler(evt) {
var point = evt.context.point;
var pointXid = evt.context.point.xid;
var pointTags = point.tags;
But in the new Script Event Handler the evt variable returns a string. Is there a way to format evt variable into a proper object or do we need to do this in a different way in the new scripting environment?
Thanks,
Mert