I'm trying to make a http request with the urlloader and urlrequest in as3. This gives an error of stream error 2032 and that is because the website doesnt allow urlrequests from Flash?
Anyway, why do this happend? How can I "fool" the website to just think this is a normal request made from a browser (firefox, chrome)?
var loader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest("http://www.travian.com");
loader.addEventListener(Event.COMPLETE, on_complete);
loader.load(request);
EDIT: What im trying to ask is... How does the website know this is a http request from adobe air? And how do I make it look like a http request from Firefox/Chrome or whatever.