Hi,
I'm writing a sort of "dynamic gallery" in flash. The problem is that a child of the gallery can be resized in runtime, and then I have to rearrange the gallery.
Now, of course, I can't overload the gallery items, since it's a display object which is unpredictable. and even if I could force overloading on the items, how will I be notified if, let's say, an animation started, something move, and the item got bigger..
Is there some sort of Event for a display object which is dispatched on ANY kind of resize ??
My dumb solution was to go through all the gallery's items and rearrange them every given milliseconds, and now I feel so dirty and I need to confess my sins.