告诉目标代码(转换为as3)

时间:2015-04-30 07:38:57

标签: actionscript-3 flash actionscript adobe

这是我在AS2中使用的代码

on (release) {
 tellTarget ("/incorrect")
 {
  nextFrame();
 }
}

如何在AS3(AIR)中执行此操作?

谢谢。

1 个答案:

答案 0 :(得分:2)

而不是tellTarget("/something")使用(root as MovieClip).something。而不是on (release) {使用addEventListener

import flash.events.MouseEvent;

button.addEventListener(MouseEvent.CLICK, buttonClick);

function buttonClick(event:MouseEvent):void
{
    (root as MovieClip).incorrect.nextFrame();
}