c********1 发帖数: 59 | 1 从没用过FLASH,有个作业要做个小东西的演示,硬着头皮做。其实应该很简单,就是用
第一帧上的一个button,控制跳到另一帧上去。我使用Adobe Flash CS4做的。
我用的Actionscruit是:
Yes.addEventListener(MouseEvent.CLICK, yesListener)
function yesListener(event:MouseEvent)
{
gotoAndPlay(2);
}
Yes是那个button的名字,报的错是:
1061: Call to a possibly undefined method addEventListener through a referen
ce with static type Class.
请各位高手指点一下这个应该怎么写啊?时间太紧,没时间系统学习了,谢谢了 | s*******h 发帖数: 2148 | 2 cs4。。。太高级了
用as2这种东东基本上不会出错的。。。-.=
是用
referen
【在 c********1 的大作中提到】 : 从没用过FLASH,有个作业要做个小东西的演示,硬着头皮做。其实应该很简单,就是用 : 第一帧上的一个button,控制跳到另一帧上去。我使用Adobe Flash CS4做的。 : 我用的Actionscruit是: : Yes.addEventListener(MouseEvent.CLICK, yesListener) : function yesListener(event:MouseEvent) : { : gotoAndPlay(2); : } : Yes是那个button的名字,报的错是: : 1061: Call to a possibly undefined method addEventListener through a referen
| b*******3 发帖数: 1461 | 3 haven't try CS4 yet, but did you export the YES to actionscript? |
|