Characters inside Flash can define ActionScript bindings.
AS Linkage can be installed by right-clicking on a symbol from the library and selecting "Properties" ...

Check Export for ActionScript and enter the class name.
If you do not need to explicitly define the base class outside the character type, you can enter AS Linkage directly from the library:

This creates a class definition just as if you were writing an ActionScript class.
Create instances by creating new instances of type AS Linkage:
var symbolExample:SymbolExample = new SymbolExample(); addChild(symbolExample);
Jason sturges
source share