Events Question (Notification of cuePoints)

Hi,

If I have three classes, A, B and C, C is instantiated in B and B is instantiated in A, what’s the best way to get events from C into A?

In my current test case I’ve added an event listener to the instance of B for an event that occurs in C but I cannot receive the event, if I add the event listener to the instance of C in B it works fine. Do I need to dispatch an event in my event listener in B to notify A of the event in C? Or is there a better way to do this?

Bit abstract but I hope that’s clear enough :slight_smile:

Thanks,

eb_dev