Anybody that happens to know how to do this would really be helping me out.
Maybe its simple, I don't know, but it involves embedded SWF's so I imagine it could entail interacting with event handlers or methods in an embedded SWF.
But anyway, here it is:
I have several embedded SWF's on a canvas (in SWFLoaders) and when one of them changes visually I need to know which one changed.
The 'render' event provides only part of the solution:
If an SWFLoader contains a videodisplay there are continual render events generated in the parent app while that videodisplay is running. If the SWFLoader just contains some static input control otoh, there are no render messages in the parent app until someone interacts with that control and changes it visually, and then there are render events broadcast in the parent app. So, this is clearly part of what my requirements are.
The problem with the render event however, is that it does not tell you which embedded SWF actually changed (in the target or currentTarget.)
But I need to know which one changed.
(Are there seperate render messages being generated within an embedded app (seperate from those in the parent app) for example, that could be detected.)