Extending Flash |
|
|
|
| Objects > ScreenOutline object > screenOutline.setScreenProperty() | |||
Flash MX 2004.
screenOutline.setScreenProperty(property,value)
property A string that specifies the property to set.
value The new value for the property. The type of value depends on the property being set.
For a list of available properties and values, see Property summary for the Screen object.
Nothing.
Method; sets the specified property with the specified value for the selected screens.
The following example changes the visibility of the currently selected screens from hidden to visible:
fl.getDocumentDOM().screenOutline.setScreenProperty("hidden", false);
|
|
|
|