Working with Timeline

Other topics

Referencing the main timeline or document class from within other MovieClips

In the timeline of any DisplayObject that is attached as a descendant of the display tree, you can utilise the root property. This property points to the main timeline in the case of no custom document class, or the document class if you do define one.

Because root is typed DisplayObject, the compiler will not allow you to access custom methods or properties defined on the main timeline or within your document class as:

root.myCustomProperty = 10;
root.myCustomMethod();

To get around this, you can typecast root to your document class in the case where you have a document class:

(root as MyDocumentClass).myCustomMethod();

Or MovieClip in the case of no document class:

(root as MovieClip).myCustomMethod();

The reason casting to MovieClip works here is because MovieClip is dynamic. This means that the compiler allows runtime properties and method to be declared on it, preventing compile-time errors when attempting to access properties or methods that are not explicitly defined on MovieClip. The downside to this is that you lose all compile-time type safety. You are much better off declaring a document class and casting to that.

Contributors

Topic Id: 2459

Example Ids: 8121

This site is not affiliated with any of the contributors.