Can i help you with this;<br>
<pre>/**
 * Constant: MISSING_TILE_URL
 * {String} URL of image to display for missing tiles
 */
OpenLayers.Util.OSM.MISSING_TILE_URL = "img/missingTile.png";

/**
 * Property: originalOnImageLoadError
 * {Function} Original onImageLoadError function.
 */
OpenLayers.Util.OSM.originalOnImageLoadError = OpenLayers.Util.onImageLoadError;

/**
 * Function: onImageLoadError
 */
OpenLayers.Util.onImageLoadError = function() {
        if (this.src && (this.src.indexOf(OpenLayers.Util.OSM.MISSING_TILE_URL) == -1)) {
                this.src = OpenLayers.Util.OSM.MISSING_TILE_URL;
        }
};</pre>

        
        
        
<br/><hr align="left" width="300" />
View this message in context: <a href="http://osgeo-org.1560.n6.nabble.com/How-is-the-loaderror-event-expected-to-work-to-return-a-default-tile-calling-Andreas-tp5013443p5013721.html">Re: How is the "loaderror" event expected to work to return a default tile?? (calling Andreas ??)</a><br/>
Sent from the <a href="http://osgeo-org.1560.n6.nabble.com/OpenLayers-Users-f3910695.html">OpenLayers Users mailing list archive</a> at Nabble.com.<br/>