My Flash file contains a movie-clip(Box1) that is exported for Action-script but it is not exported to Frame 1 in Linkage Dialog Box. Box1 has been put on frame-40 and the object is accessible in document Class but is not added to stage. However when it reaches to Frame 40, the object at Frame 40 get visible. My question is where is boxObj??
package
{
import flash.display.MovieClip;
public class GetTimeLineObjects extends MovieClip
{
var boxObj:MovieClip
public function GetTimeLineObjects()
{
boxObj = new Box1();
addChild(boxObj)
}
}
}