buttonsEnabled
 
Syntax SetIconProperty(@"IconTitle", #buttonsEnabled, boolean)

SetSpriteProperty(@"IconTitle", #buttonsEnabled, boolean)

Type Icon property, sprite property
 
Description  This property controls whether the buttons in a Flash movie are active. Button actions are triggered only when the actionsEnabled property is set to TRUE. The buttonsEnabled property can have these values:

TRUE The buttons in the Flash movie are active.
FALSE The buttons in the Flash movie are inactive.

You can get and set the value of the buttonsEnabled property. The default setting is TRUE.
 

Example  These statements enable the buttons in a Flash movie if the custom variable ButtonsOn is true.

If ButtonsOn then
    SetSpriteProperty(@"Flash Icon", #actionsEnabled, True)
    SetSpriteProperty(@"Flash Icon", #buttonsEnabled, True)
end if
Related Functions actionsEnabled property

To Table of Contents Back to Previous document Forward to next document