Bonjour!
I am a bit fustrated by the content of documentation, but don’t feel offended by what I say. I remind that I am an absolute begginer attempting to use WWW request object. But, my requests fail. When I execute it from the Unity Debug mode (inside interface), it tells that the host is unreachable. (The url I request is a full absolute url like. http://www.google.fr/ It is the same when I execute it once compiled from my web browser.
Is it a matter of stuff like Flash’s sandbox? My code is pretty simple like:
var myForm:WWWForm = new WWWForm();
myForm.addField('text', 'Hello World!');
var request:WWW = new WWW('http://www.myhome.com/mypage.php', myForm);
yield request;
print (request.data);
Thank you for your answers or at least your attention!