Contents

Image Grid Image Viewer

ImageSequence Image Sequence

Add an image sequence to your movie. Each image in the image list will be show for one frame. Add next/previous buttons to look at a list of images.


Edit Properties

Image List • A list of images to view. Add images to the library first.

Auto Play • The 'Image Sequence' will automatically start playing.

Loop • When the 'Image Sequence' has finished playing it will start again.

Speed • The speed of the image sequence. The default value is 1, or 12 key frames per seconds. 2 is double speed, or 24 key frames per second. 0.5 is half speed. 0 is stopped. -1 is reverse.

Image Scale • How the image fits the available space.

Script Script

Image Sequence Get Index • Get the current image index in an 'Image Sequence'. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceGetIndex("Script ID");

Image Sequence Get Image • Get the current image in an 'Image Sequence'. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceGetImage("Script ID");

Image Sequence Set Index • Set an image in an 'Image Sequence'. Choose a value for the index between 1 and the total images in the image list. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceSetIndex("Script ID",Index:Number);

Image Sequence Set Image • Set an image in an 'Image Sequence'. Choose the name of an image in the image list. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceSetImage("Script ID","Image");

Image Sequence Play • The 'Image Sequence' Sequence will play. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequencePlay("Script ID");

Image Sequence Stop • The 'Image Sequence' Sequence will stop playing. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceStop("Script ID");

Image Sequence First • The 'Image Sequence' will show the first image in the image list. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceFirst("Script ID");

Image Sequence Previous • The 'Image Sequence' will show the previous image in the image list. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequencePrevious("Script ID");

Image Sequence Next • The 'Image Sequence' will show the next image in the image list. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceNext("Script ID");

Image Sequence Last • The 'Image Sequence' will show the last image in the image list. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceLast("Script ID");

Image Sequence Add Url • Add a new image to the 'Image Sequence'. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceAddUrl("Script ID","Name","http://");

Image Sequence Remove Url • Remove an image from the 'Image Sequence'. You must set a 'Script ID' value for the 'Image Sequence' in the timeline.

ImageSequenceRemoveUrl("Script ID","Name");

Image Sequence Get Speed • Get the speed of the image sequence. The default value is 1. 2 is double speed. 0.5 is half speed. 0 is stopped. -1 is reverse.

ImageSequenceGetSpeed("Script ID");

Image Sequence Set Speed • Set the speed of the image sequence. The default value is 1. 2 is double speed. 0.5 is half speed. 0 is stopped. -1 is reverse.

ImageSequenceSetSpeed("Script ID",Speed:Number);

Image Grid Image Viewer