F > FPushButton.registerSkinElement

 

FPushButton.registerSkinElement

Availability

Flash Player 6.

Usage

myPushButton.registerSkinElement(element, styleProperty)

Parameters

element A movie clip instance.

styleProperty The name of an FStyleFormat property.

Returns

Nothing.

Description

Method; registers a skin element to a style property. Skin elements are registered to properties in the first frame of the Read Me layer of each skin the library.

Components are made up of skins, and each skin is composed of several skin elements, each of which can be registered to a property of the FStyleFormat object. These properties are assigned values by the style format assigned to a component. By default, all Flash UI components are assigned the globalStyleFormat object, which is an instance of the FStyleFormat object.

Use this method to register custom skin elements and properties to Flash UI or custom component skins by editing the code in the first frame of the Read Me layer of a skin in the library.

The FPushButton component uses the skins in the FPushButton Skins folder and the FLabel skin in the Global Skins folder once you've added the component to the Flash document.

For more information, see Customizing component skins in the Using Components chapter of Using Flash.

Example

The following code registers the custom skin element newFace_mc to the face property in the first frame of the Read Me layer of the FLabel skin. The FLabel skin is in the Component Skins/Global Skins folder in the library.

submitButton.registerSkinElement(newFace_mc, "face");

See also

FStyleFormat (object)