[EMAIL PROTECTED] wrote: Is there a way(callback) to figure out that the painting of screen is done?
[EMAIL PROTECTED] wrote: That's going to be kind of hard since that's dependent on all of the invalidation being completely drawn _and_ rendered to the string. I'm not sure it's 100% possible because the X server is async and you're not notified when your drawing is complete. I mean, you could do something hacky like stuff a timer after the load is done and do what you need to do then. :) --Chris -- Thanks. I'm using the method you suggested (timers), but like you said it is a hack. One of the problems is that when requesting a url like yahoo (without the www.yahoo.com) I get a load_start on http://yahoo/ followed by load start on http://www.yahoo.com/ followed by 2 load_finished. I really like the feature, but would like to not receive a load_finished on http://yahoo/. It there an easy way in load_finished to figure out that it is bogus (did not really render a page)? Thanks again, Andreas.
