可能重复:
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中调用该方法,我该如何指向该方法?
答案 0 :(得分:2)
假设包含该功能的帧是您可以使用的主时间轴:
MovieClip(root).toggleStreaming();