I've already got a script which tells me what the previous and next image marks are
Code: Select all
mark[0] = "EMPTY"
mark[1] = "BLUE"
mark[2] = "GREEN"
mark[3] = "ORANGE"
mark[4] = "RED"
mark[5] = "PINK"
mark[6] = "GREY"
tv_exposurenext
Nimage = result
tv_LayerMarkGet 0 Nimage
NimageM = result
tv_exposureprev
tv_exposureprev
Pimage = result
tv_LayerMarkGet 0 Pimage
PimageM = result
tv_exposurenext
PRINT "previousmark: " mark[PimageM] "+" "nextmark: " mark[NimageM]
Is there some command I could use to get the info about the next/previous image mark even if there are not on the next keyframe ? And is it correct, that you need to go to a frame to get some info about it ?