> Im not using the Assets stuff or new Element(). The images are throughout a > website which i am migrating to have all the images and stuff in the cloud. > There is a syncing process running to syn all the images and what i am > wanting to do is if the image doesn't load to assume it has not been sync'ed > and load the local copy of the image
What are you actually trying? It's very simple to hook the image onError. document.id('myimage').addEvent('error', function(){console.log(this,"image load failure");} ); -- S.