【发布时间】:2017-01-01 14:08:44
【问题描述】:
目前在舞台下收到文本,我想上台并停在舞台上的某个位置 (97, 233.10)。我对在哪里停止它以及使用什么代码有点困惑?
addEventListener(Event.ENTER_FRAME, mcInfo);
function mcInfo (e:Event):void {
//check position of logo
//if inside the stage move left to right
//if outside stage reposition
if (info.x<stage.stageWidth) {
info.x+=30;
stop();
} else {
//reset position
info.x=-450;
}
}
干杯!
当我滚动浏览我的其余页面时,Flash 现在似乎也返回了一个输出错误:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at finaldesign_fla::MainTimeline/mcInfo()
【问题讨论】:
标签: actionscript-3 flash adobe flash-cs6 flash-cc