Error #2036 - Load Never Completed
I have a slidshow inside of a flash page. It works great on my desktop, but when I upload it to a server I get the infamous Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. I initially assumed that I must have missed uploading a file, so I uploaded the whole folder, Photoshop files and all, thinking that I could start deleting things until I found the culprit. But even after I uploaded everything that I have, the browsers still gave me the same error with no slide show. I'm wondering if my call to the .swf (from inside a .swf) needs to be different on a server.
Here's the code:
import flash.net.*;
var slideShowRequest:URLRequest = new URLRequest("slideShow2.swf");
var slideShowLoader:Loader = new Loader();
slideShowLoader.load(slideShowRequest);
slideshow_mc.addChild(slideShowLoader);
