I want to start a project. But, while doing a paperwork, i realized one situation as follows,
Say, we have 3 classes.
- Main.as,
- A.as,
- B.as
Here, "Main.as" is a central class which creates instance of A and B.
Class A has some function say "updatePosition(e:Event)" with ENTER_FRAME event.
Class B is required to get update from this "updatePosition(e:Event)" from class A via "Main.as"
How can this be achieved only with one ENTER_FRAME event and that of in A.as class only?
Why don't you just put a single ENTER_FRAME handler in main.as and call the updates of the other classes from there?