我正在尝试让我的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'
时出错有谁知道为什么我无法访问此文件?我已经确认该网址有效。
答案 0 :(得分:0)
你的网址错误。我的意思是fileToLoad
包含错误的值。尝试跟踪此变量。