我需要从 Flash 内部从 JS 函数中导入一个数组,并将其显示在 Flash 中的动态文本中,我的代码是:
AS2:
import flash.external.ExternalInterface;
js_btn.onRelease = function() {
_root.infoBox.text = ExternalInterface.call("getUserInfo()");
}
JS:
function getUserInfo() {
var userinfo = {fullname: 'George One', username: 'goergeo', picturelink: 'http://link.com'};
return userinfo;
}
一旦我按下按钮,我在文本框中得到“未定义”!非常感谢任何帮助。