Hi Jason, You could try re-writing your image tag like:
<img src="image path" onerror="this.src='alternate image path'"> The browser tries to load the given image, and treats it as an "error" when it can't find it. Then, the OnError handler takes over and changes the path. You end up getting a brief flicker as the image changes from the "Not found" to your new image, but it's all Javascript, so it's going to be pretty quick. - Clay _______________________________________________ Active4D-dev mailing list [email protected] http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/
