在本地计算机上加载XML文件(url无法加载)时出现问题

时间:2012-10-29 08:27:03

标签: actionscript-3 flash

我正在尝试让我的Flash应用程序解释XML文件。我的代码如下:

function onFinish(success_boolean, results_obj, xml)
{
    if (success_boolean)
    {
        play ();
    } // end if
} // End of the function
Stage.align = "MC";
Stage.scaleMode = "noScale";
url = "25358";
_root.cacheKiller = "true";
stop ();
var parsed_obj = {};
var unCash = new Date().getTime();
if (_root.cacheKiller == "true")
{
    fileToLoad = url + "_main.xml?cacheKiller=" + unCash;
    fileToLoad = url + "_main.xml";
}
else
{
    fileToLoad = url + "_main.xml";
} // end else if
gs.dataTransfer.XMLParser.load(fileToLoad, onFinish, parsed_obj);
_root.emp.useHandCursor = 0;
_root.mus = 1;
_root.n = 1;
_root.num = 1;

我得到的输出是:

打开网址'file:/// C | / try / 25358undefined'

时出错

有谁知道为什么我无法访问此文件?我已经确认该网址有效。

1 个答案:

答案 0 :(得分:0)

你的网址错误。我的意思是fileToLoad包含错误的值。尝试跟踪此变量。