Syntax: |
the actionsEnabled of sprite whichFlashSprite |
|
the actionsEnabled of member whichFlashMember
|
Type: |
Cast member 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.
|
|
|
The actionsEnabled property can be tested and set. The default setting is TRUE .
|
Example: |
This handler accepts a sprite reference as a parameter, and it then toggles the sprite's actionsEnabled property on or off. |
|
on ToggleActions whichSprite
set the actionsEnabled of sprite whichSprite = not the actionsEnabled of sprite whichSprite
end
|
 |
|