|
|
fl.removeEventListener()
AvailabilityFlash
CS3 Professional.
Usagefl.removeEventListener(eventType)
Parameters- eventType
- A string that specifies the event type to remove from this
callback function. Acceptable values are "documentNew", "documentOpened", "documentClosed", "mouseMove", "documentChanged", "layerChanged",
and "frameChanged".
ReturnsA Boolean
value of true if the event listener was successfully
removed; false if the function was never added
to the list with the fl.addEventListener() method.
ExampleThe
following example removes the event listener associated with the documentClosed event:
fl.removeEventListener("documentClosed");
|