我正在尝试从 URL 加载一些文本,分解文本,然后将结果保存到变量中。这是我的 AS2 动作脚本的样子:
// Create the empty variables
var user_title = '';
var user_message = '';
var user_author = '';
// Load the string
var loadText = new LoadVars();
loadText.load("http://www.example.com/html_feed.php?md5=15d89cac6e77c8e3a592c05aee13bcb7");
// Save values to variables
loadText.onLoad = function(success) {
if (success) {
user_title = this.thetitle;
user_message = this.theMessage;
user_author = this.theAuthor;
}
};
这就是它试图获取的页面的样子:
thetitle=Greetings&theMessage=Hello everyone!&theAuthor=Steve
当我跟踪变量user_title
时,user_message
我user_author
得到空白输出。这会让我怀疑我的onLoad
部分脚本不起作用。
任何指针将不胜感激。CS5 上的 AS2 和 Flash Player 10。