AS3 - Sending POST data to another domain without loading (Sandbox security)
问题 I need to send POST Data to a ASP script on a different domain name ( without loading data). var scriptRequest :URLRequest = new URLRequest( 'http://someExternalCart.com/cart.asp' ); scriptRequest.method = URLRequestMethod.POST; scriptRequest.data = scriptVars; It works with navigateToUrl, BUT I don't want to get redirected to that page, I only want to send the data. I have tried this: var ldr :URLLoader = new URLLoader(); ldr.load( scriptRequest ); But I am getting the sandbox security error