|
|
document.canEditSymbol()
AvailabilityFlash
MX 2004.
Usagedocument.canEditSymbol()
ReturnsA Boolean
value: true if the Edit Symbols menu and functionality
are available for use; false otherwise.
DescriptionMethod;
indicates whether the Edit Symbols menu and functionality are enabled.
This is not related to whether the selection can be edited. This
method should not be used to test whether fl.getDocumentDOM().enterEditMode() is allowed.
ExampleThe
following example displays in the Output panel the state of the
Edit Symbols menu and functionality:
fl.trace("fl.getDocumentDOM().canEditSymbol() returns: " + fl.getDocumentDOM().canEditSymbol());
|