![]() ![]() | |
To help Flash find the proper ActionScript classes and packages and to preserve the component's naming, you must set the symbolName, symbolOwner, and className properties in your component's ActionScript class file.
The following table describes these variables:
|
Variable |
Description |
|---|---|
|
|
Symbol name for the object. This variable is static and of type String. |
|
|
Class used in the internal call to the |
|
|
Name of the component class. This variable is also used in calculating style values. If |
The following example shows a custom component's naming:
static var symbolName:String = "MyComponent"; static var symbolOwner:Object = custom.MyComponent; var className:String = "MyComponent";
![]() ![]() | |