Pass objects to CEP context
I am building cep extension and I was wondering if it is possible to pass from extendscript context object to CEP context and then pass it back to extendscript context? Eg:
extendscript [object TrackItem] -> CEP (here some operations happends with the callback data, but not with the object and its properties) -> extendscript [object TrackItem]
currently I am passing along needed data the object:
{
}
using this object I am looping thought parent track and I am getting the clip object by start time. It works
but I am looking for ways to optimise the workflow (I cannot use indices due to some changes that happen on the timeline during the script run)
maybe stringifing the object via JSON and parsing it back?
p.s I am using both vanilla CEP and react bolt-cep
Thank you
