Join

The Join method assembles image on the target track from source (dynamic) tracks.

Join

Parameters

The method has no parameters.

Note
This method reads content of all dynamic tracks (created with AddTrack, Read methods) and superposes them. The result is written into target animation track. Usually after that a script calls the Play method to create an animated gif file.
Example
This code sample superposes two animated gifs:
Source imagesResult

Set ani = CreateObject("ShotGraph.GifAnimator")

ani.Read "c:\images\4.gif"
ani.Read "c:\images\9.gif"
ani.Join
ani.Play "c:\images\join.gif"