告诉目标代码(转换为 as3)
Posted
技术标签:
【中文标题】告诉目标代码(转换为 as3)【英文标题】:Tell Target code (convert to as3) 【发布时间】:2015-07-09 19:19:27 【问题描述】:这是我在 AS2 中使用的代码
on (release)
tellTarget ("/incorrect")
nextFrame();
如何在 AS3 (AIR) 中执行此操作?
谢谢。
【问题讨论】:
【参考方案1】:使用(root as MovieClip).something
代替tellTarget("/something")
。而不是on (release)
使用addEventListener
。
import flash.events.MouseEvent;
button.addEventListener(MouseEvent.CLICK, buttonClick);
function buttonClick(event:MouseEvent):void
(root as MovieClip).incorrect.nextFrame();
【讨论】:
以上是关于告诉目标代码(转换为 as3)的主要内容,如果未能解决你的问题,请参考以下文章