可能重复:
as3 Main-Timline calling a function from a class loaded from Child.swf
我已经问了这个问题,但我没有得到任何回复,所以我试图让它不那么可怕。我只需要一行代码。
我用什么代码来调用另一个CLASS包中的函数?我的代码是从主时间轴调用的,并且该类是从主时间轴加载的子代中加载的。
这是关闭但不起作用的代码:
Content = TheContent.content as MovieClip;
pContent = Content as Object;
addChild(TheContent);
var OSS:String = "device";
trace(pContent); ////makes contact with classs but comes out as: [object pContent]
pContent.GetOnlineStatus(OSS); ///// HOW DO I GET THIS TO CALL FUNCTION
TypeError:错误#1006:GetOnlineStatus不是函数。
以下是我的旧帖子,其中包含更多详细信息:as3 Main-Timline calling a function from a class loaded from Child.swf