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

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

Type Icon property, sprite property
 
Description  This property controls whether the actions in a Flash movie are active. The actionsEnabled property can have these values:

TRUE The actions in the Flash movie are active.
FALSE The actions in the Flash movie are ignored.

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

Example  This example toggles the sprite's actionsEnabled property on or off based on the checked state of a button.

If Checked@"MyButton" then
    SetSpriteProperty(@"Flash Icon", #actionsEnabled, True)
else
    SetSpriteProperty(@"Flash Icon", #actionsEnabled, False)
end if

To Table of Contents Forward to next document