私は Actionscript 2 プロジェクトに取り組んでいます - XML オブジェクトを使用して、302 リダイレクトとして返される URL を見つけようとしています。actionscript 2でこれを行う方法はありますか?
コード:
var urlone:XML = new XML();
urlone.load("http://mydomain.com/file.py");
urlone.onLoad = function (success) {
trace("I want to print the 302 redirect url here, how do I access it?");
};