|
|
document.editScene()
AvailabilityFlash
MX 2004.
Usagedocument.editScene(index)
Parameters- index
- A zero-based integer that specifies which scene to edit.
DescriptionMethod;
makes the specified scene the currently selected scene for editing.
ExampleAssuming
that there are three scenes (Scene0, Scene1,
and Scene2) in the current document, the following
example makes Scene2 the current scene and then
deletes it:
fl.getDocumentDOM().editScene(2);
fl.getDocumentDOM().deleteScene();
|