我有一个附加了外部类的影片剪辑。这是 MC 代码(我只为相关部分缩短了它......)
package {
//all the imports here...
public class mc_masterChapter extends MovieClip {
public function mc_masterChapter() {
trace (picFile,strChapTitle);
}
//Properties
public var picFile:String;
public var strChapTitle:String;
}
}
在主类文件中,我使用 addChild 将此对象添加到舞台:
var masterChapter:mc_masterChapter = new mc_masterChapter;
masterChapter.picFile = "pic_Chap1.jpg";
masterChapter.strChapTitle = "ABCD:
addChildAt(masterChapter,1);
现在,MC 类代码中的跟踪为两个参数都提供了空值,但如果我在 MC 时间线内放置一个跟踪(而不是附加的类代码),它会给出正确的值!
如何在不获取 nuls 的情况下从 MC 类本身访问值?
谢谢你。