The prepend command is used to add elements onto the beginning of a list type. For example it is used to add numbers to vectors (increasing the length of the vector by one) as well as adding frames to movies.
set x to vector; prepend 10 to x; prepend 12 to x; print x;will leave x containing 12 as the first element and 10 as the second.
prepend <expression> to <identifier>;
set vs to videosource; prepend (frame of vs) to my_movie; prepend sin(34.5) to my_vector; set myList to list; prepend myVector to myList; prepend "Hello" to myList;