Html5 sprite_add(url, false, false, 0, 0)) Sometimes works

I have been using the sprite_add function to load up images in my program I've been developing. The code works perfectly fine when using windows however it sometimes works on html5..... Not all the time....
I upload images on my webpage which has (SSL/TLS) "https://" .....

However I've noticed something interesting.... When I use the website 4shared to upload images and do the following

Html5 sprite_add("4sharedwebsiteurl", false, false, 0, 0)) It works!

Anybody know why this happens?? In windows it Always works but html5 version it doesn't...

Any input would be greatly appreciated
 

Nocturne

Friendly Tyrant
Forum Staff
Admin
Anybody know why this happens?? In windows it Always works but html5 version it doesn't...
When testing the HTML5 version, open the developer JS console and see what the error message is (if any) and also add some show_debug_message() into the code to see what is returned in the async event that handles loading the image.
 
Top