I'm wondering if anyone has found a good way to recognize if a flex component has finished loading. We have a mixed html/flex page where the flex component can take a while to load. When I was just dealing with the html aspects I was using a WaitForDocumentLoaded() from WebDocument which was fine. Now that I need the flex components though this isn't enough.
I'm trying to avoid a System.Threading.Thread.Sleep and would prefer to use a more intelligent method, preferably one that doesn't require me explicitly stating which flex component I'm waiting for (so that I can use a single method for our various mixed pages).