HomeAbout

MovieClipHistory

from the docs:

Provides a way to record and replay many methods used in dynamically defining a movie clip’s visual appearance. Methods recorded can be replayed on the original movie clip or another movie clip which is to “inherit” the original movie clip’s dynamic appearance. Supported methods include:

  • attachMovie
  • duplicateMovieClip
  • createEmptyMovieClip
  • loadMovie
  • swapDepths
  • removeMovieClip
  • lineStyle
  • beginFill
  • beginGradientFill
  • endFill
  • moveTo
  • lineTo
  • curveTo
  • clear

These methods are overridden for the movie clip so that new, history recording methods can be used in their place. The new methods record the method call and call for the movie clip the original method.

http://www.senocular.com/flash/actionscript.php?file=ActionScript_2.0/MovieClipHistory.as

Part of senocular’s Actionscript library.

Dynamic MovieClip Registration

This handy little class will allow you to change the registration point of a MovieClip on the fly (instead of having to modify the symbol in the library and repostion all of the contents).

http://www.darronschall.com/weblog/archives/000054.cfm

SmoothMover

From the site:
SmoothMover is a Static Actionscript Class designed to perform easily and quickly smooth, tweened organic motion of any property of a MovieClip.
Very simple to use and much easier than Macromedia Tween Class, yet so powerful, can manage listeners, friction, and affect any kind of properties.
http://www.pippoflash.com/index.php/2005/12/16/smoothmover/ 

Reactionary Scrolling

Turn any movieclip into a scrollable area that reacts to mouse position.
http://www.hotrocket.ca/flightpath/?p=99 

Document Class in AS2

Assign a class to the root timeline in AS2.

Document Class in AS2