AS3从一个动画片段中调用帧中的方法

时间:2012-02-23 21:29:29

标签: actionscript-3 methods call frame movieclip

  

可能重复:
  currentFrame of root timeline from inside object
  In flash with as3.0, I have to call a function on the main stage from a movieClip

我在场景中的框架中有这个方法:

function toggleStreaming():void { //something }

我希望能够在movieClip中调用该方法,我该如何指向该方法?

1 个答案:

答案 0 :(得分:2)

假设包含该功能的帧是您可以使用的主时间轴:

MovieClip(root).toggleStreaming();