|
|
Find Last Label
Added on 6/9/1999
|
Returns the name of the marker just before the play head"s current position. (The current marker)
on FindLastLabel
repeat with i = 1 to the number of lines in the labelList
if the frame < label(line i of the labelList) then
return line i - 1 of the labelList
end if
end repeat
return line (the number of lines in the labelList - 1) of the labelList
end FindLastLabel
|
|