I saw the above post, but as it was marked solved didn't believe there would be much new traffic.
I am looking to change the URL of a clip when the stream is not found. I am properly configuring the onError event, as I can debug the specific line or add an alert, but what I am having trouble with is the following:
onError : function(errorCode, errorMessage) {
this.getClip(0).update( { url : 'http://full-url.com/images/stream-not-found.png' } );
}
The problem is this image is never being loaded to the player upon the error -- I get a stream not found error message and then the player continues to look for this unfound stream. I'm able to hit the URL and see the image, but am unable to change over upon stream not found.
This is somewhat simplified as we are looking to use customized images for each error code.