/
JavaScript Events
Information Classification: External Restricted.
See https://www.chili-publish.com/security
JavaScript Events
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 https://chilipublishdocs.atlassian.net/wiki/spaces/CPDOC/pages/1412202501/Editor+Events for a list of all available events
, multiple selections available,
Related content
Editor Events
Editor Events
More like this
JavaScript Navigation
JavaScript Navigation
More like this
Javascript Variable Input Forms
Javascript Variable Input Forms
Read with this
Working with Fonts in Javascript
Working with Fonts in Javascript
Read with this
General Document and Editor functions
General Document and Editor functions
Read with this
Action Editor
Action Editor
Read with this
All information on this page must be treated as External Restricted, or more strict. https://www.chili-publish.com/security