I've looked in several other questions, but it just doesn't seem to explain my error.
The error i'm getting is "Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://plustg.com/v2/_inc/_swf/getSavedSelfy.php at snapshot_fla::MainTimeline/frame1()[snapshot_fla.MainTimeline::frame1:20]"
When going to that URL, it does load. But somehow flash throws a stream error.
For reference, this is all there is on line 20: var selfyXMLLoader:URLLoader = new URLLoader(); And this is the rest of the code:
var selfyXMLLoader:URLLoader = new URLLoader();
var selfyXMLRequest:URLRequest = new URLRequest('http://plustg.com/v2/_inc/_swf/getSavedSelfy.php');
selfyXMLLoader.load(selfyXMLRequest);
selfyXMLLoader.addEventListener(Event.COMPLETE, loadSelfy);
Strange thing here is that when changing it to any other url on ANOTHER website, it will work.
Help would be great.