Flash MX 2004.
document.reorderScene(sceneToMove, sceneToPutItBefore)
sceneToMove An integer that specifies which scene to move, with 0 (zero) being the first scene. sceneToPutItBefore An integer that specifies the scene before which you want to move the scene specified by sceneToMove. Specify 0 (zero) for the first scene. For example, if you specify 1 for sceneToMove and 0 for sceneToPutItBefore, the second scene is placed before the first scene. Specify -1 to move the scene to the end.
Nothing.
Method; moves the specified scene before another specified scene.
The following example moves the second scene to before the first scene:
fl.getDocumentDOM().reorderScene(1, 0);