
Flash Player 7 + TheSpringBox V1
Widget.onSettings = function(isOpen:Boolean) : Void {
// your statements here
}
isOpen - A Boolean value set to true when the settings panel should be opened, false when it should be closed.
Nothing.
Event handler; invoked when the user clicks on the settings button in the utility navigation of the desktop wrapper. You should respond to this handler by either opening or closing the settings panel of your widget.
NOTE: Widget.onSettings is not needed if your main timeline contains a "Widget" and "Settings" framelabel under which the widget and settings are housed.
The function below could be used to toggle the settings panel of the widget instance:
Widget.onSettings = function(isOpen:Boolean) {
mcSetting._visible = activity;
};
Widget.showSettingsButton