Extending Flash |
|
|
|
| Objects > Effect object > effect.useXMLToUI | |||
Flash MX 2004.
effect.useXMLToUI
Property; a Boolean value that lets you override the default behavior of using XMLUI to construct a dialog box that consists of one or more controls. The default value is true. If set to false, the standard XMLUI dialog box will not be posted and you are responsible for posting a UI.
The following example specifies that the effect posts its own UI:
function configureEffect() {
fl.activeEffect.useXMLToUI = false;
}
|
|
|
|