Contents

Movie Frame

Scene Scenes

Scenes 1

Add extra scenes to your movie. Scenes will play in order. You can rearrange them by dragging or using the menu. You can also rename, duplicate and delete scenes.


Script Script

Goto Scene Index • Goto a scene. The first scene is 1.

GotoSceneIndex(Index:Number);

Goto Scene Name • Goto a scene. Specify the name of the scene.

GotoSceneName("Name");

Goto Scene Index And Play • Goto a scene and play from a frame. The first scene is 1.

GotoSceneIndexAndPlay(Index:Number,Frame:Number);

Goto Scene Name And Play • Goto a scene and play from a frame. Specify the name of the scene.

GotoSceneNameAndPlay("Name",Frame:Number);

Goto Scene Index And Stop • Goto a scene and stop at a frame. The first scene is 1.

GotoSceneIndexAndStop(Index:Number,Frame:Number);

Goto Scene Name And Stop • Goto a scene and stop at a frame. Specify the name of the scene.

GotoSceneNameAndStop("Name",Frame:Number);

Scene First • Goto the first scene.

SceneFirst();

Scene Last • Goto the Last scene.

SceneLast();

Scene Next • Goto the next scene.

SceneNext();

Scene Previous • Goto the previous scene.

ScenePrevious();

Scene Get Length • Returns the last frame number used in the current scene.

SceneGetLength();

Scene Get Index • Returns the index of the current scene. The first scene is index number 1.

SceneGetIndex();

Scene Get Name • Returns the name of the current scene.

SceneGetName();

Scene Get Name At • Returns the name of a scene given an index.

SceneGetNameAt(Index:Number);

Movie Frame