Erik Walter wrote: > Out of perhaps 150 images, I'll > only get an OnStatusChange call about 48 times. Is it possible it > doubles up on notifications and I'm really getting called for more than > one <img> completing?
If multiple <img> tags point to the same url, it will only be loaded once...
That IS possible, now that I think about it, so maybe that helps me some
> I kind of need a "reflow and rendering is complete" event to > tell me when changes I made to the DOM are finished propogating.
It's not clear what exactly "complete" means in the face of things like mouse movement (which causes style reresolution and rerendering as needed when things enter/leave :hover)...
Imagine for a moment that you wanted to "snapshot" an image of the page (like a thumbnail). Something similar to printing it to paper. You would want it to be completely finished rendering all the <img> tags and any background images for things. So that the thumbnail would be an accurate representation of the larger page. So, mouse movement, etc is not an issue (as the mouse won't be able to interact with the page anyways.
When you render an image for printing purposes, you MUST have some way to know that all the rendering and styles are finished, right?
