To move the cursor to the start position of the active strip in Blender VSE:
1 |
bpy.context.scene.frame_current = bpy.context.scene.sequence_editor.active_strip.frame_start |
To move the cursor to the end position of the active strip:
1 |
bpy.context.scene.frame_current = bpy.context.scene.sequence_editor.active_strip.frame_final_end |