//this is in frame 1 to put function to movie clip in frame 3
directorio.addEventListener(MouseEvent.CLICK, exec);
function excec(e:MouseEvent):void{
trace("yes");
}
但如果我在第 2 帧和第 3 帧中有相同的影片剪辑,我需要复制相同的代码。我如何将通用代码放入框架中?
我有 13 帧,我在帧中添加 as3 时遇到问题,因为如果我逐帧添加函数,我有重复函数的错误,如果我在所有时间线的仅一帧中添加 as3,我有未定义的属性错误,这已经存在-> 是时间线帧 3 示例中的影片剪辑。
所以 wath 是正确的吗?:(
谢谢。