You can listen to events using this method .addListener()
.
If using PublisherConnector
The first parameter takes an event name (string) and a callback function to be called when the event is fired off.
await publisherConnector.addListener( "FrameMoveFinished", target => console.log("Frame moved with id " + target) );
If using the editorObject in Actions or the console
window.OnEventListener = (event, target) => { if (event == "FrameMovedFinished") { console.log("Frame moved with id " + target) } } editorObject.AddListener("FrameMoveFinished");
See /wiki/spaces/CPDOC/pages/1413282 for a list of all available events