HTML5 crossDomain request

Hello everybody! I’m trying to perform an URLRequest using URLLoader. The target URL is out of the current domain.
With Flash target everything is fine, but in HTML5 I’m getting an error: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Is there any way to make it work with OpenFL?

It is browser restriction.
If you have access to target site, you can configure web server to send following header: Access-Control-Allow-Origin: *
As another way, you can use proxy at current domain to target domain.