Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi @Madeleine ,
Are you binding a listener? ex:
const selState = app.selectionState(alternateState);
const listener = function() {
console.log(selState);
};
selState.OnData.bind( listener ); //bind the listener
Could you post a code snippet so we can better understand the issue?
Hi @Madeleine ,
Are you binding a listener? ex:
const selState = app.selectionState(alternateState);
const listener = function() {
console.log(selState);
};
selState.OnData.bind( listener ); //bind the listener
Could you post a code snippet so we can better understand the issue?
Thanks a lot 🙂 now it works, the data binding part was missing.