I've got a Flex application that loads without issue when offline, but once I embed it in a webpage it hangs on “Loading…”:
I've tried fiddling with the -use-network
compile flag to no avail.
I've also watched the network traffic with Charles, and I see two requests for the SWF (ie, GET /foo.swf
), both of which complete successfully, then nothing else.
What am I missing?
Edit: I've determined that it's not a problem with the SWF — when I run a server using python -m SimpleHTTPServer
, everything loads and runs properly. It only appears to break when I'm using Django's static media server.