Lingo Dictionary > L-N > next

 

next

Syntax

next

Description

Keyword; refers to the next marker in the movie and is equivalent to the phrase the marker (+ 1).

Example

This statement sends the playback head to the next marker in the movie:

go next

Example

This handler moves the movie to the next marker in the Score when the right arrow key is pressed and to the previous marker when the left arrow key is pressed:

on keyUp
	if the keyCode = 124 then go next
	if the keyCode = 123 then go previous
end keyUp

See also

loop (keyword), go previous